# HG changeset patch # User padge # Date 1632923453 0 # Node ID ed0d0eda36a9e384e046a92a82eca0df08378507 "planemo upload for repository https://github.com/usegalaxy-be/galaxytools/tree/main/gtf_to_bed commit 66fba7c9dccfddadce13aad591f441c66c3c309b-dirty" diff -r 000000000000 -r ed0d0eda36a9 README.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.rst Wed Sep 29 13:50:53 2021 +0000 @@ -0,0 +1,19 @@ +bwakit +======= + +Written by Guy Bottu for the GenePattern server of VIB BioinforlmaticsCore, +takes as input a GTF file and writes a BED file in 12 column format +with information about transcripts, for use with RSeqC. + +The "thick" information is about the coding region, ideally it goes from +start codon to stop codon, but is information is lacking (e.g. because +of missing sequence or missing annotation), we use the CDS information. +For some transcripts there are multiple start or stop codons. We amways +choose the "thick" so that is has maximum length. + +If there is no CDS information (as for ncRNA) the "thick" will have just a +repeat of the transcript start position, as per BED convention. + +modified for integration under GenePattern + +usage : perl gtf_to_bed.pl diff -r 000000000000 -r ed0d0eda36a9 gtf_to_bed.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtf_to_bed.xml Wed Sep 29 13:50:53 2021 +0000 @@ -0,0 +1,391 @@ + + + + Takes as input a GTF file and writes a BED file in 12 column format + + perl + + + + + + + + +use List::Util qw (min max); + +$gtf = $ARGV[0]; +$gtf =~ /.*\/([^\/]+)\.gtf3?/; +# print $gtf; +$bed = $ARGV[1]; + +open GTF, $gtf; +open BED, ">$bed"; +LINEPARSER: while () { + if (/^#/) { next LINEPARSER } # skip comment lines + @fields = split /\t/; + $chrom = $fields[0]; $type = $fields[2]; $beginpos = $fields[3]; + $endpos = $fields[4]; $strand = $fields[6]; + chomp $fields[8]; $documentation = $fields[8]; + $documentation =~ /transcript_id "([^"]+)";/; + $transcript_id = $1; + if ($strand ne '+' and $strand ne '-') { + print "WARNING : $transcript_id has strand information $strand\n"; + } + if ($type eq 'transcript') { + $chrom{$transcript_id} = $chrom; + $strand{$transcript_id} = $strand; + $transcript_beginpos{$transcript_id} = $beginpos; + $transcript_endpos{$transcript_id} = $endpos; + } elsif ($type eq 'exon') { + + $documentation =~ /exon_number "([^"]+)";/; + $exon_number = $1; + # print $exon_number; + $exon_beginpos{$transcript_id}[$exon_number] = $beginpos; + $exon_endpos{$transcript_id}[$exon_number] = $endpos; + } elsif ($type eq 'start_codon') { + if (not exists $ORFpos{$transcript_id}[0] + or ($strand eq '+' and $beginpos < $ORFpos{$transcript_id}[0]) + or ($strand eq '-' and $endpos > $ORFpos{$transcript_id}[1])) { + $ORFpos{$transcript_id}[0] = $beginpos; + $ORFpos{$transcript_id}[1] = $endpos; + } + } elsif ($type eq 'stop_codon') { + if (not exists $ORFpos{$transcript_id}[2] + or ($strand eq '+' and $endpos > $ORFpos{$transcript_id}[3]) + or ($strand eq '-' and $beginpos < $ORFpos{$transcript_id}[2])) { + $ORFpos{$transcript_id}[2] = $beginpos; + $ORFpos{$transcript_id}[3] = $endpos; + } + } elsif ($type eq 'CDS') { + if (not exists $CDSpos{$transcript_id}[0] + or $beginpos < $CDSpos{$transcript_id}[0]) { + $CDSpos{$transcript_id}[0] = $beginpos; + } + if (not exists $CDSpos{$transcript_id}[1] + or $endpos > $CDSpos{$transcript_id}[1]) { + $CDSpos{$transcript_id}[1] = $endpos; + } + } +} + +foreach $transcript_id (sort keys %transcript_beginpos) { + $beginpos = $transcript_beginpos{$transcript_id} - 1; + ## in BED numbering starts with 0, not 1 like in GTF + $endpos = $transcript_endpos{$transcript_id}; + print BED "$chrom{$transcript_id}\t$beginpos\t$endpos\t$transcript_id\t0\t$strand{$transcript_id}"; + + if (exists $ORFpos{$transcript_id}[0] or exists $ORFpos{$transcript_id}[2] + or exists $CDSpos{$transcript_id}[0]) { + if ($strand{$transcript_id} eq '+') { + if (exists $ORFpos{$transcript_id}[0]) { + if (exists $CDSpos{$transcript_id}[0]) { # both start_codon and CDS + $beginthickpos = min($ORFpos{$transcript_id}[0], + $CDSpos{$transcript_id}[0]); + } else { # only start_codon + $beginthickpos = $ORFpos{$transcript_id}[0]; + } + } elsif (exists $CDSpos{$transcript_id}[0]) { # only CDS + $beginthickpos = $CDSpos{$transcript_id}[0]; + } else { # -- (but there is a stop_codon) + $beginthickpos = $transcript_beginpos{$transcript_id}; + } + if (exists $ORFpos{$transcript_id}[3]) { + if (exists $CDSpos{$transcript_id}[1]) { # both stop_codon and CDS + $endthickpos = max($ORFpos{$transcript_id}[3], + $CDSpos{$transcript_id}[1]); + } else { # only stop_codon + $endthickpos = $ORFpos{$transcript_id}[3]; + } + } elsif (exists $CDSpos{$transcript_id}[1]) { # only CDS + $endthickpos = $CDSpos{$transcript_id}[1]; + } else { # -- (but there is a start_codon) + $endthickpos = $transcript_endpos{$transcript_id}; + } + } elsif ($strand{$transcript_id} eq '-') { + if (exists $ORFpos{$transcript_id}[2]) { + if (exists $CDSpos{$transcript_id}[0]) { # both stop_codon and CDS + $beginthickpos = min($ORFpos{$transcript_id}[2], + $CDSpos{$transcript_id}[0]); + } else { # only stop_codon + $beginthickpos = $ORFpos{$transcript_id}[2]; + } + } elsif (exists $CDSpos{$transcript_id}[0]) { # only CDS + $beginthickpos = $CDSpos{$transcript_id}[0]; + } else { # -- (but there is a start_codon) + $beginthickpos = $transcript_beginpos{$transcript_id}; + } + if (exists $ORFpos{$transcript_id}[1]) { + if (exists $CDSpos{$transcript_id}[1]) { # both start_codon and CDS + $endthickpos = max($ORFpos{$transcript_id}[1], + $CDSpos{$transcript_id}[1]); + } else { # only start_codon + $endthickpos = $ORFpos{$transcript_id}[1]; + } + } elsif (exists $CDSpos{$transcript_id}[1]) { # only CDS + $endthickpos = $CDSpos{$transcript_id}[1]; + } else { # -- (but there is a stop_codon) + $endthickpos = $transcript_endpos{$transcript_id}; + } + } + $beginthickpos -= 1; + } else { + $beginthickpos = $beginpos; $endthickpos = $beginpos; + } + print BED "\t$beginthickpos\t$endthickpos"; + + $blocksizes = ''; $blockstarts = ''; + $Nexons = $#{$exon_beginpos{$transcript_id}}; + ## In some GTF files the exons of a transcript on the reverse strand + ## are numbered according to their position on the forward strand + ## and in others according to their position on the reverse strand + if ($Nexons == 1) { + $blocksizes .= $exon_endpos{$transcript_id}[1] - $exon_beginpos{$transcript_id}[1] + 1 . ','; + $blockstarts .= $exon_beginpos{$transcript_id}[1] - $transcript_beginpos{$transcript_id} . ','; + } else { + if ($exon_beginpos{$transcript_id}[2] > $exon_beginpos{$transcript_id}[1]) { + foreach $exon_number (1 .. $Nexons) { + $blocksizes .= $exon_endpos{$transcript_id}[$exon_number] - $exon_beginpos{$transcript_id}[$exon_number] + 1 . ','; + $blockstarts .= $exon_beginpos{$transcript_id}[$exon_number] - $transcript_beginpos{$transcript_id} . ','; + } + } else { # (is <) + for($exon_number = $Nexons ; $exon_number > 0 ; $exon_number--) { + $blocksizes .= $exon_endpos{$transcript_id}[$exon_number] - $exon_beginpos{$transcript_id}[$exon_number] + 1 . ','; + $blockstarts .= $exon_beginpos{$transcript_id}[$exon_number] - $transcript_beginpos{$transcript_id} . ','; + } + } + } + print BED "\t0\t$Nexons\t$blocksizes\t$blockstarts\n"; +} +close( GTF ); +close( BED ); + +#end raw]]> + + + + + + + + + + + + + + + + +------ + + +Script:: + + #!/usr/bin/perl + # written by Guy Bottu for the GenePattern server of VIB BioinforlmaticsCore, + # takes as input a GTF file and writes a BED file in 12 column format + # with information about transcripts, for use with RSeqC. + # + # The "thick" information is about the coding region, ideally it goes from + # start codon to stop codon, but is information is lacking (e.g. because + # of missing sequence or missing annotation), we use the CDS information. + # For some transcripts there are multiple start or stop codons. We amways + # choose the "thick" so that is has maximum length. + # + # If there is no CDS information (as for ncRNA) the "thick" will have just a + # repeat of the transcript start position, as per BED convention. + # + # modified for integration under GenePattern + # + # usage : perl gtf_to_bed.pl + use List::Util qw (min max); + $gtf = $ARGV[0]; + $gtf =~ /.*\/([^\/]+)\.gtf3?/; + # print $gtf; + $bed = $ARGV[1]; + open GTF, $gtf; + open BED, ">$bed"; + LINEPARSER: while () { + if (/^#/) { next LINEPARSER } # skip comment lines + @fields = split /\t/; + $chrom = $fields[0]; $type = $fields[2]; $beginpos = $fields[3]; + $endpos = $fields[4]; $strand = $fields[6]; + chomp $fields[8]; $documentation = $fields[8]; + $documentation =~ /transcript_id "([^"]+)";/; + $transcript_id = $1; + if ($strand ne '+' and $strand ne '-') { + print "WARNING : $transcript_id has strand information $strand\n"; + } + if ($type eq 'transcript') { + $chrom{$transcript_id} = $chrom; + $strand{$transcript_id} = $strand; + $transcript_beginpos{$transcript_id} = $beginpos; + $transcript_endpos{$transcript_id} = $endpos; + } elsif ($type eq 'exon') { + $documentation =~ /exon_number "([^"]+)";/; + $exon_number = $1; + # print $exon_number; + $exon_beginpos{$transcript_id}[$exon_number] = $beginpos; + $exon_endpos{$transcript_id}[$exon_number] = $endpos; + } elsif ($type eq 'start_codon') { + if (not exists $ORFpos{$transcript_id}[0] + or ($strand eq '+' and $beginpos < $ORFpos{$transcript_id}[0]) + or ($strand eq '-' and $endpos > $ORFpos{$transcript_id}[1])) { + $ORFpos{$transcript_id}[0] = $beginpos; + $ORFpos{$transcript_id}[1] = $endpos; + } + } elsif ($type eq 'stop_codon') { + if (not exists $ORFpos{$transcript_id}[2] + or ($strand eq '+' and $endpos > $ORFpos{$transcript_id}[3]) + or ($strand eq '-' and $beginpos < $ORFpos{$transcript_id}[2])) { + $ORFpos{$transcript_id}[2] = $beginpos; + $ORFpos{$transcript_id}[3] = $endpos; + } + } elsif ($type eq 'CDS') { + if (not exists $CDSpos{$transcript_id}[0] + or $beginpos < $CDSpos{$transcript_id}[0]) { + $CDSpos{$transcript_id}[0] = $beginpos; + } + if (not exists $CDSpos{$transcript_id}[1] + or $endpos > $CDSpos{$transcript_id}[1]) { + $CDSpos{$transcript_id}[1] = $endpos; + } + } + } + foreach $transcript_id (sort keys %transcript_beginpos) { + $beginpos = $transcript_beginpos{$transcript_id} - 1; + ## in BED numbering starts with 0, not 1 like in GTF + $endpos = $transcript_endpos{$transcript_id}; + print BED "$chrom{$transcript_id}\t$beginpos\t$endpos\t$transcript_id\t0\t$strand{$transcript_id}"; + if (exists $ORFpos{$transcript_id}[0] or exists $ORFpos{$transcript_id}[2] + or exists $CDSpos{$transcript_id}[0]) { + if ($strand{$transcript_id} eq '+') { + if (exists $ORFpos{$transcript_id}[0]) { + if (exists $CDSpos{$transcript_id}[0]) { # both start_codon and CDS + $beginthickpos = min($ORFpos{$transcript_id}[0], + $CDSpos{$transcript_id}[0]); + } else { # only start_codon + $beginthickpos = $ORFpos{$transcript_id}[0]; + } + } elsif (exists $CDSpos{$transcript_id}[0]) { # only CDS + $beginthickpos = $CDSpos{$transcript_id}[0]; + } else { # -- (but there is a stop_codon) + $beginthickpos = $transcript_beginpos{$transcript_id}; + } + if (exists $ORFpos{$transcript_id}[3]) { + if (exists $CDSpos{$transcript_id}[1]) { # both stop_codon and CDS + $endthickpos = max($ORFpos{$transcript_id}[3], + $CDSpos{$transcript_id}[1]); + } else { # only stop_codon + $endthickpos = $ORFpos{$transcript_id}[3]; + } + } elsif (exists $CDSpos{$transcript_id}[1]) { # only CDS + $endthickpos = $CDSpos{$transcript_id}[1]; + } else { # -- (but there is a start_codon) + $endthickpos = $transcript_endpos{$transcript_id}; + } + } elsif ($strand{$transcript_id} eq '-') { + if (exists $ORFpos{$transcript_id}[2]) { + if (exists $CDSpos{$transcript_id}[0]) { # both stop_codon and CDS + $beginthickpos = min($ORFpos{$transcript_id}[2], + $CDSpos{$transcript_id}[0]); + } else { # only stop_codon + $beginthickpos = $ORFpos{$transcript_id}[2]; + } + } elsif (exists $CDSpos{$transcript_id}[0]) { # only CDS + $beginthickpos = $CDSpos{$transcript_id}[0]; + } else { # -- (but there is a start_codon) + $beginthickpos = $transcript_beginpos{$transcript_id}; + } + if (exists $ORFpos{$transcript_id}[1]) { + if (exists $CDSpos{$transcript_id}[1]) { # both start_codon and CDS + $endthickpos = max($ORFpos{$transcript_id}[1], + $CDSpos{$transcript_id}[1]); + } else { # only start_codon + $endthickpos = $ORFpos{$transcript_id}[1]; + } + } elsif (exists $CDSpos{$transcript_id}[1]) { # only CDS + $endthickpos = $CDSpos{$transcript_id}[1]; + } else { # -- (but there is a stop_codon) + $endthickpos = $transcript_endpos{$transcript_id}; + } + } + $beginthickpos -= 1; + } else { + $beginthickpos = $beginpos; $endthickpos = $beginpos; + } + print BED "\t$beginthickpos\t$endthickpos"; + $blocksizes = ''; $blockstarts = ''; + $Nexons = $#{$exon_beginpos{$transcript_id}}; + ## In some GTF files the exons of a transcript on the reverse strand + ## are numbered according to their position on the forward strand + ## and in others according to their position on the reverse strand + if ($Nexons == 1) { + $blocksizes .= $exon_endpos{$transcript_id}[1] - $exon_beginpos{$transcript_id}[1] + 1 . ','; + $blockstarts .= $exon_beginpos{$transcript_id}[1] - $transcript_beginpos{$transcript_id} . ','; + } else { + if ($exon_beginpos{$transcript_id}[2] > $exon_beginpos{$transcript_id}[1]) { + foreach $exon_number (1 .. $Nexons) { + $blocksizes .= $exon_endpos{$transcript_id}[$exon_number] - $exon_beginpos{$transcript_id}[$exon_number] + 1 . ','; + $blockstarts .= $exon_beginpos{$transcript_id}[$exon_number] - $transcript_beginpos{$transcript_id} . ','; + } + } else { # (is <) + for($exon_number = $Nexons ; $exon_number > 0 ; $exon_number--) { + $blocksizes .= $exon_endpos{$transcript_id}[$exon_number] - $exon_beginpos{$transcript_id}[$exon_number] + 1 . ','; + $blockstarts .= $exon_beginpos{$transcript_id}[$exon_number] - $transcript_beginpos{$transcript_id} . ','; + } + } + } + print BED "\t0\t$Nexons\t$blocksizes\t$blockstarts\n"; + } + close( GTF ); + close( BED ); + +]]> + + 10.1093/bioinformatics/bts573 + + + diff -r 000000000000 -r ed0d0eda36a9 test-data/test_input.gtf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test_input.gtf Wed Sep 29 13:50:53 2021 +0000 @@ -0,0 +1,25134 @@ +#!genome-build ASM25857v2 +#!genome-version ASM25857v2 +#!genome-build-accession GCA_000258575.2 +#!genebuild-last-updated 2018-01 +contig25 ena gene 5 1192 . - . gene_id "W7K_10750"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 5 1192 . - . gene_id "W7K_10750"; transcript_id "KOE98873"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 5 1192 . - . gene_id "W7K_10750"; transcript_id "KOE98873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98873-1"; +contig25 ena CDS 8 1192 . - 0 gene_id "W7K_10750"; transcript_id "KOE98873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98873"; +contig25 ena start_codon 1190 1192 . - 0 gene_id "W7K_10750"; transcript_id "KOE98873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 5 7 . - 0 gene_id "W7K_10750"; transcript_id "KOE98873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 1330 2211 . + . gene_id "W7K_10755"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 1330 2211 . + . gene_id "W7K_10755"; transcript_id "KOE98874"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 1330 2211 . + . gene_id "W7K_10755"; transcript_id "KOE98874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98874-1"; +contig25 ena CDS 1330 2208 . + 0 gene_id "W7K_10755"; transcript_id "KOE98874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98874"; +contig25 ena start_codon 1330 1332 . + 0 gene_id "W7K_10755"; transcript_id "KOE98874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 2209 2211 . + 0 gene_id "W7K_10755"; transcript_id "KOE98874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 2257 2436 . + . gene_id "W7K_10760"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 2257 2436 . + . gene_id "W7K_10760"; transcript_id "KOE98875"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 2257 2436 . + . gene_id "W7K_10760"; transcript_id "KOE98875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98875-1"; +contig25 ena CDS 2257 2433 . + 0 gene_id "W7K_10760"; transcript_id "KOE98875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98875"; +contig25 ena start_codon 2257 2259 . + 0 gene_id "W7K_10760"; transcript_id "KOE98875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 2434 2436 . + 0 gene_id "W7K_10760"; transcript_id "KOE98875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 2433 2612 . + . gene_id "W7K_10765"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 2433 2612 . + . gene_id "W7K_10765"; transcript_id "KOE98876"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 2433 2612 . + . gene_id "W7K_10765"; transcript_id "KOE98876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98876-1"; +contig25 ena CDS 2433 2609 . + 0 gene_id "W7K_10765"; transcript_id "KOE98876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98876"; +contig25 ena start_codon 2433 2435 . + 0 gene_id "W7K_10765"; transcript_id "KOE98876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 2610 2612 . + 0 gene_id "W7K_10765"; transcript_id "KOE98876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 2616 3209 . + . gene_id "W7K_10770"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 2616 3209 . + . gene_id "W7K_10770"; transcript_id "KOE98877"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 2616 3209 . + . gene_id "W7K_10770"; transcript_id "KOE98877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98877-1"; +contig25 ena CDS 2616 3206 . + 0 gene_id "W7K_10770"; transcript_id "KOE98877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98877"; +contig25 ena start_codon 2616 2618 . + 0 gene_id "W7K_10770"; transcript_id "KOE98877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 3207 3209 . + 0 gene_id "W7K_10770"; transcript_id "KOE98877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 3219 4028 . + . gene_id "W7K_10775"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 3219 4028 . + . gene_id "W7K_10775"; transcript_id "KOE98878"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 3219 4028 . + . gene_id "W7K_10775"; transcript_id "KOE98878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98878-1"; +contig25 ena CDS 3219 4025 . + 0 gene_id "W7K_10775"; transcript_id "KOE98878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98878"; +contig25 ena start_codon 3219 3221 . + 0 gene_id "W7K_10775"; transcript_id "KOE98878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 4026 4028 . + 0 gene_id "W7K_10775"; transcript_id "KOE98878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 4188 4559 . - . gene_id "W7K_10780"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 4188 4559 . - . gene_id "W7K_10780"; transcript_id "KOE98879"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 4188 4559 . - . gene_id "W7K_10780"; transcript_id "KOE98879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98879-1"; +contig25 ena CDS 4191 4559 . - 0 gene_id "W7K_10780"; transcript_id "KOE98879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98879"; +contig25 ena start_codon 4557 4559 . - 0 gene_id "W7K_10780"; transcript_id "KOE98879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 4188 4190 . - 0 gene_id "W7K_10780"; transcript_id "KOE98879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 4663 5736 . - . gene_id "W7K_10785"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 4663 5736 . - . gene_id "W7K_10785"; transcript_id "KOE98880"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 4663 5736 . - . gene_id "W7K_10785"; transcript_id "KOE98880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98880-1"; +contig25 ena CDS 4666 5736 . - 0 gene_id "W7K_10785"; transcript_id "KOE98880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98880"; +contig25 ena start_codon 5734 5736 . - 0 gene_id "W7K_10785"; transcript_id "KOE98880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 4663 4665 . - 0 gene_id "W7K_10785"; transcript_id "KOE98880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 5971 6612 . - . gene_id "W7K_10790"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 5971 6612 . - . gene_id "W7K_10790"; transcript_id "KOE98881"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 5971 6612 . - . gene_id "W7K_10790"; transcript_id "KOE98881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98881-1"; +contig25 ena CDS 5974 6612 . - 0 gene_id "W7K_10790"; transcript_id "KOE98881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98881"; +contig25 ena start_codon 6610 6612 . - 0 gene_id "W7K_10790"; transcript_id "KOE98881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 5971 5973 . - 0 gene_id "W7K_10790"; transcript_id "KOE98881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 6612 7814 . - . gene_id "W7K_10795"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 6612 7814 . - . gene_id "W7K_10795"; transcript_id "KOE98882"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 6612 7814 . - . gene_id "W7K_10795"; transcript_id "KOE98882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98882-1"; +contig25 ena CDS 6615 7814 . - 0 gene_id "W7K_10795"; transcript_id "KOE98882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98882"; +contig25 ena start_codon 7812 7814 . - 0 gene_id "W7K_10795"; transcript_id "KOE98882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 6612 6614 . - 0 gene_id "W7K_10795"; transcript_id "KOE98882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 7968 8564 . + . gene_id "W7K_10800"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 7968 8564 . + . gene_id "W7K_10800"; transcript_id "KOE98883"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 7968 8564 . + . gene_id "W7K_10800"; transcript_id "KOE98883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98883-1"; +contig25 ena CDS 7968 8561 . + 0 gene_id "W7K_10800"; transcript_id "KOE98883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98883"; +contig25 ena start_codon 7968 7970 . + 0 gene_id "W7K_10800"; transcript_id "KOE98883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 8562 8564 . + 0 gene_id "W7K_10800"; transcript_id "KOE98883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 8510 9355 . + . gene_id "W7K_10805"; gene_name "minC"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 8510 9355 . + . gene_id "W7K_10805"; transcript_id "KOE98884"; gene_name "minC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "minC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 8510 9355 . + . gene_id "W7K_10805"; transcript_id "KOE98884"; exon_number "1"; gene_name "minC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "minC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98884-1"; +contig25 ena CDS 8510 9352 . + 0 gene_id "W7K_10805"; transcript_id "KOE98884"; exon_number "1"; gene_name "minC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "minC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98884"; +contig25 ena start_codon 8510 8512 . + 0 gene_id "W7K_10805"; transcript_id "KOE98884"; exon_number "1"; gene_name "minC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "minC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 9353 9355 . + 0 gene_id "W7K_10805"; transcript_id "KOE98884"; exon_number "1"; gene_name "minC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "minC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 9393 10202 . + . gene_id "W7K_10810"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 9393 10202 . + . gene_id "W7K_10810"; transcript_id "KOE98885"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 9393 10202 . + . gene_id "W7K_10810"; transcript_id "KOE98885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98885-1"; +contig25 ena CDS 9393 10199 . + 0 gene_id "W7K_10810"; transcript_id "KOE98885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98885"; +contig25 ena start_codon 9393 9395 . + 0 gene_id "W7K_10810"; transcript_id "KOE98885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 10200 10202 . + 0 gene_id "W7K_10810"; transcript_id "KOE98885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 10205 10465 . + . gene_id "W7K_10815"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 10205 10465 . + . gene_id "W7K_10815"; transcript_id "KOE98886"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 10205 10465 . + . gene_id "W7K_10815"; transcript_id "KOE98886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98886-1"; +contig25 ena CDS 10205 10462 . + 0 gene_id "W7K_10815"; transcript_id "KOE98886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98886"; +contig25 ena start_codon 10205 10207 . + 0 gene_id "W7K_10815"; transcript_id "KOE98886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 10463 10465 . + 0 gene_id "W7K_10815"; transcript_id "KOE98886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 10512 10994 . + . gene_id "W7K_10820"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 10512 10994 . + . gene_id "W7K_10820"; transcript_id "KOE98887"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 10512 10994 . + . gene_id "W7K_10820"; transcript_id "KOE98887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98887-1"; +contig25 ena CDS 10512 10991 . + 0 gene_id "W7K_10820"; transcript_id "KOE98887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98887"; +contig25 ena start_codon 10512 10514 . + 0 gene_id "W7K_10820"; transcript_id "KOE98887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 10992 10994 . + 0 gene_id "W7K_10820"; transcript_id "KOE98887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 11115 12371 . - . gene_id "W7K_10825"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 11115 12371 . - . gene_id "W7K_10825"; transcript_id "KOE99208"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 11115 12371 . - . gene_id "W7K_10825"; transcript_id "KOE99208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99208-1"; +contig25 ena CDS 11118 12371 . - 0 gene_id "W7K_10825"; transcript_id "KOE99208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99208"; +contig25 ena start_codon 12369 12371 . - 0 gene_id "W7K_10825"; transcript_id "KOE99208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 11115 11117 . - 0 gene_id "W7K_10825"; transcript_id "KOE99208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 12486 14564 . - . gene_id "W7K_10830"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 12486 14564 . - . gene_id "W7K_10830"; transcript_id "KOE98888"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 12486 14564 . - . gene_id "W7K_10830"; transcript_id "KOE98888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98888-1"; +contig25 ena CDS 12489 14564 . - 0 gene_id "W7K_10830"; transcript_id "KOE98888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98888"; +contig25 ena start_codon 14562 14564 . - 0 gene_id "W7K_10830"; transcript_id "KOE98888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 12486 12488 . - 0 gene_id "W7K_10830"; transcript_id "KOE98888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 14798 16762 . - . gene_id "W7K_10835"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 14798 16762 . - . gene_id "W7K_10835"; transcript_id "KOE98889"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 14798 16762 . - . gene_id "W7K_10835"; transcript_id "KOE98889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98889-1"; +contig25 ena CDS 14801 16762 . - 0 gene_id "W7K_10835"; transcript_id "KOE98889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98889"; +contig25 ena start_codon 16760 16762 . - 0 gene_id "W7K_10835"; transcript_id "KOE98889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 14798 14800 . - 0 gene_id "W7K_10835"; transcript_id "KOE98889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 16963 18111 . + . gene_id "W7K_10840"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 16963 18111 . + . gene_id "W7K_10840"; transcript_id "KOE98890"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 16963 18111 . + . gene_id "W7K_10840"; transcript_id "KOE98890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98890-1"; +contig25 ena CDS 16963 18108 . + 0 gene_id "W7K_10840"; transcript_id "KOE98890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98890"; +contig25 ena start_codon 16963 16965 . + 0 gene_id "W7K_10840"; transcript_id "KOE98890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 18109 18111 . + 0 gene_id "W7K_10840"; transcript_id "KOE98890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 18209 19963 . + . gene_id "W7K_10845"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 18209 19963 . + . gene_id "W7K_10845"; transcript_id "KOE98891"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 18209 19963 . + . gene_id "W7K_10845"; transcript_id "KOE98891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98891-1"; +contig25 ena CDS 18209 19960 . + 0 gene_id "W7K_10845"; transcript_id "KOE98891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98891"; +contig25 ena start_codon 18209 18211 . + 0 gene_id "W7K_10845"; transcript_id "KOE98891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 19961 19963 . + 0 gene_id "W7K_10845"; transcript_id "KOE98891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 20021 22003 . - . gene_id "W7K_10850"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 20021 22003 . - . gene_id "W7K_10850"; transcript_id "KOE98892"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 20021 22003 . - . gene_id "W7K_10850"; transcript_id "KOE98892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98892-1"; +contig25 ena CDS 20024 22003 . - 0 gene_id "W7K_10850"; transcript_id "KOE98892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98892"; +contig25 ena start_codon 22001 22003 . - 0 gene_id "W7K_10850"; transcript_id "KOE98892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 20021 20023 . - 0 gene_id "W7K_10850"; transcript_id "KOE98892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 22171 22806 . - . gene_id "W7K_10855"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 22171 22806 . - . gene_id "W7K_10855"; transcript_id "KOE98893"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 22171 22806 . - . gene_id "W7K_10855"; transcript_id "KOE98893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98893-1"; +contig25 ena CDS 22174 22806 . - 0 gene_id "W7K_10855"; transcript_id "KOE98893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98893"; +contig25 ena start_codon 22804 22806 . - 0 gene_id "W7K_10855"; transcript_id "KOE98893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 22171 22173 . - 0 gene_id "W7K_10855"; transcript_id "KOE98893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 22945 23850 . + . gene_id "W7K_10860"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 22945 23850 . + . gene_id "W7K_10860"; transcript_id "KOE98894"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 22945 23850 . + . gene_id "W7K_10860"; transcript_id "KOE98894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98894-1"; +contig25 ena CDS 22945 23847 . + 0 gene_id "W7K_10860"; transcript_id "KOE98894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98894"; +contig25 ena start_codon 22945 22947 . + 0 gene_id "W7K_10860"; transcript_id "KOE98894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 23848 23850 . + 0 gene_id "W7K_10860"; transcript_id "KOE98894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 24009 24443 . + . gene_id "W7K_10865"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 24009 24443 . + . gene_id "W7K_10865"; transcript_id "KOE98895"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 24009 24443 . + . gene_id "W7K_10865"; transcript_id "KOE98895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98895-1"; +contig25 ena CDS 24009 24440 . + 0 gene_id "W7K_10865"; transcript_id "KOE98895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98895"; +contig25 ena start_codon 24009 24011 . + 0 gene_id "W7K_10865"; transcript_id "KOE98895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 24441 24443 . + 0 gene_id "W7K_10865"; transcript_id "KOE98895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 24644 25090 . + . gene_id "W7K_10870"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 24644 25090 . + . gene_id "W7K_10870"; transcript_id "KOE98896"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 24644 25090 . + . gene_id "W7K_10870"; transcript_id "KOE98896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98896-1"; +contig25 ena CDS 24644 25087 . + 0 gene_id "W7K_10870"; transcript_id "KOE98896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98896"; +contig25 ena start_codon 24644 24646 . + 0 gene_id "W7K_10870"; transcript_id "KOE98896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 25088 25090 . + 0 gene_id "W7K_10870"; transcript_id "KOE98896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 25284 26978 . + . gene_id "W7K_10875"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 25284 26978 . + . gene_id "W7K_10875"; transcript_id "KOE98897"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 25284 26978 . + . gene_id "W7K_10875"; transcript_id "KOE98897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98897-1"; +contig25 ena CDS 25284 26975 . + 0 gene_id "W7K_10875"; transcript_id "KOE98897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98897"; +contig25 ena start_codon 25284 25286 . + 0 gene_id "W7K_10875"; transcript_id "KOE98897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 26976 26978 . + 0 gene_id "W7K_10875"; transcript_id "KOE98897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 27304 29496 . + . gene_id "W7K_10880"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 27304 29496 . + . gene_id "W7K_10880"; transcript_id "KOE98898"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 27304 29496 . + . gene_id "W7K_10880"; transcript_id "KOE98898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98898-1"; +contig25 ena CDS 27304 29493 . + 0 gene_id "W7K_10880"; transcript_id "KOE98898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98898"; +contig25 ena start_codon 27304 27306 . + 0 gene_id "W7K_10880"; transcript_id "KOE98898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 29494 29496 . + 0 gene_id "W7K_10880"; transcript_id "KOE98898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 29687 31330 . + . gene_id "W7K_10885"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 29687 31330 . + . gene_id "W7K_10885"; transcript_id "KOE98899"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 29687 31330 . + . gene_id "W7K_10885"; transcript_id "KOE98899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98899-1"; +contig25 ena CDS 29687 31327 . + 0 gene_id "W7K_10885"; transcript_id "KOE98899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98899"; +contig25 ena start_codon 29687 29689 . + 0 gene_id "W7K_10885"; transcript_id "KOE98899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 31328 31330 . + 0 gene_id "W7K_10885"; transcript_id "KOE98899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 31341 31661 . + . gene_id "W7K_10890"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 31341 31661 . + . gene_id "W7K_10890"; transcript_id "KOE98900"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 31341 31661 . + . gene_id "W7K_10890"; transcript_id "KOE98900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98900-1"; +contig25 ena CDS 31341 31658 . + 0 gene_id "W7K_10890"; transcript_id "KOE98900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98900"; +contig25 ena start_codon 31341 31343 . + 0 gene_id "W7K_10890"; transcript_id "KOE98900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 31659 31661 . + 0 gene_id "W7K_10890"; transcript_id "KOE98900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 31658 32566 . + . gene_id "W7K_10895"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 31658 32566 . + . gene_id "W7K_10895"; transcript_id "KOE98901"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 31658 32566 . + . gene_id "W7K_10895"; transcript_id "KOE98901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98901-1"; +contig25 ena CDS 31658 32563 . + 0 gene_id "W7K_10895"; transcript_id "KOE98901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98901"; +contig25 ena start_codon 31658 31660 . + 0 gene_id "W7K_10895"; transcript_id "KOE98901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 32564 32566 . + 0 gene_id "W7K_10895"; transcript_id "KOE98901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 32569 33273 . + . gene_id "W7K_10900"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 32569 33273 . + . gene_id "W7K_10900"; transcript_id "KOE99209"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 32569 33273 . + . gene_id "W7K_10900"; transcript_id "KOE99209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99209-1"; +contig25 ena CDS 32569 33270 . + 0 gene_id "W7K_10900"; transcript_id "KOE99209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99209"; +contig25 ena start_codon 32569 32571 . + 0 gene_id "W7K_10900"; transcript_id "KOE99209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 33271 33273 . + 0 gene_id "W7K_10900"; transcript_id "KOE99209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 33266 33907 . + . gene_id "W7K_10905"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 33266 33907 . + . gene_id "W7K_10905"; transcript_id "KOE98902"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 33266 33907 . + . gene_id "W7K_10905"; transcript_id "KOE98902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98902-1"; +contig25 ena CDS 33266 33904 . + 0 gene_id "W7K_10905"; transcript_id "KOE98902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98902"; +contig25 ena start_codon 33266 33268 . + 0 gene_id "W7K_10905"; transcript_id "KOE98902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 33905 33907 . + 0 gene_id "W7K_10905"; transcript_id "KOE98902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 33904 34761 . + . gene_id "W7K_10910"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 33904 34761 . + . gene_id "W7K_10910"; transcript_id "KOE98903"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 33904 34761 . + . gene_id "W7K_10910"; transcript_id "KOE98903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98903-1"; +contig25 ena CDS 33904 34758 . + 0 gene_id "W7K_10910"; transcript_id "KOE98903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98903"; +contig25 ena start_codon 33904 33906 . + 0 gene_id "W7K_10910"; transcript_id "KOE98903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 34759 34761 . + 0 gene_id "W7K_10910"; transcript_id "KOE98903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 34758 35678 . + . gene_id "W7K_10915"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 34758 35678 . + . gene_id "W7K_10915"; transcript_id "KOE98904"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 34758 35678 . + . gene_id "W7K_10915"; transcript_id "KOE98904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98904-1"; +contig25 ena CDS 34758 35675 . + 0 gene_id "W7K_10915"; transcript_id "KOE98904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98904"; +contig25 ena start_codon 34758 34760 . + 0 gene_id "W7K_10915"; transcript_id "KOE98904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 35676 35678 . + 0 gene_id "W7K_10915"; transcript_id "KOE98904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 35776 37143 . + . gene_id "W7K_10920"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 35776 37143 . + . gene_id "W7K_10920"; transcript_id "KOE98905"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 35776 37143 . + . gene_id "W7K_10920"; transcript_id "KOE98905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98905-1"; +contig25 ena CDS 35776 37140 . + 0 gene_id "W7K_10920"; transcript_id "KOE98905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98905"; +contig25 ena start_codon 35776 35778 . + 0 gene_id "W7K_10920"; transcript_id "KOE98905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 37141 37143 . + 0 gene_id "W7K_10920"; transcript_id "KOE98905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 37200 37919 . + . gene_id "W7K_10925"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 37200 37919 . + . gene_id "W7K_10925"; transcript_id "KOE98906"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 37200 37919 . + . gene_id "W7K_10925"; transcript_id "KOE98906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98906-1"; +contig25 ena CDS 37200 37916 . + 0 gene_id "W7K_10925"; transcript_id "KOE98906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98906"; +contig25 ena start_codon 37200 37202 . + 0 gene_id "W7K_10925"; transcript_id "KOE98906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 37917 37919 . + 0 gene_id "W7K_10925"; transcript_id "KOE98906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 38030 38362 . - . gene_id "W7K_10930"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 38030 38362 . - . gene_id "W7K_10930"; transcript_id "KOE98907"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 38030 38362 . - . gene_id "W7K_10930"; transcript_id "KOE98907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98907-1"; +contig25 ena CDS 38033 38362 . - 0 gene_id "W7K_10930"; transcript_id "KOE98907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98907"; +contig25 ena start_codon 38360 38362 . - 0 gene_id "W7K_10930"; transcript_id "KOE98907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 38030 38032 . - 0 gene_id "W7K_10930"; transcript_id "KOE98907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 38514 39461 . + . gene_id "W7K_10935"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 38514 39461 . + . gene_id "W7K_10935"; transcript_id "KOE98908"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 38514 39461 . + . gene_id "W7K_10935"; transcript_id "KOE98908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98908-1"; +contig25 ena CDS 38514 39458 . + 0 gene_id "W7K_10935"; transcript_id "KOE98908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98908"; +contig25 ena start_codon 38514 38516 . + 0 gene_id "W7K_10935"; transcript_id "KOE98908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 39459 39461 . + 0 gene_id "W7K_10935"; transcript_id "KOE98908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 39466 40725 . - . gene_id "W7K_10940"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 39466 40725 . - . gene_id "W7K_10940"; transcript_id "KOE98909"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 39466 40725 . - . gene_id "W7K_10940"; transcript_id "KOE98909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98909-1"; +contig25 ena CDS 39469 40725 . - 0 gene_id "W7K_10940"; transcript_id "KOE98909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98909"; +contig25 ena start_codon 40723 40725 . - 0 gene_id "W7K_10940"; transcript_id "KOE98909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 39466 39468 . - 0 gene_id "W7K_10940"; transcript_id "KOE98909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 40804 41817 . - . gene_id "W7K_10945"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 40804 41817 . - . gene_id "W7K_10945"; transcript_id "KOE98910"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 40804 41817 . - . gene_id "W7K_10945"; transcript_id "KOE98910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98910-1"; +contig25 ena CDS 40807 41817 . - 0 gene_id "W7K_10945"; transcript_id "KOE98910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98910"; +contig25 ena start_codon 41815 41817 . - 0 gene_id "W7K_10945"; transcript_id "KOE98910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 40804 40806 . - 0 gene_id "W7K_10945"; transcript_id "KOE98910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 41901 43214 . - . gene_id "W7K_10950"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 41901 43214 . - . gene_id "W7K_10950"; transcript_id "KOE98911"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 41901 43214 . - . gene_id "W7K_10950"; transcript_id "KOE98911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98911-1"; +contig25 ena CDS 41904 43214 . - 0 gene_id "W7K_10950"; transcript_id "KOE98911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98911"; +contig25 ena start_codon 43212 43214 . - 0 gene_id "W7K_10950"; transcript_id "KOE98911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 41901 41903 . - 0 gene_id "W7K_10950"; transcript_id "KOE98911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 43211 43951 . - . gene_id "W7K_10955"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 43211 43951 . - . gene_id "W7K_10955"; transcript_id "KOE99210"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 43211 43951 . - . gene_id "W7K_10955"; transcript_id "KOE99210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99210-1"; +contig25 ena CDS 43214 43951 . - 0 gene_id "W7K_10955"; transcript_id "KOE99210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99210"; +contig25 ena start_codon 43949 43951 . - 0 gene_id "W7K_10955"; transcript_id "KOE99210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 43211 43213 . - 0 gene_id "W7K_10955"; transcript_id "KOE99210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 44009 44554 . - . gene_id "W7K_10960"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 44009 44554 . - . gene_id "W7K_10960"; transcript_id "KOE98912"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 44009 44554 . - . gene_id "W7K_10960"; transcript_id "KOE98912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98912-1"; +contig25 ena CDS 44012 44554 . - 0 gene_id "W7K_10960"; transcript_id "KOE98912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98912"; +contig25 ena start_codon 44552 44554 . - 0 gene_id "W7K_10960"; transcript_id "KOE98912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 44009 44011 . - 0 gene_id "W7K_10960"; transcript_id "KOE98912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 44558 45352 . - . gene_id "W7K_10965"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 44558 45352 . - . gene_id "W7K_10965"; transcript_id "KOE98913"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 44558 45352 . - . gene_id "W7K_10965"; transcript_id "KOE98913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98913-1"; +contig25 ena CDS 44561 45352 . - 0 gene_id "W7K_10965"; transcript_id "KOE98913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98913"; +contig25 ena start_codon 45350 45352 . - 0 gene_id "W7K_10965"; transcript_id "KOE98913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 44558 44560 . - 0 gene_id "W7K_10965"; transcript_id "KOE98913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 45647 46291 . + . gene_id "W7K_10970"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 45647 46291 . + . gene_id "W7K_10970"; transcript_id "KOE98914"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 45647 46291 . + . gene_id "W7K_10970"; transcript_id "KOE98914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98914-1"; +contig25 ena CDS 45647 46288 . + 0 gene_id "W7K_10970"; transcript_id "KOE98914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98914"; +contig25 ena start_codon 45647 45649 . + 0 gene_id "W7K_10970"; transcript_id "KOE98914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 46289 46291 . + 0 gene_id "W7K_10970"; transcript_id "KOE98914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 46391 46867 . + . gene_id "W7K_10975"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 46391 46867 . + . gene_id "W7K_10975"; transcript_id "KOE98915"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 46391 46867 . + . gene_id "W7K_10975"; transcript_id "KOE98915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98915-1"; +contig25 ena CDS 46391 46864 . + 0 gene_id "W7K_10975"; transcript_id "KOE98915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98915"; +contig25 ena start_codon 46391 46393 . + 0 gene_id "W7K_10975"; transcript_id "KOE98915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 46865 46867 . + 0 gene_id "W7K_10975"; transcript_id "KOE98915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 46922 47767 . + . gene_id "W7K_10980"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 46922 47767 . + . gene_id "W7K_10980"; transcript_id "KOE98916"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 46922 47767 . + . gene_id "W7K_10980"; transcript_id "KOE98916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98916-1"; +contig25 ena CDS 46922 47764 . + 0 gene_id "W7K_10980"; transcript_id "KOE98916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98916"; +contig25 ena start_codon 46922 46924 . + 0 gene_id "W7K_10980"; transcript_id "KOE98916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 47765 47767 . + 0 gene_id "W7K_10980"; transcript_id "KOE98916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 47760 48494 . + . gene_id "W7K_10985"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 47760 48494 . + . gene_id "W7K_10985"; transcript_id "KOE98917"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 47760 48494 . + . gene_id "W7K_10985"; transcript_id "KOE98917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98917-1"; +contig25 ena CDS 47760 48491 . + 0 gene_id "W7K_10985"; transcript_id "KOE98917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98917"; +contig25 ena start_codon 47760 47762 . + 0 gene_id "W7K_10985"; transcript_id "KOE98917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 48492 48494 . + 0 gene_id "W7K_10985"; transcript_id "KOE98917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 48578 49216 . + . gene_id "W7K_10990"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 48578 49216 . + . gene_id "W7K_10990"; transcript_id "KOE99211"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 48578 49216 . + . gene_id "W7K_10990"; transcript_id "KOE99211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99211-1"; +contig25 ena CDS 48578 49213 . + 0 gene_id "W7K_10990"; transcript_id "KOE99211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99211"; +contig25 ena start_codon 48578 48580 . + 0 gene_id "W7K_10990"; transcript_id "KOE99211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 49214 49216 . + 0 gene_id "W7K_10990"; transcript_id "KOE99211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 49353 50489 . - . gene_id "W7K_10995"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 49353 50489 . - . gene_id "W7K_10995"; transcript_id "KOE98918"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 49353 50489 . - . gene_id "W7K_10995"; transcript_id "KOE98918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98918-1"; +contig25 ena CDS 49356 50489 . - 0 gene_id "W7K_10995"; transcript_id "KOE98918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98918"; +contig25 ena start_codon 50487 50489 . - 0 gene_id "W7K_10995"; transcript_id "KOE98918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 49353 49355 . - 0 gene_id "W7K_10995"; transcript_id "KOE98918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 50611 52152 . - . gene_id "W7K_11000"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 50611 52152 . - . gene_id "W7K_11000"; transcript_id "KOE98919"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 50611 52152 . - . gene_id "W7K_11000"; transcript_id "KOE98919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98919-1"; +contig25 ena CDS 50614 52152 . - 0 gene_id "W7K_11000"; transcript_id "KOE98919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98919"; +contig25 ena start_codon 52150 52152 . - 0 gene_id "W7K_11000"; transcript_id "KOE98919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 50611 50613 . - 0 gene_id "W7K_11000"; transcript_id "KOE98919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 52196 52420 . - . gene_id "W7K_11005"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 52196 52420 . - . gene_id "W7K_11005"; transcript_id "KOE98920"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 52196 52420 . - . gene_id "W7K_11005"; transcript_id "KOE98920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98920-1"; +contig25 ena CDS 52199 52420 . - 0 gene_id "W7K_11005"; transcript_id "KOE98920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98920"; +contig25 ena start_codon 52418 52420 . - 0 gene_id "W7K_11005"; transcript_id "KOE98920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 52196 52198 . - 0 gene_id "W7K_11005"; transcript_id "KOE98920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 52420 52887 . - . gene_id "W7K_11010"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 52420 52887 . - . gene_id "W7K_11010"; transcript_id "KOE98921"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 52420 52887 . - . gene_id "W7K_11010"; transcript_id "KOE98921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98921-1"; +contig25 ena CDS 52423 52887 . - 0 gene_id "W7K_11010"; transcript_id "KOE98921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98921"; +contig25 ena start_codon 52885 52887 . - 0 gene_id "W7K_11010"; transcript_id "KOE98921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 52420 52422 . - 0 gene_id "W7K_11010"; transcript_id "KOE98921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 53072 53656 . - . gene_id "W7K_11015"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 53072 53656 . - . gene_id "W7K_11015"; transcript_id "KOE98922"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 53072 53656 . - . gene_id "W7K_11015"; transcript_id "KOE98922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98922-1"; +contig25 ena CDS 53075 53656 . - 0 gene_id "W7K_11015"; transcript_id "KOE98922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98922"; +contig25 ena start_codon 53654 53656 . - 0 gene_id "W7K_11015"; transcript_id "KOE98922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 53072 53074 . - 0 gene_id "W7K_11015"; transcript_id "KOE98922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 53751 54197 . - . gene_id "W7K_11020"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 53751 54197 . - . gene_id "W7K_11020"; transcript_id "KOE98923"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 53751 54197 . - . gene_id "W7K_11020"; transcript_id "KOE98923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98923-1"; +contig25 ena CDS 53754 54197 . - 0 gene_id "W7K_11020"; transcript_id "KOE98923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98923"; +contig25 ena start_codon 54195 54197 . - 0 gene_id "W7K_11020"; transcript_id "KOE98923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 53751 53753 . - 0 gene_id "W7K_11020"; transcript_id "KOE98923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 54412 56154 . - . gene_id "W7K_11025"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 54412 56154 . - . gene_id "W7K_11025"; transcript_id "KOE98924"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 54412 56154 . - . gene_id "W7K_11025"; transcript_id "KOE98924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98924-1"; +contig25 ena CDS 54415 56154 . - 0 gene_id "W7K_11025"; transcript_id "KOE98924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98924"; +contig25 ena start_codon 56152 56154 . - 0 gene_id "W7K_11025"; transcript_id "KOE98924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 54412 54414 . - 0 gene_id "W7K_11025"; transcript_id "KOE98924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 56317 57342 . - . gene_id "W7K_11030"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 56317 57342 . - . gene_id "W7K_11030"; transcript_id "KOE98925"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 56317 57342 . - . gene_id "W7K_11030"; transcript_id "KOE98925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98925-1"; +contig25 ena CDS 56320 57342 . - 0 gene_id "W7K_11030"; transcript_id "KOE98925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98925"; +contig25 ena start_codon 57340 57342 . - 0 gene_id "W7K_11030"; transcript_id "KOE98925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 56317 56319 . - 0 gene_id "W7K_11030"; transcript_id "KOE98925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 57461 58513 . - . gene_id "W7K_11035"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 57461 58513 . - . gene_id "W7K_11035"; transcript_id "KOE98926"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 57461 58513 . - . gene_id "W7K_11035"; transcript_id "KOE98926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98926-1"; +contig25 ena CDS 57464 58513 . - 0 gene_id "W7K_11035"; transcript_id "KOE98926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98926"; +contig25 ena start_codon 58511 58513 . - 0 gene_id "W7K_11035"; transcript_id "KOE98926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 57461 57463 . - 0 gene_id "W7K_11035"; transcript_id "KOE98926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 58659 59666 . - . gene_id "W7K_11040"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 58659 59666 . - . gene_id "W7K_11040"; transcript_id "KOE98927"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 58659 59666 . - . gene_id "W7K_11040"; transcript_id "KOE98927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98927-1"; +contig25 ena CDS 58662 59666 . - 0 gene_id "W7K_11040"; transcript_id "KOE98927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98927"; +contig25 ena start_codon 59664 59666 . - 0 gene_id "W7K_11040"; transcript_id "KOE98927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 58659 58661 . - 0 gene_id "W7K_11040"; transcript_id "KOE98927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 59762 60814 . + . gene_id "W7K_11045"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 59762 60814 . + . gene_id "W7K_11045"; transcript_id "KOE98928"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 59762 60814 . + . gene_id "W7K_11045"; transcript_id "KOE98928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98928-1"; +contig25 ena CDS 59762 60811 . + 0 gene_id "W7K_11045"; transcript_id "KOE98928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98928"; +contig25 ena start_codon 59762 59764 . + 0 gene_id "W7K_11045"; transcript_id "KOE98928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 60812 60814 . + 0 gene_id "W7K_11045"; transcript_id "KOE98928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 60842 62059 . + . gene_id "W7K_11050"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 60842 62059 . + . gene_id "W7K_11050"; transcript_id "KOE98929"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 60842 62059 . + . gene_id "W7K_11050"; transcript_id "KOE98929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98929-1"; +contig25 ena CDS 60842 62056 . + 0 gene_id "W7K_11050"; transcript_id "KOE98929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98929"; +contig25 ena start_codon 60842 60844 . + 0 gene_id "W7K_11050"; transcript_id "KOE98929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 62057 62059 . + 0 gene_id "W7K_11050"; transcript_id "KOE98929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 62072 63196 . + . gene_id "W7K_11055"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 62072 63196 . + . gene_id "W7K_11055"; transcript_id "KOE98930"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 62072 63196 . + . gene_id "W7K_11055"; transcript_id "KOE98930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98930-1"; +contig25 ena CDS 62072 63193 . + 0 gene_id "W7K_11055"; transcript_id "KOE98930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98930"; +contig25 ena start_codon 62072 62074 . + 0 gene_id "W7K_11055"; transcript_id "KOE98930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 63194 63196 . + 0 gene_id "W7K_11055"; transcript_id "KOE98930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 63216 64079 . + . gene_id "W7K_11060"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 63216 64079 . + . gene_id "W7K_11060"; transcript_id "KOE98931"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 63216 64079 . + . gene_id "W7K_11060"; transcript_id "KOE98931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98931-1"; +contig25 ena CDS 63216 64076 . + 0 gene_id "W7K_11060"; transcript_id "KOE98931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98931"; +contig25 ena start_codon 63216 63218 . + 0 gene_id "W7K_11060"; transcript_id "KOE98931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 64077 64079 . + 0 gene_id "W7K_11060"; transcript_id "KOE98931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 64150 64404 . + . gene_id "W7K_11065"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 64150 64404 . + . gene_id "W7K_11065"; transcript_id "KOE99212"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 64150 64404 . + . gene_id "W7K_11065"; transcript_id "KOE99212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99212-1"; +contig25 ena CDS 64150 64401 . + 0 gene_id "W7K_11065"; transcript_id "KOE99212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99212"; +contig25 ena start_codon 64150 64152 . + 0 gene_id "W7K_11065"; transcript_id "KOE99212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 64402 64404 . + 0 gene_id "W7K_11065"; transcript_id "KOE99212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 64415 65140 . - . gene_id "W7K_11070"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 64415 65140 . - . gene_id "W7K_11070"; transcript_id "KOE99213"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 64415 65140 . - . gene_id "W7K_11070"; transcript_id "KOE99213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99213-1"; +contig25 ena CDS 64418 65140 . - 0 gene_id "W7K_11070"; transcript_id "KOE99213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99213"; +contig25 ena start_codon 65138 65140 . - 0 gene_id "W7K_11070"; transcript_id "KOE99213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 64415 64417 . - 0 gene_id "W7K_11070"; transcript_id "KOE99213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 65173 65748 . - . gene_id "W7K_11075"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 65173 65748 . - . gene_id "W7K_11075"; transcript_id "KOE98932"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 65173 65748 . - . gene_id "W7K_11075"; transcript_id "KOE98932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98932-1"; +contig25 ena CDS 65176 65748 . - 0 gene_id "W7K_11075"; transcript_id "KOE98932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98932"; +contig25 ena start_codon 65746 65748 . - 0 gene_id "W7K_11075"; transcript_id "KOE98932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 65173 65175 . - 0 gene_id "W7K_11075"; transcript_id "KOE98932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 65748 67433 . - . gene_id "W7K_11080"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 65748 67433 . - . gene_id "W7K_11080"; transcript_id "KOE98933"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 65748 67433 . - . gene_id "W7K_11080"; transcript_id "KOE98933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98933-1"; +contig25 ena CDS 65751 67433 . - 0 gene_id "W7K_11080"; transcript_id "KOE98933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98933"; +contig25 ena start_codon 67431 67433 . - 0 gene_id "W7K_11080"; transcript_id "KOE98933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 65748 65750 . - 0 gene_id "W7K_11080"; transcript_id "KOE98933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 67461 68366 . - . gene_id "W7K_11085"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 67461 68366 . - . gene_id "W7K_11085"; transcript_id "KOE98934"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 67461 68366 . - . gene_id "W7K_11085"; transcript_id "KOE98934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98934-1"; +contig25 ena CDS 67464 68366 . - 0 gene_id "W7K_11085"; transcript_id "KOE98934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98934"; +contig25 ena start_codon 68364 68366 . - 0 gene_id "W7K_11085"; transcript_id "KOE98934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 67461 67463 . - 0 gene_id "W7K_11085"; transcript_id "KOE98934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 68578 69360 . - . gene_id "W7K_11090"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 68578 69360 . - . gene_id "W7K_11090"; transcript_id "KOE98935"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 68578 69360 . - . gene_id "W7K_11090"; transcript_id "KOE98935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98935-1"; +contig25 ena CDS 68581 69360 . - 0 gene_id "W7K_11090"; transcript_id "KOE98935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98935"; +contig25 ena start_codon 69358 69360 . - 0 gene_id "W7K_11090"; transcript_id "KOE98935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 68578 68580 . - 0 gene_id "W7K_11090"; transcript_id "KOE98935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 69357 69683 . - . gene_id "W7K_11095"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 69357 69683 . - . gene_id "W7K_11095"; transcript_id "KOE98936"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 69357 69683 . - . gene_id "W7K_11095"; transcript_id "KOE98936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98936-1"; +contig25 ena CDS 69360 69683 . - 0 gene_id "W7K_11095"; transcript_id "KOE98936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98936"; +contig25 ena start_codon 69681 69683 . - 0 gene_id "W7K_11095"; transcript_id "KOE98936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 69357 69359 . - 0 gene_id "W7K_11095"; transcript_id "KOE98936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 69783 70694 . + . gene_id "W7K_11100"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 69783 70694 . + . gene_id "W7K_11100"; transcript_id "KOE98937"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 69783 70694 . + . gene_id "W7K_11100"; transcript_id "KOE98937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98937-1"; +contig25 ena CDS 69783 70691 . + 0 gene_id "W7K_11100"; transcript_id "KOE98937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98937"; +contig25 ena start_codon 69783 69785 . + 0 gene_id "W7K_11100"; transcript_id "KOE98937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 70692 70694 . + 0 gene_id "W7K_11100"; transcript_id "KOE98937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 70818 71393 . - . gene_id "W7K_11105"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 70818 71393 . - . gene_id "W7K_11105"; transcript_id "KOE98938"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 70818 71393 . - . gene_id "W7K_11105"; transcript_id "KOE98938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98938-1"; +contig25 ena CDS 70821 71393 . - 0 gene_id "W7K_11105"; transcript_id "KOE98938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98938"; +contig25 ena start_codon 71391 71393 . - 0 gene_id "W7K_11105"; transcript_id "KOE98938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 70818 70820 . - 0 gene_id "W7K_11105"; transcript_id "KOE98938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 71564 71959 . - . gene_id "W7K_11110"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 71564 71959 . - . gene_id "W7K_11110"; transcript_id "KOE98939"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 71564 71959 . - . gene_id "W7K_11110"; transcript_id "KOE98939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98939-1"; +contig25 ena CDS 71567 71959 . - 0 gene_id "W7K_11110"; transcript_id "KOE98939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98939"; +contig25 ena start_codon 71957 71959 . - 0 gene_id "W7K_11110"; transcript_id "KOE98939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 71564 71566 . - 0 gene_id "W7K_11110"; transcript_id "KOE98939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 72098 73129 . + . gene_id "W7K_11115"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 72098 73129 . + . gene_id "W7K_11115"; transcript_id "KOE98940"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 72098 73129 . + . gene_id "W7K_11115"; transcript_id "KOE98940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98940-1"; +contig25 ena CDS 72098 73126 . + 0 gene_id "W7K_11115"; transcript_id "KOE98940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98940"; +contig25 ena start_codon 72098 72100 . + 0 gene_id "W7K_11115"; transcript_id "KOE98940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 73127 73129 . + 0 gene_id "W7K_11115"; transcript_id "KOE98940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 73261 74163 . + . gene_id "W7K_11120"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 73261 74163 . + . gene_id "W7K_11120"; transcript_id "KOE98941"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 73261 74163 . + . gene_id "W7K_11120"; transcript_id "KOE98941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98941-1"; +contig25 ena CDS 73261 74160 . + 0 gene_id "W7K_11120"; transcript_id "KOE98941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98941"; +contig25 ena start_codon 73261 73263 . + 0 gene_id "W7K_11120"; transcript_id "KOE98941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 74161 74163 . + 0 gene_id "W7K_11120"; transcript_id "KOE98941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 74176 77760 . + . gene_id "W7K_11125"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 74176 77760 . + . gene_id "W7K_11125"; transcript_id "KOE98942"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 74176 77760 . + . gene_id "W7K_11125"; transcript_id "KOE98942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98942-1"; +contig25 ena CDS 74176 77757 . + 0 gene_id "W7K_11125"; transcript_id "KOE98942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98942"; +contig25 ena start_codon 74176 74178 . + 0 gene_id "W7K_11125"; transcript_id "KOE98942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 77758 77760 . + 0 gene_id "W7K_11125"; transcript_id "KOE98942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 77894 78211 . - . gene_id "W7K_11130"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 77894 78211 . - . gene_id "W7K_11130"; transcript_id "KOE98943"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 77894 78211 . - . gene_id "W7K_11130"; transcript_id "KOE98943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98943-1"; +contig25 ena CDS 77897 78211 . - 0 gene_id "W7K_11130"; transcript_id "KOE98943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98943"; +contig25 ena start_codon 78209 78211 . - 0 gene_id "W7K_11130"; transcript_id "KOE98943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 77894 77896 . - 0 gene_id "W7K_11130"; transcript_id "KOE98943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 78353 78739 . - . gene_id "W7K_11135"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 78353 78739 . - . gene_id "W7K_11135"; transcript_id "KOE98944"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 78353 78739 . - . gene_id "W7K_11135"; transcript_id "KOE98944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98944-1"; +contig25 ena CDS 78356 78739 . - 0 gene_id "W7K_11135"; transcript_id "KOE98944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98944"; +contig25 ena start_codon 78737 78739 . - 0 gene_id "W7K_11135"; transcript_id "KOE98944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 78353 78355 . - 0 gene_id "W7K_11135"; transcript_id "KOE98944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 78865 80577 . - . gene_id "W7K_11140"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 78865 80577 . - . gene_id "W7K_11140"; transcript_id "KOE98945"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 78865 80577 . - . gene_id "W7K_11140"; transcript_id "KOE98945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98945-1"; +contig25 ena CDS 78868 80577 . - 0 gene_id "W7K_11140"; transcript_id "KOE98945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98945"; +contig25 ena start_codon 80575 80577 . - 0 gene_id "W7K_11140"; transcript_id "KOE98945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 78865 78867 . - 0 gene_id "W7K_11140"; transcript_id "KOE98945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 80577 82064 . - . gene_id "W7K_11145"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 80577 82064 . - . gene_id "W7K_11145"; transcript_id "KOE98946"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 80577 82064 . - . gene_id "W7K_11145"; transcript_id "KOE98946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98946-1"; +contig25 ena CDS 80580 82064 . - 0 gene_id "W7K_11145"; transcript_id "KOE98946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98946"; +contig25 ena start_codon 82062 82064 . - 0 gene_id "W7K_11145"; transcript_id "KOE98946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 80577 80579 . - 0 gene_id "W7K_11145"; transcript_id "KOE98946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 82061 84253 . - . gene_id "W7K_11150"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 82061 84253 . - . gene_id "W7K_11150"; transcript_id "KOE98947"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 82061 84253 . - . gene_id "W7K_11150"; transcript_id "KOE98947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98947-1"; +contig25 ena CDS 82064 84253 . - 0 gene_id "W7K_11150"; transcript_id "KOE98947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98947"; +contig25 ena start_codon 84251 84253 . - 0 gene_id "W7K_11150"; transcript_id "KOE98947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 82061 82063 . - 0 gene_id "W7K_11150"; transcript_id "KOE98947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 84491 86545 . + . gene_id "W7K_11155"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 84491 86545 . + . gene_id "W7K_11155"; transcript_id "KOE99214"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 84491 86545 . + . gene_id "W7K_11155"; transcript_id "KOE99214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99214-1"; +contig25 ena CDS 84491 86542 . + 0 gene_id "W7K_11155"; transcript_id "KOE99214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99214"; +contig25 ena start_codon 84491 84493 . + 0 gene_id "W7K_11155"; transcript_id "KOE99214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 86543 86545 . + 0 gene_id "W7K_11155"; transcript_id "KOE99214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 86823 89591 . + . gene_id "W7K_11160"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 86823 89591 . + . gene_id "W7K_11160"; transcript_id "KOE99215"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 86823 89591 . + . gene_id "W7K_11160"; transcript_id "KOE99215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99215-1"; +contig25 ena CDS 86823 89588 . + 0 gene_id "W7K_11160"; transcript_id "KOE99215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99215"; +contig25 ena start_codon 86823 86825 . + 0 gene_id "W7K_11160"; transcript_id "KOE99215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 89589 89591 . + 0 gene_id "W7K_11160"; transcript_id "KOE99215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 89775 91388 . - . gene_id "W7K_11165"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 89775 91388 . - . gene_id "W7K_11165"; transcript_id "KOE98948"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 89775 91388 . - . gene_id "W7K_11165"; transcript_id "KOE98948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98948-1"; +contig25 ena CDS 89778 91388 . - 0 gene_id "W7K_11165"; transcript_id "KOE98948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98948"; +contig25 ena start_codon 91386 91388 . - 0 gene_id "W7K_11165"; transcript_id "KOE98948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 89775 89777 . - 0 gene_id "W7K_11165"; transcript_id "KOE98948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 91604 92602 . + . gene_id "W7K_11170"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 91604 92602 . + . gene_id "W7K_11170"; transcript_id "KOE98949"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 91604 92602 . + . gene_id "W7K_11170"; transcript_id "KOE98949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98949-1"; +contig25 ena CDS 91604 92599 . + 0 gene_id "W7K_11170"; transcript_id "KOE98949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98949"; +contig25 ena start_codon 91604 91606 . + 0 gene_id "W7K_11170"; transcript_id "KOE98949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 92600 92602 . + 0 gene_id "W7K_11170"; transcript_id "KOE98949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 92717 93502 . - . gene_id "W7K_11175"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 92717 93502 . - . gene_id "W7K_11175"; transcript_id "KOE98950"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 92717 93502 . - . gene_id "W7K_11175"; transcript_id "KOE98950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98950-1"; +contig25 ena CDS 92720 93502 . - 0 gene_id "W7K_11175"; transcript_id "KOE98950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98950"; +contig25 ena start_codon 93500 93502 . - 0 gene_id "W7K_11175"; transcript_id "KOE98950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 92717 92719 . - 0 gene_id "W7K_11175"; transcript_id "KOE98950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 93636 94232 . + . gene_id "W7K_11180"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 93636 94232 . + . gene_id "W7K_11180"; transcript_id "KOE98951"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 93636 94232 . + . gene_id "W7K_11180"; transcript_id "KOE98951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98951-1"; +contig25 ena CDS 93636 94229 . + 0 gene_id "W7K_11180"; transcript_id "KOE98951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98951"; +contig25 ena start_codon 93636 93638 . + 0 gene_id "W7K_11180"; transcript_id "KOE98951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 94230 94232 . + 0 gene_id "W7K_11180"; transcript_id "KOE98951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 94357 95766 . - . gene_id "W7K_11185"; gene_name "murD"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 94357 95766 . - . gene_id "W7K_11185"; transcript_id "KOE98952"; gene_name "murD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 94357 95766 . - . gene_id "W7K_11185"; transcript_id "KOE98952"; exon_number "1"; gene_name "murD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98952-1"; +contig25 ena CDS 94360 95766 . - 0 gene_id "W7K_11185"; transcript_id "KOE98952"; exon_number "1"; gene_name "murD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98952"; +contig25 ena start_codon 95764 95766 . - 0 gene_id "W7K_11185"; transcript_id "KOE98952"; exon_number "1"; gene_name "murD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 94357 94359 . - 0 gene_id "W7K_11185"; transcript_id "KOE98952"; exon_number "1"; gene_name "murD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 95747 97099 . - . gene_id "W7K_11190"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 95747 97099 . - . gene_id "W7K_11190"; transcript_id "KOE98953"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 95747 97099 . - . gene_id "W7K_11190"; transcript_id "KOE98953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98953-1"; +contig25 ena CDS 95750 97099 . - 0 gene_id "W7K_11190"; transcript_id "KOE98953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98953"; +contig25 ena start_codon 97097 97099 . - 0 gene_id "W7K_11190"; transcript_id "KOE98953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 95747 95749 . - 0 gene_id "W7K_11190"; transcript_id "KOE98953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 97176 99770 . - . gene_id "W7K_11195"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 97176 99770 . - . gene_id "W7K_11195"; transcript_id "KOE98954"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 97176 99770 . - . gene_id "W7K_11195"; transcript_id "KOE98954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98954-1"; +contig25 ena CDS 97179 99770 . - 0 gene_id "W7K_11195"; transcript_id "KOE98954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98954"; +contig25 ena start_codon 99768 99770 . - 0 gene_id "W7K_11195"; transcript_id "KOE98954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 97176 97178 . - 0 gene_id "W7K_11195"; transcript_id "KOE98954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 99846 100718 . + . gene_id "W7K_11200"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 99846 100718 . + . gene_id "W7K_11200"; transcript_id "KOE98955"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 99846 100718 . + . gene_id "W7K_11200"; transcript_id "KOE98955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98955-1"; +contig25 ena CDS 99846 100715 . + 0 gene_id "W7K_11200"; transcript_id "KOE98955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98955"; +contig25 ena start_codon 99846 99848 . + 0 gene_id "W7K_11200"; transcript_id "KOE98955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 100716 100718 . + 0 gene_id "W7K_11200"; transcript_id "KOE98955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 100809 101687 . + . gene_id "W7K_11205"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 100809 101687 . + . gene_id "W7K_11205"; transcript_id "KOE98956"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 100809 101687 . + . gene_id "W7K_11205"; transcript_id "KOE98956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98956-1"; +contig25 ena CDS 100809 101684 . + 0 gene_id "W7K_11205"; transcript_id "KOE98956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98956"; +contig25 ena start_codon 100809 100811 . + 0 gene_id "W7K_11205"; transcript_id "KOE98956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 101685 101687 . + 0 gene_id "W7K_11205"; transcript_id "KOE98956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 101787 102218 . - . gene_id "W7K_11210"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 101787 102218 . - . gene_id "W7K_11210"; transcript_id "KOE98957"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 101787 102218 . - . gene_id "W7K_11210"; transcript_id "KOE98957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98957-1"; +contig25 ena CDS 101790 102218 . - 0 gene_id "W7K_11210"; transcript_id "KOE98957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98957"; +contig25 ena start_codon 102216 102218 . - 0 gene_id "W7K_11210"; transcript_id "KOE98957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 101787 101789 . - 0 gene_id "W7K_11210"; transcript_id "KOE98957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 102591 102989 . + . gene_id "W7K_11215"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 102591 102989 . + . gene_id "W7K_11215"; transcript_id "KOE98958"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 102591 102989 . + . gene_id "W7K_11215"; transcript_id "KOE98958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98958-1"; +contig25 ena CDS 102591 102986 . + 0 gene_id "W7K_11215"; transcript_id "KOE98958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98958"; +contig25 ena start_codon 102591 102593 . + 0 gene_id "W7K_11215"; transcript_id "KOE98958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 102987 102989 . + 0 gene_id "W7K_11215"; transcript_id "KOE98958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 103244 103552 . + . gene_id "W7K_11220"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 103244 103552 . + . gene_id "W7K_11220"; transcript_id "KOE98959"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 103244 103552 . + . gene_id "W7K_11220"; transcript_id "KOE98959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98959-1"; +contig25 ena CDS 103244 103549 . + 0 gene_id "W7K_11220"; transcript_id "KOE98959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98959"; +contig25 ena start_codon 103244 103246 . + 0 gene_id "W7K_11220"; transcript_id "KOE98959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 103550 103552 . + 0 gene_id "W7K_11220"; transcript_id "KOE98959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 103608 104156 . + . gene_id "W7K_11225"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 103608 104156 . + . gene_id "W7K_11225"; transcript_id "KOE98960"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 103608 104156 . + . gene_id "W7K_11225"; transcript_id "KOE98960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98960-1"; +contig25 ena CDS 103608 104153 . + 0 gene_id "W7K_11225"; transcript_id "KOE98960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98960"; +contig25 ena start_codon 103608 103610 . + 0 gene_id "W7K_11225"; transcript_id "KOE98960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 104154 104156 . + 0 gene_id "W7K_11225"; transcript_id "KOE98960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 104239 104835 . + . gene_id "W7K_11230"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 104239 104835 . + . gene_id "W7K_11230"; transcript_id "KOE98961"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 104239 104835 . + . gene_id "W7K_11230"; transcript_id "KOE98961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98961-1"; +contig25 ena CDS 104239 104832 . + 0 gene_id "W7K_11230"; transcript_id "KOE98961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98961"; +contig25 ena start_codon 104239 104241 . + 0 gene_id "W7K_11230"; transcript_id "KOE98961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 104833 104835 . + 0 gene_id "W7K_11230"; transcript_id "KOE98961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 104874 105416 . - . gene_id "W7K_11235"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 104874 105416 . - . gene_id "W7K_11235"; transcript_id "KOE98962"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 104874 105416 . - . gene_id "W7K_11235"; transcript_id "KOE98962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98962-1"; +contig25 ena CDS 104877 105416 . - 0 gene_id "W7K_11235"; transcript_id "KOE98962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98962"; +contig25 ena start_codon 105414 105416 . - 0 gene_id "W7K_11235"; transcript_id "KOE98962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 104874 104876 . - 0 gene_id "W7K_11235"; transcript_id "KOE98962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 105546 106013 . - . gene_id "W7K_11240"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 105546 106013 . - . gene_id "W7K_11240"; transcript_id "KOE98963"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 105546 106013 . - . gene_id "W7K_11240"; transcript_id "KOE98963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98963-1"; +contig25 ena CDS 105549 106013 . - 0 gene_id "W7K_11240"; transcript_id "KOE98963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98963"; +contig25 ena start_codon 106011 106013 . - 0 gene_id "W7K_11240"; transcript_id "KOE98963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 105546 105548 . - 0 gene_id "W7K_11240"; transcript_id "KOE98963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 106223 106678 . + . gene_id "W7K_11245"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 106223 106678 . + . gene_id "W7K_11245"; transcript_id "KOE98964"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 106223 106678 . + . gene_id "W7K_11245"; transcript_id "KOE98964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98964-1"; +contig25 ena CDS 106223 106675 . + 0 gene_id "W7K_11245"; transcript_id "KOE98964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98964"; +contig25 ena start_codon 106223 106225 . + 0 gene_id "W7K_11245"; transcript_id "KOE98964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 106676 106678 . + 0 gene_id "W7K_11245"; transcript_id "KOE98964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 106696 108171 . + . gene_id "W7K_11250"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 106696 108171 . + . gene_id "W7K_11250"; transcript_id "KOE98965"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 106696 108171 . + . gene_id "W7K_11250"; transcript_id "KOE98965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98965-1"; +contig25 ena CDS 106696 108168 . + 0 gene_id "W7K_11250"; transcript_id "KOE98965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98965"; +contig25 ena start_codon 106696 106698 . + 0 gene_id "W7K_11250"; transcript_id "KOE98965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 108169 108171 . + 0 gene_id "W7K_11250"; transcript_id "KOE98965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 108246 109010 . + . gene_id "W7K_11255"; gene_name "sufC"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 108246 109010 . + . gene_id "W7K_11255"; transcript_id "KOE98966"; gene_name "sufC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sufC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 108246 109010 . + . gene_id "W7K_11255"; transcript_id "KOE98966"; exon_number "1"; gene_name "sufC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sufC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98966-1"; +contig25 ena CDS 108246 109007 . + 0 gene_id "W7K_11255"; transcript_id "KOE98966"; exon_number "1"; gene_name "sufC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sufC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98966"; +contig25 ena start_codon 108246 108248 . + 0 gene_id "W7K_11255"; transcript_id "KOE98966"; exon_number "1"; gene_name "sufC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sufC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 109008 109010 . + 0 gene_id "W7K_11255"; transcript_id "KOE98966"; exon_number "1"; gene_name "sufC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sufC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 109010 110272 . + . gene_id "W7K_11260"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 109010 110272 . + . gene_id "W7K_11260"; transcript_id "KOE98967"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 109010 110272 . + . gene_id "W7K_11260"; transcript_id "KOE98967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98967-1"; +contig25 ena CDS 109010 110269 . + 0 gene_id "W7K_11260"; transcript_id "KOE98967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98967"; +contig25 ena start_codon 109010 109012 . + 0 gene_id "W7K_11260"; transcript_id "KOE98967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 110270 110272 . + 0 gene_id "W7K_11260"; transcript_id "KOE98967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 110269 111525 . + . gene_id "W7K_11265"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 110269 111525 . + . gene_id "W7K_11265"; transcript_id "KOE98968"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 110269 111525 . + . gene_id "W7K_11265"; transcript_id "KOE98968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98968-1"; +contig25 ena CDS 110269 111522 . + 0 gene_id "W7K_11265"; transcript_id "KOE98968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98968"; +contig25 ena start_codon 110269 110271 . + 0 gene_id "W7K_11265"; transcript_id "KOE98968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 111523 111525 . + 0 gene_id "W7K_11265"; transcript_id "KOE98968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 111702 112004 . - . gene_id "W7K_11270"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 111702 112004 . - . gene_id "W7K_11270"; transcript_id "KOE98969"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 111702 112004 . - . gene_id "W7K_11270"; transcript_id "KOE98969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98969-1"; +contig25 ena CDS 111705 112004 . - 0 gene_id "W7K_11270"; transcript_id "KOE98969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98969"; +contig25 ena start_codon 112002 112004 . - 0 gene_id "W7K_11270"; transcript_id "KOE98969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 111702 111704 . - 0 gene_id "W7K_11270"; transcript_id "KOE98969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 112702 113139 . - . gene_id "W7K_11275"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 112702 113139 . - . gene_id "W7K_11275"; transcript_id "KOE98970"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 112702 113139 . - . gene_id "W7K_11275"; transcript_id "KOE98970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98970-1"; +contig25 ena CDS 112705 113139 . - 0 gene_id "W7K_11275"; transcript_id "KOE98970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98970"; +contig25 ena start_codon 113137 113139 . - 0 gene_id "W7K_11275"; transcript_id "KOE98970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 112702 112704 . - 0 gene_id "W7K_11275"; transcript_id "KOE98970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 114872 115066 . - . gene_id "W7K_11280"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 114872 115066 . - . gene_id "W7K_11280"; transcript_id "KOE98971"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 114872 115066 . - . gene_id "W7K_11280"; transcript_id "KOE98971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98971-1"; +contig25 ena CDS 114875 115066 . - 0 gene_id "W7K_11280"; transcript_id "KOE98971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98971"; +contig25 ena start_codon 115064 115066 . - 0 gene_id "W7K_11280"; transcript_id "KOE98971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 114872 114874 . - 0 gene_id "W7K_11280"; transcript_id "KOE98971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 115588 115953 . - . gene_id "W7K_11285"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 115588 115953 . - . gene_id "W7K_11285"; transcript_id "KOE98972"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 115588 115953 . - . gene_id "W7K_11285"; transcript_id "KOE98972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98972-1"; +contig25 ena CDS 115591 115953 . - 0 gene_id "W7K_11285"; transcript_id "KOE98972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98972"; +contig25 ena start_codon 115951 115953 . - 0 gene_id "W7K_11285"; transcript_id "KOE98972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 115588 115590 . - 0 gene_id "W7K_11285"; transcript_id "KOE98972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 118689 124019 . - . gene_id "W7K_11295"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 118689 124019 . - . gene_id "W7K_11295"; transcript_id "KOE98973"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 118689 124019 . - . gene_id "W7K_11295"; transcript_id "KOE98973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98973-1"; +contig25 ena CDS 118692 124019 . - 0 gene_id "W7K_11295"; transcript_id "KOE98973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98973"; +contig25 ena start_codon 124017 124019 . - 0 gene_id "W7K_11295"; transcript_id "KOE98973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 118689 118691 . - 0 gene_id "W7K_11295"; transcript_id "KOE98973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 124261 124800 . + . gene_id "W7K_11300"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 124261 124800 . + . gene_id "W7K_11300"; transcript_id "KOE98974"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 124261 124800 . + . gene_id "W7K_11300"; transcript_id "KOE98974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98974-1"; +contig25 ena CDS 124261 124797 . + 0 gene_id "W7K_11300"; transcript_id "KOE98974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98974"; +contig25 ena start_codon 124261 124263 . + 0 gene_id "W7K_11300"; transcript_id "KOE98974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 124798 124800 . + 0 gene_id "W7K_11300"; transcript_id "KOE98974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 124797 125129 . + . gene_id "W7K_11305"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 124797 125129 . + . gene_id "W7K_11305"; transcript_id "KOE98975"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 124797 125129 . + . gene_id "W7K_11305"; transcript_id "KOE98975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98975-1"; +contig25 ena CDS 124797 125126 . + 0 gene_id "W7K_11305"; transcript_id "KOE98975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98975"; +contig25 ena start_codon 124797 124799 . + 0 gene_id "W7K_11305"; transcript_id "KOE98975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 125127 125129 . + 0 gene_id "W7K_11305"; transcript_id "KOE98975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 125335 125739 . + . gene_id "W7K_11310"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 125335 125739 . + . gene_id "W7K_11310"; transcript_id "KOE98976"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 125335 125739 . + . gene_id "W7K_11310"; transcript_id "KOE98976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98976-1"; +contig25 ena CDS 125335 125736 . + 0 gene_id "W7K_11310"; transcript_id "KOE98976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98976"; +contig25 ena start_codon 125335 125337 . + 0 gene_id "W7K_11310"; transcript_id "KOE98976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 125737 125739 . + 0 gene_id "W7K_11310"; transcript_id "KOE98976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 125890 128196 . + . gene_id "W7K_11315"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 125890 128196 . + . gene_id "W7K_11315"; transcript_id "KOE99216"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 125890 128196 . + . gene_id "W7K_11315"; transcript_id "KOE99216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99216-1"; +contig25 ena CDS 125890 128193 . + 0 gene_id "W7K_11315"; transcript_id "KOE99216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99216"; +contig25 ena start_codon 125890 125892 . + 0 gene_id "W7K_11315"; transcript_id "KOE99216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 128194 128196 . + 0 gene_id "W7K_11315"; transcript_id "KOE99216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 128265 128984 . + . gene_id "W7K_11320"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 128265 128984 . + . gene_id "W7K_11320"; transcript_id "KOE98977"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 128265 128984 . + . gene_id "W7K_11320"; transcript_id "KOE98977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98977-1"; +contig25 ena CDS 128265 128981 . + 0 gene_id "W7K_11320"; transcript_id "KOE98977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98977"; +contig25 ena start_codon 128265 128267 . + 0 gene_id "W7K_11320"; transcript_id "KOE98977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 128982 128984 . + 0 gene_id "W7K_11320"; transcript_id "KOE98977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 128995 129672 . + . gene_id "W7K_11325"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 128995 129672 . + . gene_id "W7K_11325"; transcript_id "KOE98978"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 128995 129672 . + . gene_id "W7K_11325"; transcript_id "KOE98978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98978-1"; +contig25 ena CDS 128995 129669 . + 0 gene_id "W7K_11325"; transcript_id "KOE98978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98978"; +contig25 ena start_codon 128995 128997 . + 0 gene_id "W7K_11325"; transcript_id "KOE98978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 129670 129672 . + 0 gene_id "W7K_11325"; transcript_id "KOE98978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 129837 130247 . + . gene_id "W7K_11330"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 129837 130247 . + . gene_id "W7K_11330"; transcript_id "KOE98979"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 129837 130247 . + . gene_id "W7K_11330"; transcript_id "KOE98979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98979-1"; +contig25 ena CDS 129837 130244 . + 0 gene_id "W7K_11330"; transcript_id "KOE98979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98979"; +contig25 ena start_codon 129837 129839 . + 0 gene_id "W7K_11330"; transcript_id "KOE98979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 130245 130247 . + 0 gene_id "W7K_11330"; transcript_id "KOE98979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 130394 132814 . + . gene_id "W7K_11335"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 130394 132814 . + . gene_id "W7K_11335"; transcript_id "KOE98980"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 130394 132814 . + . gene_id "W7K_11335"; transcript_id "KOE98980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98980-1"; +contig25 ena CDS 130394 132811 . + 0 gene_id "W7K_11335"; transcript_id "KOE98980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98980"; +contig25 ena start_codon 130394 130396 . + 0 gene_id "W7K_11335"; transcript_id "KOE98980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 132812 132814 . + 0 gene_id "W7K_11335"; transcript_id "KOE98980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 133053 133691 . + . gene_id "W7K_11340"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 133053 133691 . + . gene_id "W7K_11340"; transcript_id "KOE98981"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 133053 133691 . + . gene_id "W7K_11340"; transcript_id "KOE98981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98981-1"; +contig25 ena CDS 133053 133688 . + 0 gene_id "W7K_11340"; transcript_id "KOE98981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98981"; +contig25 ena start_codon 133053 133055 . + 0 gene_id "W7K_11340"; transcript_id "KOE98981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 133689 133691 . + 0 gene_id "W7K_11340"; transcript_id "KOE98981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 133718 134236 . + . gene_id "W7K_11345"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 133718 134236 . + . gene_id "W7K_11345"; transcript_id "KOE98982"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 133718 134236 . + . gene_id "W7K_11345"; transcript_id "KOE98982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98982-1"; +contig25 ena CDS 133718 134233 . + 0 gene_id "W7K_11345"; transcript_id "KOE98982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98982"; +contig25 ena start_codon 133718 133720 . + 0 gene_id "W7K_11345"; transcript_id "KOE98982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 134234 134236 . + 0 gene_id "W7K_11345"; transcript_id "KOE98982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 134310 135113 . + . gene_id "W7K_11350"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 134310 135113 . + . gene_id "W7K_11350"; transcript_id "KOE98983"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 134310 135113 . + . gene_id "W7K_11350"; transcript_id "KOE98983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98983-1"; +contig25 ena CDS 134310 135110 . + 0 gene_id "W7K_11350"; transcript_id "KOE98983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98983"; +contig25 ena start_codon 134310 134312 . + 0 gene_id "W7K_11350"; transcript_id "KOE98983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 135111 135113 . + 0 gene_id "W7K_11350"; transcript_id "KOE98983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 135168 136139 . + . gene_id "W7K_11355"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 135168 136139 . + . gene_id "W7K_11355"; transcript_id "KOE98984"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 135168 136139 . + . gene_id "W7K_11355"; transcript_id "KOE98984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98984-1"; +contig25 ena CDS 135168 136136 . + 0 gene_id "W7K_11355"; transcript_id "KOE98984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98984"; +contig25 ena start_codon 135168 135170 . + 0 gene_id "W7K_11355"; transcript_id "KOE98984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 136137 136139 . + 0 gene_id "W7K_11355"; transcript_id "KOE98984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 136136 137740 . + . gene_id "W7K_11360"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 136136 137740 . + . gene_id "W7K_11360"; transcript_id "KOE98985"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 136136 137740 . + . gene_id "W7K_11360"; transcript_id "KOE98985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98985-1"; +contig25 ena CDS 136136 137737 . + 0 gene_id "W7K_11360"; transcript_id "KOE98985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98985"; +contig25 ena start_codon 136136 136138 . + 0 gene_id "W7K_11360"; transcript_id "KOE98985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 137738 137740 . + 0 gene_id "W7K_11360"; transcript_id "KOE98985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 137825 138430 . - . gene_id "W7K_11365"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 137825 138430 . - . gene_id "W7K_11365"; transcript_id "KOE98986"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 137825 138430 . - . gene_id "W7K_11365"; transcript_id "KOE98986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98986-1"; +contig25 ena CDS 137828 138430 . - 0 gene_id "W7K_11365"; transcript_id "KOE98986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98986"; +contig25 ena start_codon 138428 138430 . - 0 gene_id "W7K_11365"; transcript_id "KOE98986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 137825 137827 . - 0 gene_id "W7K_11365"; transcript_id "KOE98986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 138465 139190 . - . gene_id "W7K_11370"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 138465 139190 . - . gene_id "W7K_11370"; transcript_id "KOE98987"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 138465 139190 . - . gene_id "W7K_11370"; transcript_id "KOE98987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98987-1"; +contig25 ena CDS 138468 139190 . - 0 gene_id "W7K_11370"; transcript_id "KOE98987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98987"; +contig25 ena start_codon 139188 139190 . - 0 gene_id "W7K_11370"; transcript_id "KOE98987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 138465 138467 . - 0 gene_id "W7K_11370"; transcript_id "KOE98987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 139208 140284 . - . gene_id "W7K_11375"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 139208 140284 . - . gene_id "W7K_11375"; transcript_id "KOE98988"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 139208 140284 . - . gene_id "W7K_11375"; transcript_id "KOE98988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98988-1"; +contig25 ena CDS 139211 140284 . - 0 gene_id "W7K_11375"; transcript_id "KOE98988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98988"; +contig25 ena start_codon 140282 140284 . - 0 gene_id "W7K_11375"; transcript_id "KOE98988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 139208 139210 . - 0 gene_id "W7K_11375"; transcript_id "KOE98988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 140637 140963 . - . gene_id "W7K_11380"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 140637 140963 . - . gene_id "W7K_11380"; transcript_id "KOE99217"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 140637 140963 . - . gene_id "W7K_11380"; transcript_id "KOE99217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99217-1"; +contig25 ena CDS 140640 140963 . - 0 gene_id "W7K_11380"; transcript_id "KOE99217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99217"; +contig25 ena start_codon 140961 140963 . - 0 gene_id "W7K_11380"; transcript_id "KOE99217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 140637 140639 . - 0 gene_id "W7K_11380"; transcript_id "KOE99217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 141165 142658 . + . gene_id "W7K_11385"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 141165 142658 . + . gene_id "W7K_11385"; transcript_id "KOE98989"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 141165 142658 . + . gene_id "W7K_11385"; transcript_id "KOE98989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98989-1"; +contig25 ena CDS 141165 142655 . + 0 gene_id "W7K_11385"; transcript_id "KOE98989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98989"; +contig25 ena start_codon 141165 141167 . + 0 gene_id "W7K_11385"; transcript_id "KOE98989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 142656 142658 . + 0 gene_id "W7K_11385"; transcript_id "KOE98989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 142729 142998 . + . gene_id "W7K_11390"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 142729 142998 . + . gene_id "W7K_11390"; transcript_id "KOE98990"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 142729 142998 . + . gene_id "W7K_11390"; transcript_id "KOE98990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98990-1"; +contig25 ena CDS 142729 142995 . + 0 gene_id "W7K_11390"; transcript_id "KOE98990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98990"; +contig25 ena start_codon 142729 142731 . + 0 gene_id "W7K_11390"; transcript_id "KOE98990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 142996 142998 . + 0 gene_id "W7K_11390"; transcript_id "KOE98990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 143063 144088 . + . gene_id "W7K_11395"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 143063 144088 . + . gene_id "W7K_11395"; transcript_id "KOE98991"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 143063 144088 . + . gene_id "W7K_11395"; transcript_id "KOE98991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98991-1"; +contig25 ena CDS 143063 144085 . + 0 gene_id "W7K_11395"; transcript_id "KOE98991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98991"; +contig25 ena start_codon 143063 143065 . + 0 gene_id "W7K_11395"; transcript_id "KOE98991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 144086 144088 . + 0 gene_id "W7K_11395"; transcript_id "KOE98991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 144085 144795 . + . gene_id "W7K_11400"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 144085 144795 . + . gene_id "W7K_11400"; transcript_id "KOE98992"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 144085 144795 . + . gene_id "W7K_11400"; transcript_id "KOE98992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98992-1"; +contig25 ena CDS 144085 144792 . + 0 gene_id "W7K_11400"; transcript_id "KOE98992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98992"; +contig25 ena start_codon 144085 144087 . + 0 gene_id "W7K_11400"; transcript_id "KOE98992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 144793 144795 . + 0 gene_id "W7K_11400"; transcript_id "KOE98992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 145269 145976 . - . gene_id "W7K_11405"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 145269 145976 . - . gene_id "W7K_11405"; transcript_id "KOE98993"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 145269 145976 . - . gene_id "W7K_11405"; transcript_id "KOE98993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98993-1"; +contig25 ena CDS 145272 145976 . - 0 gene_id "W7K_11405"; transcript_id "KOE98993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98993"; +contig25 ena start_codon 145974 145976 . - 0 gene_id "W7K_11405"; transcript_id "KOE98993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 145269 145271 . - 0 gene_id "W7K_11405"; transcript_id "KOE98993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 145976 147145 . - . gene_id "W7K_11410"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 145976 147145 . - . gene_id "W7K_11410"; transcript_id "KOE98994"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 145976 147145 . - . gene_id "W7K_11410"; transcript_id "KOE98994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98994-1"; +contig25 ena CDS 145979 147145 . - 0 gene_id "W7K_11410"; transcript_id "KOE98994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98994"; +contig25 ena start_codon 147143 147145 . - 0 gene_id "W7K_11410"; transcript_id "KOE98994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 145976 145978 . - 0 gene_id "W7K_11410"; transcript_id "KOE98994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 147142 148281 . - . gene_id "W7K_11415"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 147142 148281 . - . gene_id "W7K_11415"; transcript_id "KOE98995"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 147142 148281 . - . gene_id "W7K_11415"; transcript_id "KOE98995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98995-1"; +contig25 ena CDS 147145 148281 . - 0 gene_id "W7K_11415"; transcript_id "KOE98995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98995"; +contig25 ena start_codon 148279 148281 . - 0 gene_id "W7K_11415"; transcript_id "KOE98995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 147142 147144 . - 0 gene_id "W7K_11415"; transcript_id "KOE98995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 148381 149439 . + . gene_id "W7K_11420"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 148381 149439 . + . gene_id "W7K_11420"; transcript_id "KOE98996"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 148381 149439 . + . gene_id "W7K_11420"; transcript_id "KOE98996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98996-1"; +contig25 ena CDS 148381 149436 . + 0 gene_id "W7K_11420"; transcript_id "KOE98996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98996"; +contig25 ena start_codon 148381 148383 . + 0 gene_id "W7K_11420"; transcript_id "KOE98996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 149437 149439 . + 0 gene_id "W7K_11420"; transcript_id "KOE98996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 149462 149950 . + . gene_id "W7K_11425"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 149462 149950 . + . gene_id "W7K_11425"; transcript_id "KOE98997"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 149462 149950 . + . gene_id "W7K_11425"; transcript_id "KOE98997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98997-1"; +contig25 ena CDS 149462 149947 . + 0 gene_id "W7K_11425"; transcript_id "KOE98997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98997"; +contig25 ena start_codon 149462 149464 . + 0 gene_id "W7K_11425"; transcript_id "KOE98997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 149948 149950 . + 0 gene_id "W7K_11425"; transcript_id "KOE98997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 149947 150369 . + . gene_id "W7K_11430"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 149947 150369 . + . gene_id "W7K_11430"; transcript_id "KOE98998"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 149947 150369 . + . gene_id "W7K_11430"; transcript_id "KOE98998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98998-1"; +contig25 ena CDS 149947 150366 . + 0 gene_id "W7K_11430"; transcript_id "KOE98998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98998"; +contig25 ena start_codon 149947 149949 . + 0 gene_id "W7K_11430"; transcript_id "KOE98998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 150367 150369 . + 0 gene_id "W7K_11430"; transcript_id "KOE98998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 150411 151073 . + . gene_id "W7K_11435"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 150411 151073 . + . gene_id "W7K_11435"; transcript_id "KOE98999"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 150411 151073 . + . gene_id "W7K_11435"; transcript_id "KOE98999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98999-1"; +contig25 ena CDS 150411 151070 . + 0 gene_id "W7K_11435"; transcript_id "KOE98999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98999"; +contig25 ena start_codon 150411 150413 . + 0 gene_id "W7K_11435"; transcript_id "KOE98999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 151071 151073 . + 0 gene_id "W7K_11435"; transcript_id "KOE98999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 151070 151729 . + . gene_id "W7K_11440"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 151070 151729 . + . gene_id "W7K_11440"; transcript_id "KOE99000"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 151070 151729 . + . gene_id "W7K_11440"; transcript_id "KOE99000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99000-1"; +contig25 ena CDS 151070 151726 . + 0 gene_id "W7K_11440"; transcript_id "KOE99000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99000"; +contig25 ena start_codon 151070 151072 . + 0 gene_id "W7K_11440"; transcript_id "KOE99000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 151727 151729 . + 0 gene_id "W7K_11440"; transcript_id "KOE99000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 151798 152622 . + . gene_id "W7K_11445"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 151798 152622 . + . gene_id "W7K_11445"; transcript_id "KOE99001"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 151798 152622 . + . gene_id "W7K_11445"; transcript_id "KOE99001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99001-1"; +contig25 ena CDS 151798 152619 . + 0 gene_id "W7K_11445"; transcript_id "KOE99001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99001"; +contig25 ena start_codon 151798 151800 . + 0 gene_id "W7K_11445"; transcript_id "KOE99001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 152620 152622 . + 0 gene_id "W7K_11445"; transcript_id "KOE99001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 152625 153308 . + . gene_id "W7K_11450"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 152625 153308 . + . gene_id "W7K_11450"; transcript_id "KOE99002"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 152625 153308 . + . gene_id "W7K_11450"; transcript_id "KOE99002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99002-1"; +contig25 ena CDS 152625 153305 . + 0 gene_id "W7K_11450"; transcript_id "KOE99002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99002"; +contig25 ena start_codon 152625 152627 . + 0 gene_id "W7K_11450"; transcript_id "KOE99002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 153306 153308 . + 0 gene_id "W7K_11450"; transcript_id "KOE99002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 153387 153713 . - . gene_id "W7K_11455"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 153387 153713 . - . gene_id "W7K_11455"; transcript_id "KOE99003"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 153387 153713 . - . gene_id "W7K_11455"; transcript_id "KOE99003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99003-1"; +contig25 ena CDS 153390 153713 . - 0 gene_id "W7K_11455"; transcript_id "KOE99003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99003"; +contig25 ena start_codon 153711 153713 . - 0 gene_id "W7K_11455"; transcript_id "KOE99003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 153387 153389 . - 0 gene_id "W7K_11455"; transcript_id "KOE99003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 153710 154981 . - . gene_id "W7K_11460"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 153710 154981 . - . gene_id "W7K_11460"; transcript_id "KOE99004"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 153710 154981 . - . gene_id "W7K_11460"; transcript_id "KOE99004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99004-1"; +contig25 ena CDS 153713 154981 . - 0 gene_id "W7K_11460"; transcript_id "KOE99004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99004"; +contig25 ena start_codon 154979 154981 . - 0 gene_id "W7K_11460"; transcript_id "KOE99004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 153710 153712 . - 0 gene_id "W7K_11460"; transcript_id "KOE99004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 155003 155233 . - . gene_id "W7K_11465"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 155003 155233 . - . gene_id "W7K_11465"; transcript_id "KOE99005"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 155003 155233 . - . gene_id "W7K_11465"; transcript_id "KOE99005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99005-1"; +contig25 ena CDS 155006 155233 . - 0 gene_id "W7K_11465"; transcript_id "KOE99005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99005"; +contig25 ena start_codon 155231 155233 . - 0 gene_id "W7K_11465"; transcript_id "KOE99005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 155003 155005 . - 0 gene_id "W7K_11465"; transcript_id "KOE99005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 155288 156289 . + . gene_id "W7K_11470"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 155288 156289 . + . gene_id "W7K_11470"; transcript_id "KOE99006"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 155288 156289 . + . gene_id "W7K_11470"; transcript_id "KOE99006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99006-1"; +contig25 ena CDS 155288 156286 . + 0 gene_id "W7K_11470"; transcript_id "KOE99006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99006"; +contig25 ena start_codon 155288 155290 . + 0 gene_id "W7K_11470"; transcript_id "KOE99006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 156287 156289 . + 0 gene_id "W7K_11470"; transcript_id "KOE99006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 156356 156904 . + . gene_id "W7K_11475"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 156356 156904 . + . gene_id "W7K_11475"; transcript_id "KOE99007"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 156356 156904 . + . gene_id "W7K_11475"; transcript_id "KOE99007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99007-1"; +contig25 ena CDS 156356 156901 . + 0 gene_id "W7K_11475"; transcript_id "KOE99007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99007"; +contig25 ena start_codon 156356 156358 . + 0 gene_id "W7K_11475"; transcript_id "KOE99007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 156902 156904 . + 0 gene_id "W7K_11475"; transcript_id "KOE99007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 156901 157476 . + . gene_id "W7K_11480"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 156901 157476 . + . gene_id "W7K_11480"; transcript_id "KOE99008"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 156901 157476 . + . gene_id "W7K_11480"; transcript_id "KOE99008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99008-1"; +contig25 ena CDS 156901 157473 . + 0 gene_id "W7K_11480"; transcript_id "KOE99008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99008"; +contig25 ena start_codon 156901 156903 . + 0 gene_id "W7K_11480"; transcript_id "KOE99008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 157474 157476 . + 0 gene_id "W7K_11480"; transcript_id "KOE99008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 157581 158132 . + . gene_id "W7K_11485"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 157581 158132 . + . gene_id "W7K_11485"; transcript_id "KOE99009"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 157581 158132 . + . gene_id "W7K_11485"; transcript_id "KOE99009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99009-1"; +contig25 ena CDS 157581 158129 . + 0 gene_id "W7K_11485"; transcript_id "KOE99009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99009"; +contig25 ena start_codon 157581 157583 . + 0 gene_id "W7K_11485"; transcript_id "KOE99009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 158130 158132 . + 0 gene_id "W7K_11485"; transcript_id "KOE99009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 158132 158851 . + . gene_id "W7K_11490"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 158132 158851 . + . gene_id "W7K_11490"; transcript_id "KOE99010"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 158132 158851 . + . gene_id "W7K_11490"; transcript_id "KOE99010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99010-1"; +contig25 ena CDS 158132 158848 . + 0 gene_id "W7K_11490"; transcript_id "KOE99010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99010"; +contig25 ena start_codon 158132 158134 . + 0 gene_id "W7K_11490"; transcript_id "KOE99010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 158849 158851 . + 0 gene_id "W7K_11490"; transcript_id "KOE99010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 158892 160316 . + . gene_id "W7K_11495"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 158892 160316 . + . gene_id "W7K_11495"; transcript_id "KOE99011"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 158892 160316 . + . gene_id "W7K_11495"; transcript_id "KOE99011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99011-1"; +contig25 ena CDS 158892 160313 . + 0 gene_id "W7K_11495"; transcript_id "KOE99011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99011"; +contig25 ena start_codon 158892 158894 . + 0 gene_id "W7K_11495"; transcript_id "KOE99011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 160314 160316 . + 0 gene_id "W7K_11495"; transcript_id "KOE99011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 160375 160692 . + . gene_id "W7K_11500"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 160375 160692 . + . gene_id "W7K_11500"; transcript_id "KOE99012"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 160375 160692 . + . gene_id "W7K_11500"; transcript_id "KOE99012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99012-1"; +contig25 ena CDS 160375 160689 . + 0 gene_id "W7K_11500"; transcript_id "KOE99012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99012"; +contig25 ena start_codon 160375 160377 . + 0 gene_id "W7K_11500"; transcript_id "KOE99012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 160690 160692 . + 0 gene_id "W7K_11500"; transcript_id "KOE99012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 160714 161166 . + . gene_id "W7K_11505"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 160714 161166 . + . gene_id "W7K_11505"; transcript_id "KOE99013"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 160714 161166 . + . gene_id "W7K_11505"; transcript_id "KOE99013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99013-1"; +contig25 ena CDS 160714 161163 . + 0 gene_id "W7K_11505"; transcript_id "KOE99013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99013"; +contig25 ena start_codon 160714 160716 . + 0 gene_id "W7K_11505"; transcript_id "KOE99013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 161164 161166 . + 0 gene_id "W7K_11505"; transcript_id "KOE99013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 161163 162113 . + . gene_id "W7K_11510"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 161163 162113 . + . gene_id "W7K_11510"; transcript_id "KOE99014"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 161163 162113 . + . gene_id "W7K_11510"; transcript_id "KOE99014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99014-1"; +contig25 ena CDS 161163 162110 . + 0 gene_id "W7K_11510"; transcript_id "KOE99014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99014"; +contig25 ena start_codon 161163 161165 . + 0 gene_id "W7K_11510"; transcript_id "KOE99014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 162111 162113 . + 0 gene_id "W7K_11510"; transcript_id "KOE99014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 162141 163025 . + . gene_id "W7K_11515"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 162141 163025 . + . gene_id "W7K_11515"; transcript_id "KOE99015"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 162141 163025 . + . gene_id "W7K_11515"; transcript_id "KOE99015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99015-1"; +contig25 ena CDS 162141 163022 . + 0 gene_id "W7K_11515"; transcript_id "KOE99015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99015"; +contig25 ena start_codon 162141 162143 . + 0 gene_id "W7K_11515"; transcript_id "KOE99015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 163023 163025 . + 0 gene_id "W7K_11515"; transcript_id "KOE99015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 163443 163835 . + . gene_id "W7K_11520"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 163443 163835 . + . gene_id "W7K_11520"; transcript_id "KOE99016"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 163443 163835 . + . gene_id "W7K_11520"; transcript_id "KOE99016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99016-1"; +contig25 ena CDS 163443 163832 . + 0 gene_id "W7K_11520"; transcript_id "KOE99016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99016"; +contig25 ena start_codon 163443 163445 . + 0 gene_id "W7K_11520"; transcript_id "KOE99016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 163833 163835 . + 0 gene_id "W7K_11520"; transcript_id "KOE99016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 163828 164097 . + . gene_id "W7K_11525"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 163828 164097 . + . gene_id "W7K_11525"; transcript_id "KOE99017"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 163828 164097 . + . gene_id "W7K_11525"; transcript_id "KOE99017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99017-1"; +contig25 ena CDS 163828 164094 . + 0 gene_id "W7K_11525"; transcript_id "KOE99017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99017"; +contig25 ena start_codon 163828 163830 . + 0 gene_id "W7K_11525"; transcript_id "KOE99017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 164095 164097 . + 0 gene_id "W7K_11525"; transcript_id "KOE99017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 164100 165869 . + . gene_id "W7K_11530"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 164100 165869 . + . gene_id "W7K_11530"; transcript_id "KOE99018"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 164100 165869 . + . gene_id "W7K_11530"; transcript_id "KOE99018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99018-1"; +contig25 ena CDS 164100 165866 . + 0 gene_id "W7K_11530"; transcript_id "KOE99018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99018"; +contig25 ena start_codon 164100 164102 . + 0 gene_id "W7K_11530"; transcript_id "KOE99018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 165867 165869 . + 0 gene_id "W7K_11530"; transcript_id "KOE99018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 166073 167434 . + . gene_id "W7K_11535"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 166073 167434 . + . gene_id "W7K_11535"; transcript_id "KOE99019"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 166073 167434 . + . gene_id "W7K_11535"; transcript_id "KOE99019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99019-1"; +contig25 ena CDS 166073 167431 . + 0 gene_id "W7K_11535"; transcript_id "KOE99019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99019"; +contig25 ena start_codon 166073 166075 . + 0 gene_id "W7K_11535"; transcript_id "KOE99019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 167432 167434 . + 0 gene_id "W7K_11535"; transcript_id "KOE99019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 167494 167760 . + . gene_id "W7K_11540"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 167494 167760 . + . gene_id "W7K_11540"; transcript_id "KOE99020"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 167494 167760 . + . gene_id "W7K_11540"; transcript_id "KOE99020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99020-1"; +contig25 ena CDS 167494 167757 . + 0 gene_id "W7K_11540"; transcript_id "KOE99020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99020"; +contig25 ena start_codon 167494 167496 . + 0 gene_id "W7K_11540"; transcript_id "KOE99020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 167758 167760 . + 0 gene_id "W7K_11540"; transcript_id "KOE99020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 167832 168629 . + . gene_id "W7K_11545"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 167832 168629 . + . gene_id "W7K_11545"; transcript_id "KOE99021"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 167832 168629 . + . gene_id "W7K_11545"; transcript_id "KOE99021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99021-1"; +contig25 ena CDS 167832 168626 . + 0 gene_id "W7K_11545"; transcript_id "KOE99021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99021"; +contig25 ena start_codon 167832 167834 . + 0 gene_id "W7K_11545"; transcript_id "KOE99021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 168627 168629 . + 0 gene_id "W7K_11545"; transcript_id "KOE99021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 168717 169088 . - . gene_id "W7K_11550"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 168717 169088 . - . gene_id "W7K_11550"; transcript_id "KOE99022"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 168717 169088 . - . gene_id "W7K_11550"; transcript_id "KOE99022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99022-1"; +contig25 ena CDS 168720 169088 . - 0 gene_id "W7K_11550"; transcript_id "KOE99022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99022"; +contig25 ena start_codon 169086 169088 . - 0 gene_id "W7K_11550"; transcript_id "KOE99022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 168717 168719 . - 0 gene_id "W7K_11550"; transcript_id "KOE99022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 169372 170322 . - . gene_id "W7K_11555"; gene_name "pyrB"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 169372 170322 . - . gene_id "W7K_11555"; transcript_id "KOE99023"; gene_name "pyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 169372 170322 . - . gene_id "W7K_11555"; transcript_id "KOE99023"; exon_number "1"; gene_name "pyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99023-1"; +contig25 ena CDS 169375 170322 . - 0 gene_id "W7K_11555"; transcript_id "KOE99023"; exon_number "1"; gene_name "pyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99023"; +contig25 ena start_codon 170320 170322 . - 0 gene_id "W7K_11555"; transcript_id "KOE99023"; exon_number "1"; gene_name "pyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 169372 169374 . - 0 gene_id "W7K_11555"; transcript_id "KOE99023"; exon_number "1"; gene_name "pyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 170338 170832 . - . gene_id "W7K_11560"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 170338 170832 . - . gene_id "W7K_11560"; transcript_id "KOE99024"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 170338 170832 . - . gene_id "W7K_11560"; transcript_id "KOE99024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99024-1"; +contig25 ena CDS 170341 170832 . - 0 gene_id "W7K_11560"; transcript_id "KOE99024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99024"; +contig25 ena start_codon 170830 170832 . - 0 gene_id "W7K_11560"; transcript_id "KOE99024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 170338 170340 . - 0 gene_id "W7K_11560"; transcript_id "KOE99024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 170825 171391 . - . gene_id "W7K_11565"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 170825 171391 . - . gene_id "W7K_11565"; transcript_id "KOE99025"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 170825 171391 . - . gene_id "W7K_11565"; transcript_id "KOE99025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99025-1"; +contig25 ena CDS 170828 171391 . - 0 gene_id "W7K_11565"; transcript_id "KOE99025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99025"; +contig25 ena start_codon 171389 171391 . - 0 gene_id "W7K_11565"; transcript_id "KOE99025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 170825 170827 . - 0 gene_id "W7K_11565"; transcript_id "KOE99025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 171483 173270 . + . gene_id "W7K_11570"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 171483 173270 . + . gene_id "W7K_11570"; transcript_id "KOE99026"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 171483 173270 . + . gene_id "W7K_11570"; transcript_id "KOE99026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99026-1"; +contig25 ena CDS 171483 173267 . + 0 gene_id "W7K_11570"; transcript_id "KOE99026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99026"; +contig25 ena start_codon 171483 171485 . + 0 gene_id "W7K_11570"; transcript_id "KOE99026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 173268 173270 . + 0 gene_id "W7K_11570"; transcript_id "KOE99026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 173267 173812 . + . gene_id "W7K_11575"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 173267 173812 . + . gene_id "W7K_11575"; transcript_id "KOE99027"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 173267 173812 . + . gene_id "W7K_11575"; transcript_id "KOE99027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99027-1"; +contig25 ena CDS 173267 173809 . + 0 gene_id "W7K_11575"; transcript_id "KOE99027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99027"; +contig25 ena start_codon 173267 173269 . + 0 gene_id "W7K_11575"; transcript_id "KOE99027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 173810 173812 . + 0 gene_id "W7K_11575"; transcript_id "KOE99027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 173898 174605 . - . gene_id "W7K_11580"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 173898 174605 . - . gene_id "W7K_11580"; transcript_id "KOE99218"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 173898 174605 . - . gene_id "W7K_11580"; transcript_id "KOE99218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99218-1"; +contig25 ena CDS 173901 174605 . - 0 gene_id "W7K_11580"; transcript_id "KOE99218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99218"; +contig25 ena start_codon 174603 174605 . - 0 gene_id "W7K_11580"; transcript_id "KOE99218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 173898 173900 . - 0 gene_id "W7K_11580"; transcript_id "KOE99218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 174716 174928 . - . gene_id "W7K_11585"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 174716 174928 . - . gene_id "W7K_11585"; transcript_id "KOE99028"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 174716 174928 . - . gene_id "W7K_11585"; transcript_id "KOE99028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99028-1"; +contig25 ena CDS 174719 174928 . - 0 gene_id "W7K_11585"; transcript_id "KOE99028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99028"; +contig25 ena start_codon 174926 174928 . - 0 gene_id "W7K_11585"; transcript_id "KOE99028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 174716 174718 . - 0 gene_id "W7K_11585"; transcript_id "KOE99028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 175022 175918 . + . gene_id "W7K_11590"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 175022 175918 . + . gene_id "W7K_11590"; transcript_id "KOE99029"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 175022 175918 . + . gene_id "W7K_11590"; transcript_id "KOE99029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99029-1"; +contig25 ena CDS 175022 175915 . + 0 gene_id "W7K_11590"; transcript_id "KOE99029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99029"; +contig25 ena start_codon 175022 175024 . + 0 gene_id "W7K_11590"; transcript_id "KOE99029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 175916 175918 . + 0 gene_id "W7K_11590"; transcript_id "KOE99029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 175981 176964 . - . gene_id "W7K_11595"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 175981 176964 . - . gene_id "W7K_11595"; transcript_id "KOE99030"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 175981 176964 . - . gene_id "W7K_11595"; transcript_id "KOE99030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99030-1"; +contig25 ena CDS 175984 176964 . - 0 gene_id "W7K_11595"; transcript_id "KOE99030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99030"; +contig25 ena start_codon 176962 176964 . - 0 gene_id "W7K_11595"; transcript_id "KOE99030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 175981 175983 . - 0 gene_id "W7K_11595"; transcript_id "KOE99030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 177114 178208 . - . gene_id "W7K_11600"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 177114 178208 . - . gene_id "W7K_11600"; transcript_id "KOE99219"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 177114 178208 . - . gene_id "W7K_11600"; transcript_id "KOE99219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99219-1"; +contig25 ena CDS 177117 178208 . - 0 gene_id "W7K_11600"; transcript_id "KOE99219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99219"; +contig25 ena start_codon 178206 178208 . - 0 gene_id "W7K_11600"; transcript_id "KOE99219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 177114 177116 . - 0 gene_id "W7K_11600"; transcript_id "KOE99219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 178356 179393 . - . gene_id "W7K_11605"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 178356 179393 . - . gene_id "W7K_11605"; transcript_id "KOE99031"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 178356 179393 . - . gene_id "W7K_11605"; transcript_id "KOE99031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99031-1"; +contig25 ena CDS 178359 179393 . - 0 gene_id "W7K_11605"; transcript_id "KOE99031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99031"; +contig25 ena start_codon 179391 179393 . - 0 gene_id "W7K_11605"; transcript_id "KOE99031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 178356 178358 . - 0 gene_id "W7K_11605"; transcript_id "KOE99031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 179481 180158 . + . gene_id "W7K_11610"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 179481 180158 . + . gene_id "W7K_11610"; transcript_id "KOE99032"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 179481 180158 . + . gene_id "W7K_11610"; transcript_id "KOE99032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99032-1"; +contig25 ena CDS 179481 180155 . + 0 gene_id "W7K_11610"; transcript_id "KOE99032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99032"; +contig25 ena start_codon 179481 179483 . + 0 gene_id "W7K_11610"; transcript_id "KOE99032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 180156 180158 . + 0 gene_id "W7K_11610"; transcript_id "KOE99032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 180177 180998 . + . gene_id "W7K_11615"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 180177 180998 . + . gene_id "W7K_11615"; transcript_id "KOE99033"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 180177 180998 . + . gene_id "W7K_11615"; transcript_id "KOE99033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99033-1"; +contig25 ena CDS 180177 180995 . + 0 gene_id "W7K_11615"; transcript_id "KOE99033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99033"; +contig25 ena start_codon 180177 180179 . + 0 gene_id "W7K_11615"; transcript_id "KOE99033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 180996 180998 . + 0 gene_id "W7K_11615"; transcript_id "KOE99033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 181058 181933 . - . gene_id "W7K_11620"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 181058 181933 . - . gene_id "W7K_11620"; transcript_id "KOE99034"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 181058 181933 . - . gene_id "W7K_11620"; transcript_id "KOE99034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99034-1"; +contig25 ena CDS 181061 181933 . - 0 gene_id "W7K_11620"; transcript_id "KOE99034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99034"; +contig25 ena start_codon 181931 181933 . - 0 gene_id "W7K_11620"; transcript_id "KOE99034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 181058 181060 . - 0 gene_id "W7K_11620"; transcript_id "KOE99034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 182032 182634 . + . gene_id "W7K_11625"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 182032 182634 . + . gene_id "W7K_11625"; transcript_id "KOE99035"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 182032 182634 . + . gene_id "W7K_11625"; transcript_id "KOE99035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99035-1"; +contig25 ena CDS 182032 182631 . + 0 gene_id "W7K_11625"; transcript_id "KOE99035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99035"; +contig25 ena start_codon 182032 182034 . + 0 gene_id "W7K_11625"; transcript_id "KOE99035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 182632 182634 . + 0 gene_id "W7K_11625"; transcript_id "KOE99035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 182708 183142 . - . gene_id "W7K_11630"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 182708 183142 . - . gene_id "W7K_11630"; transcript_id "KOE99036"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 182708 183142 . - . gene_id "W7K_11630"; transcript_id "KOE99036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99036-1"; +contig25 ena CDS 182711 183142 . - 0 gene_id "W7K_11630"; transcript_id "KOE99036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99036"; +contig25 ena start_codon 183140 183142 . - 0 gene_id "W7K_11630"; transcript_id "KOE99036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 182708 182710 . - 0 gene_id "W7K_11630"; transcript_id "KOE99036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 183172 184593 . + . gene_id "W7K_11635"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 183172 184593 . + . gene_id "W7K_11635"; transcript_id "KOE99037"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 183172 184593 . + . gene_id "W7K_11635"; transcript_id "KOE99037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99037-1"; +contig25 ena CDS 183172 184590 . + 0 gene_id "W7K_11635"; transcript_id "KOE99037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99037"; +contig25 ena start_codon 183172 183174 . + 0 gene_id "W7K_11635"; transcript_id "KOE99037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 184591 184593 . + 0 gene_id "W7K_11635"; transcript_id "KOE99037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 184640 186664 . - . gene_id "W7K_11640"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 184640 186664 . - . gene_id "W7K_11640"; transcript_id "KOE99038"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 184640 186664 . - . gene_id "W7K_11640"; transcript_id "KOE99038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99038-1"; +contig25 ena CDS 184643 186664 . - 0 gene_id "W7K_11640"; transcript_id "KOE99038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99038"; +contig25 ena start_codon 186662 186664 . - 0 gene_id "W7K_11640"; transcript_id "KOE99038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 184640 184642 . - 0 gene_id "W7K_11640"; transcript_id "KOE99038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 186664 187680 . - . gene_id "W7K_11645"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 186664 187680 . - . gene_id "W7K_11645"; transcript_id "KOE99039"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 186664 187680 . - . gene_id "W7K_11645"; transcript_id "KOE99039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99039-1"; +contig25 ena CDS 186667 187680 . - 0 gene_id "W7K_11645"; transcript_id "KOE99039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99039"; +contig25 ena start_codon 187678 187680 . - 0 gene_id "W7K_11645"; transcript_id "KOE99039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 186664 186666 . - 0 gene_id "W7K_11645"; transcript_id "KOE99039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 187810 188214 . + . gene_id "W7K_11650"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 187810 188214 . + . gene_id "W7K_11650"; transcript_id "KOE99040"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 187810 188214 . + . gene_id "W7K_11650"; transcript_id "KOE99040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99040-1"; +contig25 ena CDS 187810 188211 . + 0 gene_id "W7K_11650"; transcript_id "KOE99040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99040"; +contig25 ena start_codon 187810 187812 . + 0 gene_id "W7K_11650"; transcript_id "KOE99040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 188212 188214 . + 0 gene_id "W7K_11650"; transcript_id "KOE99040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 188485 191586 . - . gene_id "W7K_11655"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 188485 191586 . - . gene_id "W7K_11655"; transcript_id "KOE99041"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 188485 191586 . - . gene_id "W7K_11655"; transcript_id "KOE99041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99041-1"; +contig25 ena CDS 188488 191586 . - 0 gene_id "W7K_11655"; transcript_id "KOE99041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99041"; +contig25 ena start_codon 191584 191586 . - 0 gene_id "W7K_11655"; transcript_id "KOE99041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 188485 188487 . - 0 gene_id "W7K_11655"; transcript_id "KOE99041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 191591 192766 . - . gene_id "W7K_11660"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 191591 192766 . - . gene_id "W7K_11660"; transcript_id "KOE99042"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 191591 192766 . - . gene_id "W7K_11660"; transcript_id "KOE99042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99042-1"; +contig25 ena CDS 191594 192766 . - 0 gene_id "W7K_11660"; transcript_id "KOE99042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99042"; +contig25 ena start_codon 192764 192766 . - 0 gene_id "W7K_11660"; transcript_id "KOE99042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 191591 191593 . - 0 gene_id "W7K_11660"; transcript_id "KOE99042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 192923 193606 . + . gene_id "W7K_11665"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 192923 193606 . + . gene_id "W7K_11665"; transcript_id "KOE99043"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 192923 193606 . + . gene_id "W7K_11665"; transcript_id "KOE99043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99043-1"; +contig25 ena CDS 192923 193603 . + 0 gene_id "W7K_11665"; transcript_id "KOE99043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99043"; +contig25 ena start_codon 192923 192925 . + 0 gene_id "W7K_11665"; transcript_id "KOE99043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 193604 193606 . + 0 gene_id "W7K_11665"; transcript_id "KOE99043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 193584 194966 . + . gene_id "W7K_11670"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 193584 194966 . + . gene_id "W7K_11670"; transcript_id "KOE99044"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 193584 194966 . + . gene_id "W7K_11670"; transcript_id "KOE99044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99044-1"; +contig25 ena CDS 193584 194963 . + 0 gene_id "W7K_11670"; transcript_id "KOE99044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99044"; +contig25 ena start_codon 193584 193586 . + 0 gene_id "W7K_11670"; transcript_id "KOE99044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 194964 194966 . + 0 gene_id "W7K_11670"; transcript_id "KOE99044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 195065 197158 . + . gene_id "W7K_11675"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 195065 197158 . + . gene_id "W7K_11675"; transcript_id "KOE99045"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 195065 197158 . + . gene_id "W7K_11675"; transcript_id "KOE99045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99045-1"; +contig25 ena CDS 195065 197155 . + 0 gene_id "W7K_11675"; transcript_id "KOE99045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99045"; +contig25 ena start_codon 195065 195067 . + 0 gene_id "W7K_11675"; transcript_id "KOE99045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 197156 197158 . + 0 gene_id "W7K_11675"; transcript_id "KOE99045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 197142 198659 . - . gene_id "W7K_11680"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 197142 198659 . - . gene_id "W7K_11680"; transcript_id "KOE99046"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 197142 198659 . - . gene_id "W7K_11680"; transcript_id "KOE99046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99046-1"; +contig25 ena CDS 197145 198659 . - 0 gene_id "W7K_11680"; transcript_id "KOE99046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99046"; +contig25 ena start_codon 198657 198659 . - 0 gene_id "W7K_11680"; transcript_id "KOE99046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 197142 197144 . - 0 gene_id "W7K_11680"; transcript_id "KOE99046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 198766 199665 . + . gene_id "W7K_11685"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 198766 199665 . + . gene_id "W7K_11685"; transcript_id "KOE99220"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 198766 199665 . + . gene_id "W7K_11685"; transcript_id "KOE99220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99220-1"; +contig25 ena CDS 198766 199662 . + 0 gene_id "W7K_11685"; transcript_id "KOE99220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99220"; +contig25 ena start_codon 198766 198768 . + 0 gene_id "W7K_11685"; transcript_id "KOE99220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 199663 199665 . + 0 gene_id "W7K_11685"; transcript_id "KOE99220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 199679 200557 . - . gene_id "W7K_11690"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 199679 200557 . - . gene_id "W7K_11690"; transcript_id "KOE99047"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 199679 200557 . - . gene_id "W7K_11690"; transcript_id "KOE99047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99047-1"; +contig25 ena CDS 199682 200557 . - 0 gene_id "W7K_11690"; transcript_id "KOE99047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99047"; +contig25 ena start_codon 200555 200557 . - 0 gene_id "W7K_11690"; transcript_id "KOE99047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 199679 199681 . - 0 gene_id "W7K_11690"; transcript_id "KOE99047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 200596 201477 . - . gene_id "W7K_11695"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 200596 201477 . - . gene_id "W7K_11695"; transcript_id "KOE99048"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 200596 201477 . - . gene_id "W7K_11695"; transcript_id "KOE99048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99048-1"; +contig25 ena CDS 200599 201477 . - 0 gene_id "W7K_11695"; transcript_id "KOE99048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99048"; +contig25 ena start_codon 201475 201477 . - 0 gene_id "W7K_11695"; transcript_id "KOE99048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 200596 200598 . - 0 gene_id "W7K_11695"; transcript_id "KOE99048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 201636 202499 . - . gene_id "W7K_11700"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 201636 202499 . - . gene_id "W7K_11700"; transcript_id "KOE99049"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 201636 202499 . - . gene_id "W7K_11700"; transcript_id "KOE99049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99049-1"; +contig25 ena CDS 201639 202499 . - 0 gene_id "W7K_11700"; transcript_id "KOE99049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99049"; +contig25 ena start_codon 202497 202499 . - 0 gene_id "W7K_11700"; transcript_id "KOE99049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 201636 201638 . - 0 gene_id "W7K_11700"; transcript_id "KOE99049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 202632 204011 . + . gene_id "W7K_11705"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 202632 204011 . + . gene_id "W7K_11705"; transcript_id "KOE99050"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 202632 204011 . + . gene_id "W7K_11705"; transcript_id "KOE99050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99050-1"; +contig25 ena CDS 202632 204008 . + 0 gene_id "W7K_11705"; transcript_id "KOE99050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99050"; +contig25 ena start_codon 202632 202634 . + 0 gene_id "W7K_11705"; transcript_id "KOE99050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 204009 204011 . + 0 gene_id "W7K_11705"; transcript_id "KOE99050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 203950 204894 . - . gene_id "W7K_11710"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 203950 204894 . - . gene_id "W7K_11710"; transcript_id "KOE99051"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 203950 204894 . - . gene_id "W7K_11710"; transcript_id "KOE99051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99051-1"; +contig25 ena CDS 203953 204894 . - 0 gene_id "W7K_11710"; transcript_id "KOE99051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99051"; +contig25 ena start_codon 204892 204894 . - 0 gene_id "W7K_11710"; transcript_id "KOE99051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 203950 203952 . - 0 gene_id "W7K_11710"; transcript_id "KOE99051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 205010 205708 . + . gene_id "W7K_11715"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 205010 205708 . + . gene_id "W7K_11715"; transcript_id "KOE99052"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 205010 205708 . + . gene_id "W7K_11715"; transcript_id "KOE99052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99052-1"; +contig25 ena CDS 205010 205705 . + 0 gene_id "W7K_11715"; transcript_id "KOE99052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99052"; +contig25 ena start_codon 205010 205012 . + 0 gene_id "W7K_11715"; transcript_id "KOE99052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 205706 205708 . + 0 gene_id "W7K_11715"; transcript_id "KOE99052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 205795 206469 . + . gene_id "W7K_11720"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 205795 206469 . + . gene_id "W7K_11720"; transcript_id "KOE99053"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 205795 206469 . + . gene_id "W7K_11720"; transcript_id "KOE99053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99053-1"; +contig25 ena CDS 205795 206466 . + 0 gene_id "W7K_11720"; transcript_id "KOE99053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99053"; +contig25 ena start_codon 205795 205797 . + 0 gene_id "W7K_11720"; transcript_id "KOE99053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 206467 206469 . + 0 gene_id "W7K_11720"; transcript_id "KOE99053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 206473 207120 . - . gene_id "W7K_11725"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 206473 207120 . - . gene_id "W7K_11725"; transcript_id "KOE99054"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 206473 207120 . - . gene_id "W7K_11725"; transcript_id "KOE99054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99054-1"; +contig25 ena CDS 206476 207120 . - 0 gene_id "W7K_11725"; transcript_id "KOE99054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99054"; +contig25 ena start_codon 207118 207120 . - 0 gene_id "W7K_11725"; transcript_id "KOE99054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 206473 206475 . - 0 gene_id "W7K_11725"; transcript_id "KOE99054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 207281 208057 . + . gene_id "W7K_11730"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 207281 208057 . + . gene_id "W7K_11730"; transcript_id "KOE99055"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 207281 208057 . + . gene_id "W7K_11730"; transcript_id "KOE99055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99055-1"; +contig25 ena CDS 207281 208054 . + 0 gene_id "W7K_11730"; transcript_id "KOE99055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99055"; +contig25 ena start_codon 207281 207283 . + 0 gene_id "W7K_11730"; transcript_id "KOE99055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 208055 208057 . + 0 gene_id "W7K_11730"; transcript_id "KOE99055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 208069 209202 . + . gene_id "W7K_11735"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 208069 209202 . + . gene_id "W7K_11735"; transcript_id "KOE99056"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 208069 209202 . + . gene_id "W7K_11735"; transcript_id "KOE99056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99056-1"; +contig25 ena CDS 208069 209199 . + 0 gene_id "W7K_11735"; transcript_id "KOE99056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99056"; +contig25 ena start_codon 208069 208071 . + 0 gene_id "W7K_11735"; transcript_id "KOE99056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 209200 209202 . + 0 gene_id "W7K_11735"; transcript_id "KOE99056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 209212 210717 . - . gene_id "W7K_11740"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 209212 210717 . - . gene_id "W7K_11740"; transcript_id "KOE99057"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 209212 210717 . - . gene_id "W7K_11740"; transcript_id "KOE99057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99057-1"; +contig25 ena CDS 209215 210717 . - 0 gene_id "W7K_11740"; transcript_id "KOE99057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99057"; +contig25 ena start_codon 210715 210717 . - 0 gene_id "W7K_11740"; transcript_id "KOE99057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 209212 209214 . - 0 gene_id "W7K_11740"; transcript_id "KOE99057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 210729 212867 . - . gene_id "W7K_11745"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 210729 212867 . - . gene_id "W7K_11745"; transcript_id "KOE99058"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 210729 212867 . - . gene_id "W7K_11745"; transcript_id "KOE99058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99058-1"; +contig25 ena CDS 210732 212867 . - 0 gene_id "W7K_11745"; transcript_id "KOE99058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99058"; +contig25 ena start_codon 212865 212867 . - 0 gene_id "W7K_11745"; transcript_id "KOE99058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 210729 210731 . - 0 gene_id "W7K_11745"; transcript_id "KOE99058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 212997 213365 . - . gene_id "W7K_11750"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 212997 213365 . - . gene_id "W7K_11750"; transcript_id "KOE99059"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 212997 213365 . - . gene_id "W7K_11750"; transcript_id "KOE99059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99059-1"; +contig25 ena CDS 213000 213365 . - 0 gene_id "W7K_11750"; transcript_id "KOE99059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99059"; +contig25 ena start_codon 213363 213365 . - 0 gene_id "W7K_11750"; transcript_id "KOE99059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 212997 212999 . - 0 gene_id "W7K_11750"; transcript_id "KOE99059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 213577 213831 . - . gene_id "W7K_11755"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 213577 213831 . - . gene_id "W7K_11755"; transcript_id "KOE99060"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 213577 213831 . - . gene_id "W7K_11755"; transcript_id "KOE99060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99060-1"; +contig25 ena CDS 213580 213831 . - 0 gene_id "W7K_11755"; transcript_id "KOE99060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99060"; +contig25 ena start_codon 213829 213831 . - 0 gene_id "W7K_11755"; transcript_id "KOE99060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 213577 213579 . - 0 gene_id "W7K_11755"; transcript_id "KOE99060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 213843 214067 . - . gene_id "W7K_11760"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 213843 214067 . - . gene_id "W7K_11760"; transcript_id "KOE99061"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 213843 214067 . - . gene_id "W7K_11760"; transcript_id "KOE99061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99061-1"; +contig25 ena CDS 213846 214067 . - 0 gene_id "W7K_11760"; transcript_id "KOE99061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99061"; +contig25 ena start_codon 214065 214067 . - 0 gene_id "W7K_11760"; transcript_id "KOE99061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 213843 213845 . - 0 gene_id "W7K_11760"; transcript_id "KOE99061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 214556 216892 . + . gene_id "W7K_11765"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 214556 216892 . + . gene_id "W7K_11765"; transcript_id "KOE99062"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 214556 216892 . + . gene_id "W7K_11765"; transcript_id "KOE99062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99062-1"; +contig25 ena CDS 214556 216889 . + 0 gene_id "W7K_11765"; transcript_id "KOE99062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99062"; +contig25 ena start_codon 214556 214558 . + 0 gene_id "W7K_11765"; transcript_id "KOE99062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 216890 216892 . + 0 gene_id "W7K_11765"; transcript_id "KOE99062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 217243 217470 . + . gene_id "W7K_11770"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 217243 217470 . + . gene_id "W7K_11770"; transcript_id "KOE99063"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 217243 217470 . + . gene_id "W7K_11770"; transcript_id "KOE99063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99063-1"; +contig25 ena CDS 217243 217467 . + 0 gene_id "W7K_11770"; transcript_id "KOE99063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99063"; +contig25 ena start_codon 217243 217245 . + 0 gene_id "W7K_11770"; transcript_id "KOE99063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 217468 217470 . + 0 gene_id "W7K_11770"; transcript_id "KOE99063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 217512 218150 . + . gene_id "W7K_11775"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 217512 218150 . + . gene_id "W7K_11775"; transcript_id "KOE99064"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 217512 218150 . + . gene_id "W7K_11775"; transcript_id "KOE99064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99064-1"; +contig25 ena CDS 217512 218147 . + 0 gene_id "W7K_11775"; transcript_id "KOE99064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99064"; +contig25 ena start_codon 217512 217514 . + 0 gene_id "W7K_11775"; transcript_id "KOE99064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 218148 218150 . + 0 gene_id "W7K_11775"; transcript_id "KOE99064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 218303 218686 . + . gene_id "W7K_11780"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 218303 218686 . + . gene_id "W7K_11780"; transcript_id "KOE99065"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 218303 218686 . + . gene_id "W7K_11780"; transcript_id "KOE99065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99065-1"; +contig25 ena CDS 218303 218683 . + 0 gene_id "W7K_11780"; transcript_id "KOE99065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99065"; +contig25 ena start_codon 218303 218305 . + 0 gene_id "W7K_11780"; transcript_id "KOE99065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 218684 218686 . + 0 gene_id "W7K_11780"; transcript_id "KOE99065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 219026 219475 . + . gene_id "W7K_11785"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 219026 219475 . + . gene_id "W7K_11785"; transcript_id "KOE99066"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 219026 219475 . + . gene_id "W7K_11785"; transcript_id "KOE99066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99066-1"; +contig25 ena CDS 219026 219472 . + 0 gene_id "W7K_11785"; transcript_id "KOE99066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99066"; +contig25 ena start_codon 219026 219028 . + 0 gene_id "W7K_11785"; transcript_id "KOE99066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 219473 219475 . + 0 gene_id "W7K_11785"; transcript_id "KOE99066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 219472 219822 . + . gene_id "W7K_11790"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 219472 219822 . + . gene_id "W7K_11790"; transcript_id "KOE99067"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 219472 219822 . + . gene_id "W7K_11790"; transcript_id "KOE99067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99067-1"; +contig25 ena CDS 219472 219819 . + 0 gene_id "W7K_11790"; transcript_id "KOE99067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99067"; +contig25 ena start_codon 219472 219474 . + 0 gene_id "W7K_11790"; transcript_id "KOE99067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 219820 219822 . + 0 gene_id "W7K_11790"; transcript_id "KOE99067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 219819 220304 . + . gene_id "W7K_11795"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 219819 220304 . + . gene_id "W7K_11795"; transcript_id "KOE99068"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 219819 220304 . + . gene_id "W7K_11795"; transcript_id "KOE99068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99068-1"; +contig25 ena CDS 219819 220301 . + 0 gene_id "W7K_11795"; transcript_id "KOE99068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99068"; +contig25 ena start_codon 219819 219821 . + 0 gene_id "W7K_11795"; transcript_id "KOE99068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 220302 220304 . + 0 gene_id "W7K_11795"; transcript_id "KOE99068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 220301 220678 . + . gene_id "W7K_11800"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 220301 220678 . + . gene_id "W7K_11800"; transcript_id "KOE99069"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 220301 220678 . + . gene_id "W7K_11800"; transcript_id "KOE99069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99069-1"; +contig25 ena CDS 220301 220675 . + 0 gene_id "W7K_11800"; transcript_id "KOE99069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99069"; +contig25 ena start_codon 220301 220303 . + 0 gene_id "W7K_11800"; transcript_id "KOE99069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 220676 220678 . + 0 gene_id "W7K_11800"; transcript_id "KOE99069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 220755 220946 . - . gene_id "W7K_11805"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 220755 220946 . - . gene_id "W7K_11805"; transcript_id "KOE99070"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 220755 220946 . - . gene_id "W7K_11805"; transcript_id "KOE99070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99070-1"; +contig25 ena CDS 220758 220946 . - 0 gene_id "W7K_11805"; transcript_id "KOE99070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99070"; +contig25 ena start_codon 220944 220946 . - 0 gene_id "W7K_11805"; transcript_id "KOE99070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 220755 220757 . - 0 gene_id "W7K_11805"; transcript_id "KOE99070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 221036 221590 . + . gene_id "W7K_11810"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 221036 221590 . + . gene_id "W7K_11810"; transcript_id "KOE99071"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 221036 221590 . + . gene_id "W7K_11810"; transcript_id "KOE99071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99071-1"; +contig25 ena CDS 221036 221587 . + 0 gene_id "W7K_11810"; transcript_id "KOE99071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99071"; +contig25 ena start_codon 221036 221038 . + 0 gene_id "W7K_11810"; transcript_id "KOE99071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 221588 221590 . + 0 gene_id "W7K_11810"; transcript_id "KOE99071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 221587 222177 . + . gene_id "W7K_11815"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 221587 222177 . + . gene_id "W7K_11815"; transcript_id "KOE99072"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 221587 222177 . + . gene_id "W7K_11815"; transcript_id "KOE99072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99072-1"; +contig25 ena CDS 221587 222174 . + 0 gene_id "W7K_11815"; transcript_id "KOE99072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99072"; +contig25 ena start_codon 221587 221589 . + 0 gene_id "W7K_11815"; transcript_id "KOE99072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 222175 222177 . + 0 gene_id "W7K_11815"; transcript_id "KOE99072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 222230 222568 . + . gene_id "W7K_11820"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 222230 222568 . + . gene_id "W7K_11820"; transcript_id "KOE99073"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 222230 222568 . + . gene_id "W7K_11820"; transcript_id "KOE99073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99073-1"; +contig25 ena CDS 222230 222565 . + 0 gene_id "W7K_11820"; transcript_id "KOE99073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99073"; +contig25 ena start_codon 222230 222232 . + 0 gene_id "W7K_11820"; transcript_id "KOE99073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 222566 222568 . + 0 gene_id "W7K_11820"; transcript_id "KOE99073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 222571 223467 . + . gene_id "W7K_11825"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 222571 223467 . + . gene_id "W7K_11825"; transcript_id "KOE99074"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 222571 223467 . + . gene_id "W7K_11825"; transcript_id "KOE99074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99074-1"; +contig25 ena CDS 222571 223464 . + 0 gene_id "W7K_11825"; transcript_id "KOE99074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99074"; +contig25 ena start_codon 222571 222573 . + 0 gene_id "W7K_11825"; transcript_id "KOE99074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 223465 223467 . + 0 gene_id "W7K_11825"; transcript_id "KOE99074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 223460 224761 . + . gene_id "W7K_11830"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 223460 224761 . + . gene_id "W7K_11830"; transcript_id "KOE99075"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 223460 224761 . + . gene_id "W7K_11830"; transcript_id "KOE99075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99075-1"; +contig25 ena CDS 223460 224758 . + 0 gene_id "W7K_11830"; transcript_id "KOE99075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99075"; +contig25 ena start_codon 223460 223462 . + 0 gene_id "W7K_11830"; transcript_id "KOE99075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 224759 224761 . + 0 gene_id "W7K_11830"; transcript_id "KOE99075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 224769 226286 . + . gene_id "W7K_11835"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 224769 226286 . + . gene_id "W7K_11835"; transcript_id "KOE99076"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 224769 226286 . + . gene_id "W7K_11835"; transcript_id "KOE99076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99076-1"; +contig25 ena CDS 224769 226283 . + 0 gene_id "W7K_11835"; transcript_id "KOE99076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99076"; +contig25 ena start_codon 224769 224771 . + 0 gene_id "W7K_11835"; transcript_id "KOE99076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 226284 226286 . + 0 gene_id "W7K_11835"; transcript_id "KOE99076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 226291 226887 . + . gene_id "W7K_11840"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 226291 226887 . + . gene_id "W7K_11840"; transcript_id "KOE99077"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 226291 226887 . + . gene_id "W7K_11840"; transcript_id "KOE99077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99077-1"; +contig25 ena CDS 226291 226884 . + 0 gene_id "W7K_11840"; transcript_id "KOE99077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99077"; +contig25 ena start_codon 226291 226293 . + 0 gene_id "W7K_11840"; transcript_id "KOE99077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 226885 226887 . + 0 gene_id "W7K_11840"; transcript_id "KOE99077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 226995 228194 . + . gene_id "W7K_11845"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 226995 228194 . + . gene_id "W7K_11845"; transcript_id "KOE99078"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 226995 228194 . + . gene_id "W7K_11845"; transcript_id "KOE99078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99078-1"; +contig25 ena CDS 226995 228191 . + 0 gene_id "W7K_11845"; transcript_id "KOE99078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99078"; +contig25 ena start_codon 226995 226997 . + 0 gene_id "W7K_11845"; transcript_id "KOE99078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 228192 228194 . + 0 gene_id "W7K_11845"; transcript_id "KOE99078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 228197 228700 . + . gene_id "W7K_11850"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 228197 228700 . + . gene_id "W7K_11850"; transcript_id "KOE99079"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 228197 228700 . + . gene_id "W7K_11850"; transcript_id "KOE99079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99079-1"; +contig25 ena CDS 228197 228697 . + 0 gene_id "W7K_11850"; transcript_id "KOE99079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99079"; +contig25 ena start_codon 228197 228199 . + 0 gene_id "W7K_11850"; transcript_id "KOE99079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 228698 228700 . + 0 gene_id "W7K_11850"; transcript_id "KOE99079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 228781 229071 . + . gene_id "W7K_11855"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 228781 229071 . + . gene_id "W7K_11855"; transcript_id "KOE99080"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 228781 229071 . + . gene_id "W7K_11855"; transcript_id "KOE99080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99080-1"; +contig25 ena CDS 228781 229068 . + 0 gene_id "W7K_11855"; transcript_id "KOE99080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99080"; +contig25 ena start_codon 228781 228783 . + 0 gene_id "W7K_11855"; transcript_id "KOE99080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 229069 229071 . + 0 gene_id "W7K_11855"; transcript_id "KOE99080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 229192 231663 . + . gene_id "W7K_11860"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 229192 231663 . + . gene_id "W7K_11860"; transcript_id "KOE99081"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 229192 231663 . + . gene_id "W7K_11860"; transcript_id "KOE99081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99081-1"; +contig25 ena CDS 229192 231660 . + 0 gene_id "W7K_11860"; transcript_id "KOE99081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99081"; +contig25 ena start_codon 229192 229194 . + 0 gene_id "W7K_11860"; transcript_id "KOE99081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 231661 231663 . + 0 gene_id "W7K_11860"; transcript_id "KOE99081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 231666 232133 . + . gene_id "W7K_11865"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 231666 232133 . + . gene_id "W7K_11865"; transcript_id "KOE99082"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 231666 232133 . + . gene_id "W7K_11865"; transcript_id "KOE99082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99082-1"; +contig25 ena CDS 231666 232130 . + 0 gene_id "W7K_11865"; transcript_id "KOE99082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99082"; +contig25 ena start_codon 231666 231668 . + 0 gene_id "W7K_11865"; transcript_id "KOE99082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 232131 232133 . + 0 gene_id "W7K_11865"; transcript_id "KOE99082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 232117 232332 . + . gene_id "W7K_11870"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 232117 232332 . + . gene_id "W7K_11870"; transcript_id "KOE99083"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 232117 232332 . + . gene_id "W7K_11870"; transcript_id "KOE99083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99083-1"; +contig25 ena CDS 232117 232329 . + 0 gene_id "W7K_11870"; transcript_id "KOE99083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99083"; +contig25 ena start_codon 232117 232119 . + 0 gene_id "W7K_11870"; transcript_id "KOE99083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 232330 232332 . + 0 gene_id "W7K_11870"; transcript_id "KOE99083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 232329 233396 . + . gene_id "W7K_11875"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 232329 233396 . + . gene_id "W7K_11875"; transcript_id "KOE99221"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 232329 233396 . + . gene_id "W7K_11875"; transcript_id "KOE99221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99221-1"; +contig25 ena CDS 232329 233393 . + 0 gene_id "W7K_11875"; transcript_id "KOE99221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99221"; +contig25 ena start_codon 232329 232331 . + 0 gene_id "W7K_11875"; transcript_id "KOE99221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 233394 233396 . + 0 gene_id "W7K_11875"; transcript_id "KOE99221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 233477 233857 . - . gene_id "W7K_11880"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 233477 233857 . - . gene_id "W7K_11880"; transcript_id "KOE99084"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 233477 233857 . - . gene_id "W7K_11880"; transcript_id "KOE99084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99084-1"; +contig25 ena CDS 233480 233857 . - 0 gene_id "W7K_11880"; transcript_id "KOE99084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99084"; +contig25 ena start_codon 233855 233857 . - 0 gene_id "W7K_11880"; transcript_id "KOE99084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 233477 233479 . - 0 gene_id "W7K_11880"; transcript_id "KOE99084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 234422 234829 . + . gene_id "W7K_11885"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 234422 234829 . + . gene_id "W7K_11885"; transcript_id "KOE99085"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 234422 234829 . + . gene_id "W7K_11885"; transcript_id "KOE99085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99085-1"; +contig25 ena CDS 234422 234826 . + 0 gene_id "W7K_11885"; transcript_id "KOE99085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99085"; +contig25 ena start_codon 234422 234424 . + 0 gene_id "W7K_11885"; transcript_id "KOE99085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 234827 234829 . + 0 gene_id "W7K_11885"; transcript_id "KOE99085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 235530 235604 . - . gene_id "W7K_11895"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 235530 235604 . - . gene_id "W7K_11895"; transcript_id "EBT00051077623"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_11895"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 235530 235604 . - . gene_id "W7K_11895"; transcript_id "EBT00051077623"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_11895"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_11895-1"; +contig25 ena gene 235740 236093 . - . gene_id "W7K_11900"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 235740 236093 . - . gene_id "W7K_11900"; transcript_id "KOE99086"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 235740 236093 . - . gene_id "W7K_11900"; transcript_id "KOE99086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99086-1"; +contig25 ena CDS 235743 236093 . - 0 gene_id "W7K_11900"; transcript_id "KOE99086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99086"; +contig25 ena start_codon 236091 236093 . - 0 gene_id "W7K_11900"; transcript_id "KOE99086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 235740 235742 . - 0 gene_id "W7K_11900"; transcript_id "KOE99086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 236090 237046 . - . gene_id "W7K_11905"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 236090 237046 . - . gene_id "W7K_11905"; transcript_id "KOE99087"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 236090 237046 . - . gene_id "W7K_11905"; transcript_id "KOE99087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99087-1"; +contig25 ena CDS 236093 237046 . - 0 gene_id "W7K_11905"; transcript_id "KOE99087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99087"; +contig25 ena start_codon 237044 237046 . - 0 gene_id "W7K_11905"; transcript_id "KOE99087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 236090 236092 . - 0 gene_id "W7K_11905"; transcript_id "KOE99087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 237043 237708 . - . gene_id "W7K_11910"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 237043 237708 . - . gene_id "W7K_11910"; transcript_id "KOE99088"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 237043 237708 . - . gene_id "W7K_11910"; transcript_id "KOE99088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99088-1"; +contig25 ena CDS 237046 237708 . - 0 gene_id "W7K_11910"; transcript_id "KOE99088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99088"; +contig25 ena start_codon 237706 237708 . - 0 gene_id "W7K_11910"; transcript_id "KOE99088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 237043 237045 . - 0 gene_id "W7K_11910"; transcript_id "KOE99088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 237705 238766 . - . gene_id "W7K_11915"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 237705 238766 . - . gene_id "W7K_11915"; transcript_id "KOE99089"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 237705 238766 . - . gene_id "W7K_11915"; transcript_id "KOE99089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99089-1"; +contig25 ena CDS 237708 238766 . - 0 gene_id "W7K_11915"; transcript_id "KOE99089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99089"; +contig25 ena start_codon 238764 238766 . - 0 gene_id "W7K_11915"; transcript_id "KOE99089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 237705 237707 . - 0 gene_id "W7K_11915"; transcript_id "KOE99089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 238888 240252 . - . gene_id "W7K_11920"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 238888 240252 . - . gene_id "W7K_11920"; transcript_id "KOE99090"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 238888 240252 . - . gene_id "W7K_11920"; transcript_id "KOE99090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99090-1"; +contig25 ena CDS 238891 240252 . - 0 gene_id "W7K_11920"; transcript_id "KOE99090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99090"; +contig25 ena start_codon 240250 240252 . - 0 gene_id "W7K_11920"; transcript_id "KOE99090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 238888 238890 . - 0 gene_id "W7K_11920"; transcript_id "KOE99090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 240345 241607 . - . gene_id "W7K_11925"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 240345 241607 . - . gene_id "W7K_11925"; transcript_id "KOE99091"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 240345 241607 . - . gene_id "W7K_11925"; transcript_id "KOE99091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99091-1"; +contig25 ena CDS 240348 241607 . - 0 gene_id "W7K_11925"; transcript_id "KOE99091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99091"; +contig25 ena start_codon 241605 241607 . - 0 gene_id "W7K_11925"; transcript_id "KOE99091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 240345 240347 . - 0 gene_id "W7K_11925"; transcript_id "KOE99091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 241751 241990 . - . gene_id "W7K_11930"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 241751 241990 . - . gene_id "W7K_11930"; transcript_id "KOE99092"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 241751 241990 . - . gene_id "W7K_11930"; transcript_id "KOE99092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99092-1"; +contig25 ena CDS 241754 241990 . - 0 gene_id "W7K_11930"; transcript_id "KOE99092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99092"; +contig25 ena start_codon 241988 241990 . - 0 gene_id "W7K_11930"; transcript_id "KOE99092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 241751 241753 . - 0 gene_id "W7K_11930"; transcript_id "KOE99092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 242143 242886 . - . gene_id "W7K_11935"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 242143 242886 . - . gene_id "W7K_11935"; transcript_id "KOE99093"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 242143 242886 . - . gene_id "W7K_11935"; transcript_id "KOE99093"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99093-1"; +contig25 ena CDS 242146 242886 . - 0 gene_id "W7K_11935"; transcript_id "KOE99093"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99093"; +contig25 ena start_codon 242884 242886 . - 0 gene_id "W7K_11935"; transcript_id "KOE99093"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 242143 242145 . - 0 gene_id "W7K_11935"; transcript_id "KOE99093"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 242968 243912 . - . gene_id "W7K_11940"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 242968 243912 . - . gene_id "W7K_11940"; transcript_id "KOE99094"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 242968 243912 . - . gene_id "W7K_11940"; transcript_id "KOE99094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99094-1"; +contig25 ena CDS 242971 243912 . - 0 gene_id "W7K_11940"; transcript_id "KOE99094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99094"; +contig25 ena start_codon 243910 243912 . - 0 gene_id "W7K_11940"; transcript_id "KOE99094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 242968 242970 . - 0 gene_id "W7K_11940"; transcript_id "KOE99094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 244081 244863 . - . gene_id "W7K_11945"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 244081 244863 . - . gene_id "W7K_11945"; transcript_id "KOE99095"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 244081 244863 . - . gene_id "W7K_11945"; transcript_id "KOE99095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99095-1"; +contig25 ena CDS 244084 244863 . - 0 gene_id "W7K_11945"; transcript_id "KOE99095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99095"; +contig25 ena start_codon 244861 244863 . - 0 gene_id "W7K_11945"; transcript_id "KOE99095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 244081 244083 . - 0 gene_id "W7K_11945"; transcript_id "KOE99095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 244941 245918 . - . gene_id "W7K_11950"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 244941 245918 . - . gene_id "W7K_11950"; transcript_id "KOE99096"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 244941 245918 . - . gene_id "W7K_11950"; transcript_id "KOE99096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99096-1"; +contig25 ena CDS 244944 245918 . - 0 gene_id "W7K_11950"; transcript_id "KOE99096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99096"; +contig25 ena start_codon 245916 245918 . - 0 gene_id "W7K_11950"; transcript_id "KOE99096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 244941 244943 . - 0 gene_id "W7K_11950"; transcript_id "KOE99096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 246010 246204 . - . gene_id "W7K_11955"; gene_name "rpmF"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 246010 246204 . - . gene_id "W7K_11955"; transcript_id "KOE99097"; gene_name "rpmF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 246010 246204 . - . gene_id "W7K_11955"; transcript_id "KOE99097"; exon_number "1"; gene_name "rpmF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99097-1"; +contig25 ena CDS 246013 246204 . - 0 gene_id "W7K_11955"; transcript_id "KOE99097"; exon_number "1"; gene_name "rpmF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99097"; +contig25 ena start_codon 246202 246204 . - 0 gene_id "W7K_11955"; transcript_id "KOE99097"; exon_number "1"; gene_name "rpmF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 246010 246012 . - 0 gene_id "W7K_11955"; transcript_id "KOE99097"; exon_number "1"; gene_name "rpmF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 246312 246821 . - . gene_id "W7K_11960"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 246312 246821 . - . gene_id "W7K_11960"; transcript_id "KOE99098"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 246312 246821 . - . gene_id "W7K_11960"; transcript_id "KOE99098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99098-1"; +contig25 ena CDS 246315 246821 . - 0 gene_id "W7K_11960"; transcript_id "KOE99098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99098"; +contig25 ena start_codon 246819 246821 . - 0 gene_id "W7K_11960"; transcript_id "KOE99098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 246312 246314 . - 0 gene_id "W7K_11960"; transcript_id "KOE99098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 246935 247504 . + . gene_id "W7K_11965"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 246935 247504 . + . gene_id "W7K_11965"; transcript_id "KOE99099"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 246935 247504 . + . gene_id "W7K_11965"; transcript_id "KOE99099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99099-1"; +contig25 ena CDS 246935 247501 . + 0 gene_id "W7K_11965"; transcript_id "KOE99099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99099"; +contig25 ena start_codon 246935 246937 . + 0 gene_id "W7K_11965"; transcript_id "KOE99099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 247502 247504 . + 0 gene_id "W7K_11965"; transcript_id "KOE99099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 247626 249461 . - . gene_id "W7K_11970"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 247626 249461 . - . gene_id "W7K_11970"; transcript_id "KOE99100"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 247626 249461 . - . gene_id "W7K_11970"; transcript_id "KOE99100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99100-1"; +contig25 ena CDS 247629 249461 . - 0 gene_id "W7K_11970"; transcript_id "KOE99100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99100"; +contig25 ena start_codon 249459 249461 . - 0 gene_id "W7K_11970"; transcript_id "KOE99100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 247626 247628 . - 0 gene_id "W7K_11970"; transcript_id "KOE99100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 249504 250457 . + . gene_id "W7K_11975"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 249504 250457 . + . gene_id "W7K_11975"; transcript_id "KOE99101"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 249504 250457 . + . gene_id "W7K_11975"; transcript_id "KOE99101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99101-1"; +contig25 ena CDS 249504 250454 . + 0 gene_id "W7K_11975"; transcript_id "KOE99101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99101"; +contig25 ena start_codon 249504 249506 . + 0 gene_id "W7K_11975"; transcript_id "KOE99101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 250455 250457 . + 0 gene_id "W7K_11975"; transcript_id "KOE99101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 250481 251404 . + . gene_id "W7K_11980"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 250481 251404 . + . gene_id "W7K_11980"; transcript_id "KOE99102"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 250481 251404 . + . gene_id "W7K_11980"; transcript_id "KOE99102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99102-1"; +contig25 ena CDS 250481 251401 . + 0 gene_id "W7K_11980"; transcript_id "KOE99102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99102"; +contig25 ena start_codon 250481 250483 . + 0 gene_id "W7K_11980"; transcript_id "KOE99102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 251402 251404 . + 0 gene_id "W7K_11980"; transcript_id "KOE99102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 251397 253346 . + . gene_id "W7K_11985"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 251397 253346 . + . gene_id "W7K_11985"; transcript_id "KOE99103"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 251397 253346 . + . gene_id "W7K_11985"; transcript_id "KOE99103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99103-1"; +contig25 ena CDS 251397 253343 . + 0 gene_id "W7K_11985"; transcript_id "KOE99103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99103"; +contig25 ena start_codon 251397 251399 . + 0 gene_id "W7K_11985"; transcript_id "KOE99103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 253344 253346 . + 0 gene_id "W7K_11985"; transcript_id "KOE99103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 253343 253870 . + . gene_id "W7K_11990"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 253343 253870 . + . gene_id "W7K_11990"; transcript_id "KOE99104"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 253343 253870 . + . gene_id "W7K_11990"; transcript_id "KOE99104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99104-1"; +contig25 ena CDS 253343 253867 . + 0 gene_id "W7K_11990"; transcript_id "KOE99104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99104"; +contig25 ena start_codon 253343 253345 . + 0 gene_id "W7K_11990"; transcript_id "KOE99104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 253868 253870 . + 0 gene_id "W7K_11990"; transcript_id "KOE99104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 253907 254266 . - . gene_id "W7K_11995"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 253907 254266 . - . gene_id "W7K_11995"; transcript_id "KOE99105"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 253907 254266 . - . gene_id "W7K_11995"; transcript_id "KOE99105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99105-1"; +contig25 ena CDS 253910 254266 . - 0 gene_id "W7K_11995"; transcript_id "KOE99105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99105"; +contig25 ena start_codon 254264 254266 . - 0 gene_id "W7K_11995"; transcript_id "KOE99105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 253907 253909 . - 0 gene_id "W7K_11995"; transcript_id "KOE99105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 254333 254932 . - . gene_id "W7K_12000"; gene_name "recR"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 254333 254932 . - . gene_id "W7K_12000"; transcript_id "KOE99106"; gene_name "recR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "recR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 254333 254932 . - . gene_id "W7K_12000"; transcript_id "KOE99106"; exon_number "1"; gene_name "recR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "recR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99106-1"; +contig25 ena CDS 254336 254932 . - 0 gene_id "W7K_12000"; transcript_id "KOE99106"; exon_number "1"; gene_name "recR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "recR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99106"; +contig25 ena start_codon 254930 254932 . - 0 gene_id "W7K_12000"; transcript_id "KOE99106"; exon_number "1"; gene_name "recR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "recR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 254333 254335 . - 0 gene_id "W7K_12000"; transcript_id "KOE99106"; exon_number "1"; gene_name "recR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "recR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 255015 255335 . - . gene_id "W7K_12005"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 255015 255335 . - . gene_id "W7K_12005"; transcript_id "KOE99107"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 255015 255335 . - . gene_id "W7K_12005"; transcript_id "KOE99107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99107-1"; +contig25 ena CDS 255018 255335 . - 0 gene_id "W7K_12005"; transcript_id "KOE99107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99107"; +contig25 ena start_codon 255333 255335 . - 0 gene_id "W7K_12005"; transcript_id "KOE99107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 255015 255017 . - 0 gene_id "W7K_12005"; transcript_id "KOE99107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 255341 257380 . - . gene_id "W7K_12010"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 255341 257380 . - . gene_id "W7K_12010"; transcript_id "KOE99222"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 255341 257380 . - . gene_id "W7K_12010"; transcript_id "KOE99222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99222-1"; +contig25 ena CDS 255344 257380 . - 0 gene_id "W7K_12010"; transcript_id "KOE99222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99222"; +contig25 ena start_codon 257378 257380 . - 0 gene_id "W7K_12010"; transcript_id "KOE99222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 255341 255343 . - 0 gene_id "W7K_12010"; transcript_id "KOE99222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 257543 257635 . + . gene_id "W7K_12015"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 257543 257635 . + . gene_id "W7K_12015"; transcript_id "EBT00051077628"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12015"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 257543 257635 . + . gene_id "W7K_12015"; transcript_id "EBT00051077628"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12015"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12015-1"; +contig25 ena gene 259766 260098 . + . gene_id "W7K_12020"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 259766 260098 . + . gene_id "W7K_12020"; transcript_id "KOE99108"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 259766 260098 . + . gene_id "W7K_12020"; transcript_id "KOE99108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99108-1"; +contig25 ena CDS 259766 260095 . + 0 gene_id "W7K_12020"; transcript_id "KOE99108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99108"; +contig25 ena start_codon 259766 259768 . + 0 gene_id "W7K_12020"; transcript_id "KOE99108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 260096 260098 . + 0 gene_id "W7K_12020"; transcript_id "KOE99108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 261114 261548 . + . gene_id "W7K_12030"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 261114 261548 . + . gene_id "W7K_12030"; transcript_id "KOE99109"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 261114 261548 . + . gene_id "W7K_12030"; transcript_id "KOE99109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99109-1"; +contig25 ena CDS 261114 261545 . + 0 gene_id "W7K_12030"; transcript_id "KOE99109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99109"; +contig25 ena start_codon 261114 261116 . + 0 gene_id "W7K_12030"; transcript_id "KOE99109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 261546 261548 . + 0 gene_id "W7K_12030"; transcript_id "KOE99109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 261606 272519 . - . gene_id "W7K_12035"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 261606 272519 . - . gene_id "W7K_12035"; transcript_id "KOE99110"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 261606 272519 . - . gene_id "W7K_12035"; transcript_id "KOE99110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99110-1"; +contig25 ena CDS 261609 272519 . - 0 gene_id "W7K_12035"; transcript_id "KOE99110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99110"; +contig25 ena start_codon 272517 272519 . - 0 gene_id "W7K_12035"; transcript_id "KOE99110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 261606 261608 . - 0 gene_id "W7K_12035"; transcript_id "KOE99110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 272877 273194 . - . gene_id "W7K_12040"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 272877 273194 . - . gene_id "W7K_12040"; transcript_id "KOE99111"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 272877 273194 . - . gene_id "W7K_12040"; transcript_id "KOE99111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99111-1"; +contig25 ena CDS 272880 273194 . - 0 gene_id "W7K_12040"; transcript_id "KOE99111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99111"; +contig25 ena start_codon 273192 273194 . - 0 gene_id "W7K_12040"; transcript_id "KOE99111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 272877 272879 . - 0 gene_id "W7K_12040"; transcript_id "KOE99111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 273669 274013 . - . gene_id "W7K_12045"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 273669 274013 . - . gene_id "W7K_12045"; transcript_id "KOE99223"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 273669 274013 . - . gene_id "W7K_12045"; transcript_id "KOE99223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99223-1"; +contig25 ena CDS 273672 274013 . - 0 gene_id "W7K_12045"; transcript_id "KOE99223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99223"; +contig25 ena start_codon 274011 274013 . - 0 gene_id "W7K_12045"; transcript_id "KOE99223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 273669 273671 . - 0 gene_id "W7K_12045"; transcript_id "KOE99223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 274055 274822 . - . gene_id "W7K_12050"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 274055 274822 . - . gene_id "W7K_12050"; transcript_id "KOE99112"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 274055 274822 . - . gene_id "W7K_12050"; transcript_id "KOE99112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99112-1"; +contig25 ena CDS 274058 274822 . - 0 gene_id "W7K_12050"; transcript_id "KOE99112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99112"; +contig25 ena start_codon 274820 274822 . - 0 gene_id "W7K_12050"; transcript_id "KOE99112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 274055 274057 . - 0 gene_id "W7K_12050"; transcript_id "KOE99112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 274822 275571 . - . gene_id "W7K_12055"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 274822 275571 . - . gene_id "W7K_12055"; transcript_id "KOE99113"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 274822 275571 . - . gene_id "W7K_12055"; transcript_id "KOE99113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99113-1"; +contig25 ena CDS 274825 275571 . - 0 gene_id "W7K_12055"; transcript_id "KOE99113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99113"; +contig25 ena start_codon 275569 275571 . - 0 gene_id "W7K_12055"; transcript_id "KOE99113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 274822 274824 . - 0 gene_id "W7K_12055"; transcript_id "KOE99113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 275592 276638 . + . gene_id "W7K_12060"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 275592 276638 . + . gene_id "W7K_12060"; transcript_id "KOE99114"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 275592 276638 . + . gene_id "W7K_12060"; transcript_id "KOE99114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99114-1"; +contig25 ena CDS 275592 276635 . + 0 gene_id "W7K_12060"; transcript_id "KOE99114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99114"; +contig25 ena start_codon 275592 275594 . + 0 gene_id "W7K_12060"; transcript_id "KOE99114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 276636 276638 . + 0 gene_id "W7K_12060"; transcript_id "KOE99114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 276657 277061 . - . gene_id "W7K_12065"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 276657 277061 . - . gene_id "W7K_12065"; transcript_id "KOE99115"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 276657 277061 . - . gene_id "W7K_12065"; transcript_id "KOE99115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99115-1"; +contig25 ena CDS 276660 277061 . - 0 gene_id "W7K_12065"; transcript_id "KOE99115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99115"; +contig25 ena start_codon 277059 277061 . - 0 gene_id "W7K_12065"; transcript_id "KOE99115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 276657 276659 . - 0 gene_id "W7K_12065"; transcript_id "KOE99115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 277302 277392 . - . gene_id "W7K_12070"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 277302 277392 . - . gene_id "W7K_12070"; transcript_id "EBT00051077629"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12070"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 277302 277392 . - . gene_id "W7K_12070"; transcript_id "EBT00051077629"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12070"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12070-1"; +contig25 ena gene 277558 278262 . + . gene_id "W7K_12075"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 277558 278262 . + . gene_id "W7K_12075"; transcript_id "KOE99116"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 277558 278262 . + . gene_id "W7K_12075"; transcript_id "KOE99116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99116-1"; +contig25 ena CDS 277558 278259 . + 0 gene_id "W7K_12075"; transcript_id "KOE99116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99116"; +contig25 ena start_codon 277558 277560 . + 0 gene_id "W7K_12075"; transcript_id "KOE99116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 278260 278262 . + 0 gene_id "W7K_12075"; transcript_id "KOE99116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 278325 279056 . - . gene_id "W7K_12080"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 278325 279056 . - . gene_id "W7K_12080"; transcript_id "KOE99117"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 278325 279056 . - . gene_id "W7K_12080"; transcript_id "KOE99117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99117-1"; +contig25 ena CDS 278328 279056 . - 0 gene_id "W7K_12080"; transcript_id "KOE99117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99117"; +contig25 ena start_codon 279054 279056 . - 0 gene_id "W7K_12080"; transcript_id "KOE99117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 278325 278327 . - 0 gene_id "W7K_12080"; transcript_id "KOE99117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 279061 279513 . - . gene_id "W7K_12085"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 279061 279513 . - . gene_id "W7K_12085"; transcript_id "KOE99118"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 279061 279513 . - . gene_id "W7K_12085"; transcript_id "KOE99118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99118-1"; +contig25 ena CDS 279064 279513 . - 0 gene_id "W7K_12085"; transcript_id "KOE99118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99118"; +contig25 ena start_codon 279511 279513 . - 0 gene_id "W7K_12085"; transcript_id "KOE99118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 279061 279063 . - 0 gene_id "W7K_12085"; transcript_id "KOE99118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 279527 280171 . - . gene_id "W7K_12090"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 279527 280171 . - . gene_id "W7K_12090"; transcript_id "KOE99119"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 279527 280171 . - . gene_id "W7K_12090"; transcript_id "KOE99119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99119-1"; +contig25 ena CDS 279530 280171 . - 0 gene_id "W7K_12090"; transcript_id "KOE99119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99119"; +contig25 ena start_codon 280169 280171 . - 0 gene_id "W7K_12090"; transcript_id "KOE99119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 279527 279529 . - 0 gene_id "W7K_12090"; transcript_id "KOE99119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 280183 280947 . + . gene_id "W7K_12095"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 280183 280947 . + . gene_id "W7K_12095"; transcript_id "KOE99120"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 280183 280947 . + . gene_id "W7K_12095"; transcript_id "KOE99120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99120-1"; +contig25 ena CDS 280183 280944 . + 0 gene_id "W7K_12095"; transcript_id "KOE99120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99120"; +contig25 ena start_codon 280183 280185 . + 0 gene_id "W7K_12095"; transcript_id "KOE99120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 280945 280947 . + 0 gene_id "W7K_12095"; transcript_id "KOE99120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 280944 282143 . + . gene_id "W7K_12100"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 280944 282143 . + . gene_id "W7K_12100"; transcript_id "KOE99121"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 280944 282143 . + . gene_id "W7K_12100"; transcript_id "KOE99121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99121-1"; +contig25 ena CDS 280944 282140 . + 0 gene_id "W7K_12100"; transcript_id "KOE99121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99121"; +contig25 ena start_codon 280944 280946 . + 0 gene_id "W7K_12100"; transcript_id "KOE99121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 282141 282143 . + 0 gene_id "W7K_12100"; transcript_id "KOE99121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 282340 284295 . - . gene_id "W7K_12105"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 282340 284295 . - . gene_id "W7K_12105"; transcript_id "KOE99122"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 282340 284295 . - . gene_id "W7K_12105"; transcript_id "KOE99122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99122-1"; +contig25 ena CDS 282343 284295 . - 0 gene_id "W7K_12105"; transcript_id "KOE99122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99122"; +contig25 ena start_codon 284293 284295 . - 0 gene_id "W7K_12105"; transcript_id "KOE99122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 282340 282342 . - 0 gene_id "W7K_12105"; transcript_id "KOE99122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 284477 284553 . - . gene_id "W7K_12110"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 284477 284553 . - . gene_id "W7K_12110"; transcript_id "EBT00051077627"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12110"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 284477 284553 . - . gene_id "W7K_12110"; transcript_id "EBT00051077627"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12110"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12110-1"; +contig25 ena gene 284660 284736 . - . gene_id "W7K_12115"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 284660 284736 . - . gene_id "W7K_12115"; transcript_id "EBT00051077624"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12115"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 284660 284736 . - . gene_id "W7K_12115"; transcript_id "EBT00051077624"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12115"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12115-1"; +contig25 ena gene 284824 284900 . - . gene_id "W7K_12120"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 284824 284900 . - . gene_id "W7K_12120"; transcript_id "EBT00051077625"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12120"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 284824 284900 . - . gene_id "W7K_12120"; transcript_id "EBT00051077625"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12120"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12120-1"; +contig25 ena gene 284984 285060 . - . gene_id "W7K_12125"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 284984 285060 . - . gene_id "W7K_12125"; transcript_id "EBT00051077630"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12125"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 284984 285060 . - . gene_id "W7K_12125"; transcript_id "EBT00051077630"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12125"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12125-1"; +contig25 ena gene 285087 285161 . - . gene_id "W7K_12130"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 285087 285161 . - . gene_id "W7K_12130"; transcript_id "EBT00051077632"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12130"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 285087 285161 . - . gene_id "W7K_12130"; transcript_id "EBT00051077632"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12130"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12130-1"; +contig25 ena gene 285173 285445 . - . gene_id "W7K_12135"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 285173 285445 . - . gene_id "W7K_12135"; transcript_id "KOE99123"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 285173 285445 . - . gene_id "W7K_12135"; transcript_id "KOE99123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99123-1"; +contig25 ena CDS 285176 285445 . - 0 gene_id "W7K_12135"; transcript_id "KOE99123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99123"; +contig25 ena start_codon 285443 285445 . - 0 gene_id "W7K_12135"; transcript_id "KOE99123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 285173 285175 . - 0 gene_id "W7K_12135"; transcript_id "KOE99123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 285663 288116 . - . gene_id "W7K_12140"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 285663 288116 . - . gene_id "W7K_12140"; transcript_id "KOE99124"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 285663 288116 . - . gene_id "W7K_12140"; transcript_id "KOE99124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99124-1"; +contig25 ena CDS 285666 288116 . - 0 gene_id "W7K_12140"; transcript_id "KOE99124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99124"; +contig25 ena start_codon 288114 288116 . - 0 gene_id "W7K_12140"; transcript_id "KOE99124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 285663 285665 . - 0 gene_id "W7K_12140"; transcript_id "KOE99124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 288259 289548 . - . gene_id "W7K_12145"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 288259 289548 . - . gene_id "W7K_12145"; transcript_id "KOE99125"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 288259 289548 . - . gene_id "W7K_12145"; transcript_id "KOE99125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99125-1"; +contig25 ena CDS 288262 289548 . - 0 gene_id "W7K_12145"; transcript_id "KOE99125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99125"; +contig25 ena start_codon 289546 289548 . - 0 gene_id "W7K_12145"; transcript_id "KOE99125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 288259 288261 . - 0 gene_id "W7K_12145"; transcript_id "KOE99125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 289675 290301 . - . gene_id "W7K_12150"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 289675 290301 . - . gene_id "W7K_12150"; transcript_id "KOE99126"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 289675 290301 . - . gene_id "W7K_12150"; transcript_id "KOE99126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99126-1"; +contig25 ena CDS 289678 290301 . - 0 gene_id "W7K_12150"; transcript_id "KOE99126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99126"; +contig25 ena start_codon 290299 290301 . - 0 gene_id "W7K_12150"; transcript_id "KOE99126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 289675 289677 . - 0 gene_id "W7K_12150"; transcript_id "KOE99126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 290379 291674 . - . gene_id "W7K_12155"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 290379 291674 . - . gene_id "W7K_12155"; transcript_id "KOE99127"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 290379 291674 . - . gene_id "W7K_12155"; transcript_id "KOE99127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99127-1"; +contig25 ena CDS 290382 291674 . - 0 gene_id "W7K_12155"; transcript_id "KOE99127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99127"; +contig25 ena start_codon 291672 291674 . - 0 gene_id "W7K_12155"; transcript_id "KOE99127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 290379 290381 . - 0 gene_id "W7K_12155"; transcript_id "KOE99127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 291864 291948 . - . gene_id "W7K_12160"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 291864 291948 . - . gene_id "W7K_12160"; transcript_id "EBT00051077622"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12160"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 291864 291948 . - . gene_id "W7K_12160"; transcript_id "EBT00051077622"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12160"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12160-1"; +contig25 ena gene 292090 292398 . - . gene_id "W7K_12165"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 292090 292398 . - . gene_id "W7K_12165"; transcript_id "KOE99128"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 292090 292398 . - . gene_id "W7K_12165"; transcript_id "KOE99128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99128-1"; +contig25 ena CDS 292093 292398 . - 0 gene_id "W7K_12165"; transcript_id "KOE99128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99128"; +contig25 ena start_codon 292396 292398 . - 0 gene_id "W7K_12165"; transcript_id "KOE99128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 292090 292092 . - 0 gene_id "W7K_12165"; transcript_id "KOE99128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 292791 292866 . - . gene_id "W7K_12170"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 292791 292866 . - . gene_id "W7K_12170"; transcript_id "EBT00051077634"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12170"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 292791 292866 . - . gene_id "W7K_12170"; transcript_id "EBT00051077634"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12170"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12170-1"; +contig25 ena gene 293064 293139 . - . gene_id "W7K_12175"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 293064 293139 . - . gene_id "W7K_12175"; transcript_id "EBT00051077631"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12175"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 293064 293139 . - . gene_id "W7K_12175"; transcript_id "EBT00051077631"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12175"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12175-1"; +contig25 ena gene 293219 293295 . - . gene_id "W7K_12180"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 293219 293295 . - . gene_id "W7K_12180"; transcript_id "EBT00051077633"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12180"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 293219 293295 . - . gene_id "W7K_12180"; transcript_id "EBT00051077633"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12180"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12180-1"; +contig25 ena gene 294125 295045 . + . gene_id "W7K_12185"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 294125 295045 . + . gene_id "W7K_12185"; transcript_id "KOE99129"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 294125 295045 . + . gene_id "W7K_12185"; transcript_id "KOE99129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99129-1"; +contig25 ena CDS 294125 295042 . + 0 gene_id "W7K_12185"; transcript_id "KOE99129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99129"; +contig25 ena start_codon 294125 294127 . + 0 gene_id "W7K_12185"; transcript_id "KOE99129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 295043 295045 . + 0 gene_id "W7K_12185"; transcript_id "KOE99129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 295223 295543 . + . gene_id "W7K_12190"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 295223 295543 . + . gene_id "W7K_12190"; transcript_id "KOE99130"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 295223 295543 . + . gene_id "W7K_12190"; transcript_id "KOE99130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99130-1"; +contig25 ena CDS 295223 295540 . + 0 gene_id "W7K_12190"; transcript_id "KOE99130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99130"; +contig25 ena start_codon 295223 295225 . + 0 gene_id "W7K_12190"; transcript_id "KOE99130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 295541 295543 . + 0 gene_id "W7K_12190"; transcript_id "KOE99130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 295870 295946 . - . gene_id "W7K_12195"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 295870 295946 . - . gene_id "W7K_12195"; transcript_id "EBT00051077635"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12195"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 295870 295946 . - . gene_id "W7K_12195"; transcript_id "EBT00051077635"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12195"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12195-1"; +contig25 ena gene 295986 296062 . - . gene_id "W7K_12200"; gene_source "ena"; gene_biotype "tRNA"; +contig25 ena transcript 295986 296062 . - . gene_id "W7K_12200"; transcript_id "EBT00051077626"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12200"; transcript_source "ena"; transcript_biotype "tRNA"; +contig25 ena exon 295986 296062 . - . gene_id "W7K_12200"; transcript_id "EBT00051077626"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_12200"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_12200-1"; +contig25 ena gene 296243 297001 . + . gene_id "W7K_12205"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 296243 297001 . + . gene_id "W7K_12205"; transcript_id "KOE99131"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 296243 297001 . + . gene_id "W7K_12205"; transcript_id "KOE99131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99131-1"; +contig25 ena CDS 296243 296998 . + 0 gene_id "W7K_12205"; transcript_id "KOE99131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99131"; +contig25 ena start_codon 296243 296245 . + 0 gene_id "W7K_12205"; transcript_id "KOE99131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 296999 297001 . + 0 gene_id "W7K_12205"; transcript_id "KOE99131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 297062 297811 . - . gene_id "W7K_12210"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 297062 297811 . - . gene_id "W7K_12210"; transcript_id "KOE99132"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 297062 297811 . - . gene_id "W7K_12210"; transcript_id "KOE99132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99132-1"; +contig25 ena CDS 297065 297811 . - 0 gene_id "W7K_12210"; transcript_id "KOE99132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99132"; +contig25 ena start_codon 297809 297811 . - 0 gene_id "W7K_12210"; transcript_id "KOE99132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 297062 297064 . - 0 gene_id "W7K_12210"; transcript_id "KOE99132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 297837 298745 . - . gene_id "W7K_12215"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 297837 298745 . - . gene_id "W7K_12215"; transcript_id "KOE99133"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 297837 298745 . - . gene_id "W7K_12215"; transcript_id "KOE99133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99133-1"; +contig25 ena CDS 297840 298745 . - 0 gene_id "W7K_12215"; transcript_id "KOE99133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99133"; +contig25 ena start_codon 298743 298745 . - 0 gene_id "W7K_12215"; transcript_id "KOE99133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 297837 297839 . - 0 gene_id "W7K_12215"; transcript_id "KOE99133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 298799 299542 . - . gene_id "W7K_12220"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 298799 299542 . - . gene_id "W7K_12220"; transcript_id "KOE99134"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 298799 299542 . - . gene_id "W7K_12220"; transcript_id "KOE99134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99134-1"; +contig25 ena CDS 298802 299542 . - 0 gene_id "W7K_12220"; transcript_id "KOE99134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99134"; +contig25 ena start_codon 299540 299542 . - 0 gene_id "W7K_12220"; transcript_id "KOE99134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 298799 298801 . - 0 gene_id "W7K_12220"; transcript_id "KOE99134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 299743 300747 . - . gene_id "W7K_12225"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 299743 300747 . - . gene_id "W7K_12225"; transcript_id "KOE99135"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 299743 300747 . - . gene_id "W7K_12225"; transcript_id "KOE99135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99135-1"; +contig25 ena CDS 299746 300747 . - 0 gene_id "W7K_12225"; transcript_id "KOE99135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99135"; +contig25 ena start_codon 300745 300747 . - 0 gene_id "W7K_12225"; transcript_id "KOE99135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 299743 299745 . - 0 gene_id "W7K_12225"; transcript_id "KOE99135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 301066 301458 . - . gene_id "W7K_12230"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 301066 301458 . - . gene_id "W7K_12230"; transcript_id "KOE99136"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 301066 301458 . - . gene_id "W7K_12230"; transcript_id "KOE99136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99136-1"; +contig25 ena CDS 301069 301458 . - 0 gene_id "W7K_12230"; transcript_id "KOE99136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99136"; +contig25 ena start_codon 301456 301458 . - 0 gene_id "W7K_12230"; transcript_id "KOE99136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 301066 301068 . - 0 gene_id "W7K_12230"; transcript_id "KOE99136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 301455 301745 . - . gene_id "W7K_12235"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 301455 301745 . - . gene_id "W7K_12235"; transcript_id "KOE99137"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 301455 301745 . - . gene_id "W7K_12235"; transcript_id "KOE99137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99137-1"; +contig25 ena CDS 301458 301745 . - 0 gene_id "W7K_12235"; transcript_id "KOE99137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99137"; +contig25 ena start_codon 301743 301745 . - 0 gene_id "W7K_12235"; transcript_id "KOE99137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 301455 301457 . - 0 gene_id "W7K_12235"; transcript_id "KOE99137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 301888 303534 . + . gene_id "W7K_12240"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 301888 303534 . + . gene_id "W7K_12240"; transcript_id "KOE99138"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 301888 303534 . + . gene_id "W7K_12240"; transcript_id "KOE99138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99138-1"; +contig25 ena CDS 301888 303531 . + 0 gene_id "W7K_12240"; transcript_id "KOE99138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99138"; +contig25 ena start_codon 301888 301890 . + 0 gene_id "W7K_12240"; transcript_id "KOE99138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 303532 303534 . + 0 gene_id "W7K_12240"; transcript_id "KOE99138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 303651 304340 . + . gene_id "W7K_12245"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 303651 304340 . + . gene_id "W7K_12245"; transcript_id "KOE99139"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 303651 304340 . + . gene_id "W7K_12245"; transcript_id "KOE99139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99139-1"; +contig25 ena CDS 303651 304337 . + 0 gene_id "W7K_12245"; transcript_id "KOE99139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99139"; +contig25 ena start_codon 303651 303653 . + 0 gene_id "W7K_12245"; transcript_id "KOE99139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 304338 304340 . + 0 gene_id "W7K_12245"; transcript_id "KOE99139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 304447 305778 . + . gene_id "W7K_12250"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 304447 305778 . + . gene_id "W7K_12250"; transcript_id "KOE99140"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 304447 305778 . + . gene_id "W7K_12250"; transcript_id "KOE99140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99140-1"; +contig25 ena CDS 304447 305775 . + 0 gene_id "W7K_12250"; transcript_id "KOE99140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99140"; +contig25 ena start_codon 304447 304449 . + 0 gene_id "W7K_12250"; transcript_id "KOE99140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 305776 305778 . + 0 gene_id "W7K_12250"; transcript_id "KOE99140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 305783 307870 . + . gene_id "W7K_12255"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 305783 307870 . + . gene_id "W7K_12255"; transcript_id "KOE99141"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 305783 307870 . + . gene_id "W7K_12255"; transcript_id "KOE99141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99141-1"; +contig25 ena CDS 305783 307867 . + 0 gene_id "W7K_12255"; transcript_id "KOE99141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99141"; +contig25 ena start_codon 305783 305785 . + 0 gene_id "W7K_12255"; transcript_id "KOE99141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 307868 307870 . + 0 gene_id "W7K_12255"; transcript_id "KOE99141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 308249 309775 . + . gene_id "W7K_12260"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 308249 309775 . + . gene_id "W7K_12260"; transcript_id "KOE99142"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 308249 309775 . + . gene_id "W7K_12260"; transcript_id "KOE99142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99142-1"; +contig25 ena CDS 308249 309772 . + 0 gene_id "W7K_12260"; transcript_id "KOE99142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99142"; +contig25 ena start_codon 308249 308251 . + 0 gene_id "W7K_12260"; transcript_id "KOE99142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 309773 309775 . + 0 gene_id "W7K_12260"; transcript_id "KOE99142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 310081 313050 . + . gene_id "W7K_12265"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 310081 313050 . + . gene_id "W7K_12265"; transcript_id "KOE99143"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 310081 313050 . + . gene_id "W7K_12265"; transcript_id "KOE99143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99143-1"; +contig25 ena CDS 310081 313047 . + 0 gene_id "W7K_12265"; transcript_id "KOE99143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99143"; +contig25 ena start_codon 310081 310083 . + 0 gene_id "W7K_12265"; transcript_id "KOE99143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 313048 313050 . + 0 gene_id "W7K_12265"; transcript_id "KOE99143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 313387 316311 . + . gene_id "W7K_12270"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 313387 316311 . + . gene_id "W7K_12270"; transcript_id "KOE99144"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 313387 316311 . + . gene_id "W7K_12270"; transcript_id "KOE99144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99144-1"; +contig25 ena CDS 313387 316308 . + 0 gene_id "W7K_12270"; transcript_id "KOE99144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99144"; +contig25 ena start_codon 313387 313389 . + 0 gene_id "W7K_12270"; transcript_id "KOE99144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 316309 316311 . + 0 gene_id "W7K_12270"; transcript_id "KOE99144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 316455 317600 . + . gene_id "W7K_12275"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 316455 317600 . + . gene_id "W7K_12275"; transcript_id "KOE99145"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 316455 317600 . + . gene_id "W7K_12275"; transcript_id "KOE99145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99145-1"; +contig25 ena CDS 316455 317597 . + 0 gene_id "W7K_12275"; transcript_id "KOE99145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99145"; +contig25 ena start_codon 316455 316457 . + 0 gene_id "W7K_12275"; transcript_id "KOE99145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 317598 317600 . + 0 gene_id "W7K_12275"; transcript_id "KOE99145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 317581 318120 . + . gene_id "W7K_12280"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 317581 318120 . + . gene_id "W7K_12280"; transcript_id "KOE99146"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 317581 318120 . + . gene_id "W7K_12280"; transcript_id "KOE99146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99146-1"; +contig25 ena CDS 317581 318117 . + 0 gene_id "W7K_12280"; transcript_id "KOE99146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99146"; +contig25 ena start_codon 317581 317583 . + 0 gene_id "W7K_12280"; transcript_id "KOE99146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 318118 318120 . + 0 gene_id "W7K_12280"; transcript_id "KOE99146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 318186 318932 . + . gene_id "W7K_12285"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 318186 318932 . + . gene_id "W7K_12285"; transcript_id "KOE99147"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 318186 318932 . + . gene_id "W7K_12285"; transcript_id "KOE99147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99147-1"; +contig25 ena CDS 318186 318929 . + 0 gene_id "W7K_12285"; transcript_id "KOE99147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99147"; +contig25 ena start_codon 318186 318188 . + 0 gene_id "W7K_12285"; transcript_id "KOE99147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 318930 318932 . + 0 gene_id "W7K_12285"; transcript_id "KOE99147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 319020 320273 . - . gene_id "W7K_12290"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 319020 320273 . - . gene_id "W7K_12290"; transcript_id "KOE99148"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 319020 320273 . - . gene_id "W7K_12290"; transcript_id "KOE99148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99148-1"; +contig25 ena CDS 319023 320273 . - 0 gene_id "W7K_12290"; transcript_id "KOE99148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99148"; +contig25 ena start_codon 320271 320273 . - 0 gene_id "W7K_12290"; transcript_id "KOE99148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 319020 319022 . - 0 gene_id "W7K_12290"; transcript_id "KOE99148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 320499 321956 . + . gene_id "W7K_12295"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 320499 321956 . + . gene_id "W7K_12295"; transcript_id "KOE99149"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 320499 321956 . + . gene_id "W7K_12295"; transcript_id "KOE99149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99149-1"; +contig25 ena CDS 320499 321953 . + 0 gene_id "W7K_12295"; transcript_id "KOE99149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99149"; +contig25 ena start_codon 320499 320501 . + 0 gene_id "W7K_12295"; transcript_id "KOE99149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 321954 321956 . + 0 gene_id "W7K_12295"; transcript_id "KOE99149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 322026 322850 . - . gene_id "W7K_12300"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 322026 322850 . - . gene_id "W7K_12300"; transcript_id "KOE99150"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 322026 322850 . - . gene_id "W7K_12300"; transcript_id "KOE99150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99150-1"; +contig25 ena CDS 322029 322850 . - 0 gene_id "W7K_12300"; transcript_id "KOE99150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99150"; +contig25 ena start_codon 322848 322850 . - 0 gene_id "W7K_12300"; transcript_id "KOE99150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 322026 322028 . - 0 gene_id "W7K_12300"; transcript_id "KOE99150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 322860 324326 . - . gene_id "W7K_12305"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 322860 324326 . - . gene_id "W7K_12305"; transcript_id "KOE99151"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 322860 324326 . - . gene_id "W7K_12305"; transcript_id "KOE99151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99151-1"; +contig25 ena CDS 322863 324326 . - 0 gene_id "W7K_12305"; transcript_id "KOE99151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99151"; +contig25 ena start_codon 324324 324326 . - 0 gene_id "W7K_12305"; transcript_id "KOE99151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 322860 322862 . - 0 gene_id "W7K_12305"; transcript_id "KOE99151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 324357 325136 . - . gene_id "W7K_12310"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 324357 325136 . - . gene_id "W7K_12310"; transcript_id "KOE99152"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 324357 325136 . - . gene_id "W7K_12310"; transcript_id "KOE99152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99152-1"; +contig25 ena CDS 324360 325136 . - 0 gene_id "W7K_12310"; transcript_id "KOE99152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99152"; +contig25 ena start_codon 325134 325136 . - 0 gene_id "W7K_12310"; transcript_id "KOE99152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 324357 324359 . - 0 gene_id "W7K_12310"; transcript_id "KOE99152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 325183 326211 . - . gene_id "W7K_12315"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 325183 326211 . - . gene_id "W7K_12315"; transcript_id "KOE99153"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 325183 326211 . - . gene_id "W7K_12315"; transcript_id "KOE99153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99153-1"; +contig25 ena CDS 325186 326211 . - 0 gene_id "W7K_12315"; transcript_id "KOE99153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99153"; +contig25 ena start_codon 326209 326211 . - 0 gene_id "W7K_12315"; transcript_id "KOE99153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 325183 325185 . - 0 gene_id "W7K_12315"; transcript_id "KOE99153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 326293 327564 . - . gene_id "W7K_12320"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 326293 327564 . - . gene_id "W7K_12320"; transcript_id "KOE99154"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 326293 327564 . - . gene_id "W7K_12320"; transcript_id "KOE99154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99154-1"; +contig25 ena CDS 326296 327564 . - 0 gene_id "W7K_12320"; transcript_id "KOE99154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99154"; +contig25 ena start_codon 327562 327564 . - 0 gene_id "W7K_12320"; transcript_id "KOE99154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 326293 326295 . - 0 gene_id "W7K_12320"; transcript_id "KOE99154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 327606 328250 . - . gene_id "W7K_12325"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 327606 328250 . - . gene_id "W7K_12325"; transcript_id "KOE99155"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 327606 328250 . - . gene_id "W7K_12325"; transcript_id "KOE99155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99155-1"; +contig25 ena CDS 327609 328250 . - 0 gene_id "W7K_12325"; transcript_id "KOE99155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99155"; +contig25 ena start_codon 328248 328250 . - 0 gene_id "W7K_12325"; transcript_id "KOE99155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 327606 327608 . - 0 gene_id "W7K_12325"; transcript_id "KOE99155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 328450 330612 . - . gene_id "W7K_12330"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 328450 330612 . - . gene_id "W7K_12330"; transcript_id "KOE99156"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 328450 330612 . - . gene_id "W7K_12330"; transcript_id "KOE99156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99156-1"; +contig25 ena CDS 328453 330612 . - 0 gene_id "W7K_12330"; transcript_id "KOE99156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99156"; +contig25 ena start_codon 330610 330612 . - 0 gene_id "W7K_12330"; transcript_id "KOE99156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 328450 328452 . - 0 gene_id "W7K_12330"; transcript_id "KOE99156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 331091 332113 . + . gene_id "W7K_12335"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 331091 332113 . + . gene_id "W7K_12335"; transcript_id "KOE99224"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 331091 332113 . + . gene_id "W7K_12335"; transcript_id "KOE99224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99224-1"; +contig25 ena CDS 331091 332110 . + 0 gene_id "W7K_12335"; transcript_id "KOE99224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99224"; +contig25 ena start_codon 331091 331093 . + 0 gene_id "W7K_12335"; transcript_id "KOE99224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 332111 332113 . + 0 gene_id "W7K_12335"; transcript_id "KOE99224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 332299 332994 . - . gene_id "W7K_12340"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 332299 332994 . - . gene_id "W7K_12340"; transcript_id "KOE99157"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 332299 332994 . - . gene_id "W7K_12340"; transcript_id "KOE99157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99157-1"; +contig25 ena CDS 332302 332994 . - 0 gene_id "W7K_12340"; transcript_id "KOE99157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99157"; +contig25 ena start_codon 332992 332994 . - 0 gene_id "W7K_12340"; transcript_id "KOE99157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 332299 332301 . - 0 gene_id "W7K_12340"; transcript_id "KOE99157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 333201 334409 . + . gene_id "W7K_12345"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 333201 334409 . + . gene_id "W7K_12345"; transcript_id "KOE99158"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 333201 334409 . + . gene_id "W7K_12345"; transcript_id "KOE99158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99158-1"; +contig25 ena CDS 333201 334406 . + 0 gene_id "W7K_12345"; transcript_id "KOE99158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99158"; +contig25 ena start_codon 333201 333203 . + 0 gene_id "W7K_12345"; transcript_id "KOE99158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 334407 334409 . + 0 gene_id "W7K_12345"; transcript_id "KOE99158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 334528 334863 . - . gene_id "W7K_12350"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 334528 334863 . - . gene_id "W7K_12350"; transcript_id "KOE99159"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 334528 334863 . - . gene_id "W7K_12350"; transcript_id "KOE99159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99159-1"; +contig25 ena CDS 334531 334863 . - 0 gene_id "W7K_12350"; transcript_id "KOE99159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99159"; +contig25 ena start_codon 334861 334863 . - 0 gene_id "W7K_12350"; transcript_id "KOE99159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 334528 334530 . - 0 gene_id "W7K_12350"; transcript_id "KOE99159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 334949 335758 . - . gene_id "W7K_12355"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 334949 335758 . - . gene_id "W7K_12355"; transcript_id "KOE99160"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 334949 335758 . - . gene_id "W7K_12355"; transcript_id "KOE99160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99160-1"; +contig25 ena CDS 334952 335758 . - 0 gene_id "W7K_12355"; transcript_id "KOE99160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99160"; +contig25 ena start_codon 335756 335758 . - 0 gene_id "W7K_12355"; transcript_id "KOE99160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 334949 334951 . - 0 gene_id "W7K_12355"; transcript_id "KOE99160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 335779 336285 . - . gene_id "W7K_12360"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 335779 336285 . - . gene_id "W7K_12360"; transcript_id "KOE99161"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 335779 336285 . - . gene_id "W7K_12360"; transcript_id "KOE99161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99161-1"; +contig25 ena CDS 335782 336285 . - 0 gene_id "W7K_12360"; transcript_id "KOE99161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99161"; +contig25 ena start_codon 336283 336285 . - 0 gene_id "W7K_12360"; transcript_id "KOE99161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 335779 335781 . - 0 gene_id "W7K_12360"; transcript_id "KOE99161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 336506 337597 . - . gene_id "W7K_12365"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 336506 337597 . - . gene_id "W7K_12365"; transcript_id "KOE99162"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 336506 337597 . - . gene_id "W7K_12365"; transcript_id "KOE99162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99162-1"; +contig25 ena CDS 336509 337597 . - 0 gene_id "W7K_12365"; transcript_id "KOE99162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99162"; +contig25 ena start_codon 337595 337597 . - 0 gene_id "W7K_12365"; transcript_id "KOE99162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 336506 336508 . - 0 gene_id "W7K_12365"; transcript_id "KOE99162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 337955 338974 . + . gene_id "W7K_12370"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 337955 338974 . + . gene_id "W7K_12370"; transcript_id "KOE99163"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 337955 338974 . + . gene_id "W7K_12370"; transcript_id "KOE99163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99163-1"; +contig25 ena CDS 337955 338971 . + 0 gene_id "W7K_12370"; transcript_id "KOE99163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99163"; +contig25 ena start_codon 337955 337957 . + 0 gene_id "W7K_12370"; transcript_id "KOE99163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 338972 338974 . + 0 gene_id "W7K_12370"; transcript_id "KOE99163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 339148 339780 . + . gene_id "W7K_12375"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 339148 339780 . + . gene_id "W7K_12375"; transcript_id "KOE99164"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 339148 339780 . + . gene_id "W7K_12375"; transcript_id "KOE99164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99164-1"; +contig25 ena CDS 339148 339777 . + 0 gene_id "W7K_12375"; transcript_id "KOE99164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99164"; +contig25 ena start_codon 339148 339150 . + 0 gene_id "W7K_12375"; transcript_id "KOE99164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 339778 339780 . + 0 gene_id "W7K_12375"; transcript_id "KOE99164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 339882 341912 . + . gene_id "W7K_12380"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 339882 341912 . + . gene_id "W7K_12380"; transcript_id "KOE99165"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 339882 341912 . + . gene_id "W7K_12380"; transcript_id "KOE99165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99165-1"; +contig25 ena CDS 339882 341909 . + 0 gene_id "W7K_12380"; transcript_id "KOE99165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99165"; +contig25 ena start_codon 339882 339884 . + 0 gene_id "W7K_12380"; transcript_id "KOE99165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 341910 341912 . + 0 gene_id "W7K_12380"; transcript_id "KOE99165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 342211 342669 . + . gene_id "W7K_12385"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 342211 342669 . + . gene_id "W7K_12385"; transcript_id "KOE99166"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 342211 342669 . + . gene_id "W7K_12385"; transcript_id "KOE99166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99166-1"; +contig25 ena CDS 342211 342666 . + 0 gene_id "W7K_12385"; transcript_id "KOE99166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99166"; +contig25 ena start_codon 342211 342213 . + 0 gene_id "W7K_12385"; transcript_id "KOE99166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 342667 342669 . + 0 gene_id "W7K_12385"; transcript_id "KOE99166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 342754 343365 . + . gene_id "W7K_12390"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 342754 343365 . + . gene_id "W7K_12390"; transcript_id "KOE99167"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 342754 343365 . + . gene_id "W7K_12390"; transcript_id "KOE99167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99167-1"; +contig25 ena CDS 342754 343362 . + 0 gene_id "W7K_12390"; transcript_id "KOE99167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99167"; +contig25 ena start_codon 342754 342756 . + 0 gene_id "W7K_12390"; transcript_id "KOE99167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 343363 343365 . + 0 gene_id "W7K_12390"; transcript_id "KOE99167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 343433 344488 . - . gene_id "W7K_12395"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 343433 344488 . - . gene_id "W7K_12395"; transcript_id "KOE99168"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 343433 344488 . - . gene_id "W7K_12395"; transcript_id "KOE99168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99168-1"; +contig25 ena CDS 343436 344488 . - 0 gene_id "W7K_12395"; transcript_id "KOE99168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99168"; +contig25 ena start_codon 344486 344488 . - 0 gene_id "W7K_12395"; transcript_id "KOE99168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 343433 343435 . - 0 gene_id "W7K_12395"; transcript_id "KOE99168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 344536 345039 . - . gene_id "W7K_12400"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 344536 345039 . - . gene_id "W7K_12400"; transcript_id "KOE99169"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 344536 345039 . - . gene_id "W7K_12400"; transcript_id "KOE99169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99169-1"; +contig25 ena CDS 344539 345039 . - 0 gene_id "W7K_12400"; transcript_id "KOE99169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99169"; +contig25 ena start_codon 345037 345039 . - 0 gene_id "W7K_12400"; transcript_id "KOE99169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 344536 344538 . - 0 gene_id "W7K_12400"; transcript_id "KOE99169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 345233 347113 . - . gene_id "W7K_12405"; gene_name "prpE"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 345233 347113 . - . gene_id "W7K_12405"; transcript_id "KOE99170"; gene_name "prpE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 345233 347113 . - . gene_id "W7K_12405"; transcript_id "KOE99170"; exon_number "1"; gene_name "prpE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99170-1"; +contig25 ena CDS 345236 347113 . - 0 gene_id "W7K_12405"; transcript_id "KOE99170"; exon_number "1"; gene_name "prpE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99170"; +contig25 ena start_codon 347111 347113 . - 0 gene_id "W7K_12405"; transcript_id "KOE99170"; exon_number "1"; gene_name "prpE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 345233 345235 . - 0 gene_id "W7K_12405"; transcript_id "KOE99170"; exon_number "1"; gene_name "prpE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 347730 348344 . - . gene_id "W7K_12410"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 347730 348344 . - . gene_id "W7K_12410"; transcript_id "KOE99171"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 347730 348344 . - . gene_id "W7K_12410"; transcript_id "KOE99171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99171-1"; +contig25 ena CDS 347733 348344 . - 0 gene_id "W7K_12410"; transcript_id "KOE99171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99171"; +contig25 ena start_codon 348342 348344 . - 0 gene_id "W7K_12410"; transcript_id "KOE99171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 347730 347732 . - 0 gene_id "W7K_12410"; transcript_id "KOE99171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 348467 349453 . - . gene_id "W7K_12415"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 348467 349453 . - . gene_id "W7K_12415"; transcript_id "KOE99172"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 348467 349453 . - . gene_id "W7K_12415"; transcript_id "KOE99172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99172-1"; +contig25 ena CDS 348470 349453 . - 0 gene_id "W7K_12415"; transcript_id "KOE99172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99172"; +contig25 ena start_codon 349451 349453 . - 0 gene_id "W7K_12415"; transcript_id "KOE99172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 348467 348469 . - 0 gene_id "W7K_12415"; transcript_id "KOE99172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 349572 350063 . - . gene_id "W7K_12420"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 349572 350063 . - . gene_id "W7K_12420"; transcript_id "KOE99173"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 349572 350063 . - . gene_id "W7K_12420"; transcript_id "KOE99173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99173-1"; +contig25 ena CDS 349575 350063 . - 0 gene_id "W7K_12420"; transcript_id "KOE99173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99173"; +contig25 ena start_codon 350061 350063 . - 0 gene_id "W7K_12420"; transcript_id "KOE99173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 349572 349574 . - 0 gene_id "W7K_12420"; transcript_id "KOE99173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 350337 352184 . + . gene_id "W7K_12425"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 350337 352184 . + . gene_id "W7K_12425"; transcript_id "KOE99174"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 350337 352184 . + . gene_id "W7K_12425"; transcript_id "KOE99174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99174-1"; +contig25 ena CDS 350337 352181 . + 0 gene_id "W7K_12425"; transcript_id "KOE99174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99174"; +contig25 ena start_codon 350337 350339 . + 0 gene_id "W7K_12425"; transcript_id "KOE99174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 352182 352184 . + 0 gene_id "W7K_12425"; transcript_id "KOE99174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 352196 352663 . + . gene_id "W7K_12430"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 352196 352663 . + . gene_id "W7K_12430"; transcript_id "KOE99175"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 352196 352663 . + . gene_id "W7K_12430"; transcript_id "KOE99175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99175-1"; +contig25 ena CDS 352196 352660 . + 0 gene_id "W7K_12430"; transcript_id "KOE99175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99175"; +contig25 ena start_codon 352196 352198 . + 0 gene_id "W7K_12430"; transcript_id "KOE99175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 352661 352663 . + 0 gene_id "W7K_12430"; transcript_id "KOE99175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 352705 354327 . + . gene_id "W7K_12435"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 352705 354327 . + . gene_id "W7K_12435"; transcript_id "KOE99176"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 352705 354327 . + . gene_id "W7K_12435"; transcript_id "KOE99176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99176-1"; +contig25 ena CDS 352705 354324 . + 0 gene_id "W7K_12435"; transcript_id "KOE99176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99176"; +contig25 ena start_codon 352705 352707 . + 0 gene_id "W7K_12435"; transcript_id "KOE99176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 354325 354327 . + 0 gene_id "W7K_12435"; transcript_id "KOE99176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 354400 355542 . - . gene_id "W7K_12440"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 354400 355542 . - . gene_id "W7K_12440"; transcript_id "KOE99177"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 354400 355542 . - . gene_id "W7K_12440"; transcript_id "KOE99177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99177-1"; +contig25 ena CDS 354403 355542 . - 0 gene_id "W7K_12440"; transcript_id "KOE99177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99177"; +contig25 ena start_codon 355540 355542 . - 0 gene_id "W7K_12440"; transcript_id "KOE99177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 354400 354402 . - 0 gene_id "W7K_12440"; transcript_id "KOE99177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 356212 357603 . - . gene_id "W7K_12445"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 356212 357603 . - . gene_id "W7K_12445"; transcript_id "KOE99178"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 356212 357603 . - . gene_id "W7K_12445"; transcript_id "KOE99178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99178-1"; +contig25 ena CDS 356215 357603 . - 0 gene_id "W7K_12445"; transcript_id "KOE99178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99178"; +contig25 ena start_codon 357601 357603 . - 0 gene_id "W7K_12445"; transcript_id "KOE99178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 356212 356214 . - 0 gene_id "W7K_12445"; transcript_id "KOE99178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 357821 359944 . + . gene_id "W7K_12450"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 357821 359944 . + . gene_id "W7K_12450"; transcript_id "KOE99179"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 357821 359944 . + . gene_id "W7K_12450"; transcript_id "KOE99179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99179-1"; +contig25 ena CDS 357821 359941 . + 0 gene_id "W7K_12450"; transcript_id "KOE99179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99179"; +contig25 ena start_codon 357821 357823 . + 0 gene_id "W7K_12450"; transcript_id "KOE99179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 359942 359944 . + 0 gene_id "W7K_12450"; transcript_id "KOE99179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 360009 360515 . - . gene_id "W7K_12455"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 360009 360515 . - . gene_id "W7K_12455"; transcript_id "KOE99180"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 360009 360515 . - . gene_id "W7K_12455"; transcript_id "KOE99180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99180-1"; +contig25 ena CDS 360012 360515 . - 0 gene_id "W7K_12455"; transcript_id "KOE99180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99180"; +contig25 ena start_codon 360513 360515 . - 0 gene_id "W7K_12455"; transcript_id "KOE99180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 360009 360011 . - 0 gene_id "W7K_12455"; transcript_id "KOE99180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 360747 361130 . - . gene_id "W7K_12460"; gene_name "rplQ"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 360747 361130 . - . gene_id "W7K_12460"; transcript_id "KOE99181"; gene_name "rplQ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplQ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 360747 361130 . - . gene_id "W7K_12460"; transcript_id "KOE99181"; exon_number "1"; gene_name "rplQ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplQ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99181-1"; +contig25 ena CDS 360750 361130 . - 0 gene_id "W7K_12460"; transcript_id "KOE99181"; exon_number "1"; gene_name "rplQ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplQ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99181"; +contig25 ena start_codon 361128 361130 . - 0 gene_id "W7K_12460"; transcript_id "KOE99181"; exon_number "1"; gene_name "rplQ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplQ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 360747 360749 . - 0 gene_id "W7K_12460"; transcript_id "KOE99181"; exon_number "1"; gene_name "rplQ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplQ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 361322 362320 . - . gene_id "W7K_12465"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 361322 362320 . - . gene_id "W7K_12465"; transcript_id "KOE99182"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 361322 362320 . - . gene_id "W7K_12465"; transcript_id "KOE99182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99182-1"; +contig25 ena CDS 361325 362320 . - 0 gene_id "W7K_12465"; transcript_id "KOE99182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99182"; +contig25 ena start_codon 362318 362320 . - 0 gene_id "W7K_12465"; transcript_id "KOE99182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 361322 361324 . - 0 gene_id "W7K_12465"; transcript_id "KOE99182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 362376 363005 . - . gene_id "W7K_12470"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 362376 363005 . - . gene_id "W7K_12470"; transcript_id "KOE99183"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 362376 363005 . - . gene_id "W7K_12470"; transcript_id "KOE99183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99183-1"; +contig25 ena CDS 362379 363005 . - 0 gene_id "W7K_12470"; transcript_id "KOE99183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99183"; +contig25 ena start_codon 363003 363005 . - 0 gene_id "W7K_12470"; transcript_id "KOE99183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 362376 362378 . - 0 gene_id "W7K_12470"; transcript_id "KOE99183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 363021 363410 . - . gene_id "W7K_12475"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 363021 363410 . - . gene_id "W7K_12475"; transcript_id "KOE99184"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 363021 363410 . - . gene_id "W7K_12475"; transcript_id "KOE99184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99184-1"; +contig25 ena CDS 363024 363410 . - 0 gene_id "W7K_12475"; transcript_id "KOE99184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99184"; +contig25 ena start_codon 363408 363410 . - 0 gene_id "W7K_12475"; transcript_id "KOE99184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 363021 363023 . - 0 gene_id "W7K_12475"; transcript_id "KOE99184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 363422 363778 . - . gene_id "W7K_12480"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 363422 363778 . - . gene_id "W7K_12480"; transcript_id "KOE99185"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 363422 363778 . - . gene_id "W7K_12480"; transcript_id "KOE99185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99185-1"; +contig25 ena CDS 363425 363778 . - 0 gene_id "W7K_12480"; transcript_id "KOE99185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99185"; +contig25 ena start_codon 363776 363778 . - 0 gene_id "W7K_12480"; transcript_id "KOE99185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 363422 363424 . - 0 gene_id "W7K_12480"; transcript_id "KOE99185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 364126 365493 . - . gene_id "W7K_12485"; gene_name "secY"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 364126 365493 . - . gene_id "W7K_12485"; transcript_id "KOE99186"; gene_name "secY"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secY-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 364126 365493 . - . gene_id "W7K_12485"; transcript_id "KOE99186"; exon_number "1"; gene_name "secY"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secY-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99186-1"; +contig25 ena CDS 364129 365493 . - 0 gene_id "W7K_12485"; transcript_id "KOE99186"; exon_number "1"; gene_name "secY"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secY-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99186"; +contig25 ena start_codon 365491 365493 . - 0 gene_id "W7K_12485"; transcript_id "KOE99186"; exon_number "1"; gene_name "secY"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secY-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 364126 364128 . - 0 gene_id "W7K_12485"; transcript_id "KOE99186"; exon_number "1"; gene_name "secY"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secY-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 365501 365944 . - . gene_id "W7K_12490"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 365501 365944 . - . gene_id "W7K_12490"; transcript_id "KOE99187"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 365501 365944 . - . gene_id "W7K_12490"; transcript_id "KOE99187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99187-1"; +contig25 ena CDS 365504 365944 . - 0 gene_id "W7K_12490"; transcript_id "KOE99187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99187"; +contig25 ena start_codon 365942 365944 . - 0 gene_id "W7K_12490"; transcript_id "KOE99187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 365501 365503 . - 0 gene_id "W7K_12490"; transcript_id "KOE99187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 365951 366142 . - . gene_id "W7K_12495"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 365951 366142 . - . gene_id "W7K_12495"; transcript_id "KOE99188"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 365951 366142 . - . gene_id "W7K_12495"; transcript_id "KOE99188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99188-1"; +contig25 ena CDS 365954 366142 . - 0 gene_id "W7K_12495"; transcript_id "KOE99188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99188"; +contig25 ena start_codon 366140 366142 . - 0 gene_id "W7K_12495"; transcript_id "KOE99188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 365951 365953 . - 0 gene_id "W7K_12495"; transcript_id "KOE99188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 366135 366677 . - . gene_id "W7K_12500"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 366135 366677 . - . gene_id "W7K_12500"; transcript_id "KOE99189"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 366135 366677 . - . gene_id "W7K_12500"; transcript_id "KOE99189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99189-1"; +contig25 ena CDS 366138 366677 . - 0 gene_id "W7K_12500"; transcript_id "KOE99189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99189"; +contig25 ena start_codon 366675 366677 . - 0 gene_id "W7K_12500"; transcript_id "KOE99189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 366135 366137 . - 0 gene_id "W7K_12500"; transcript_id "KOE99189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 366839 367192 . - . gene_id "W7K_12505"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 366839 367192 . - . gene_id "W7K_12505"; transcript_id "KOE99190"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 366839 367192 . - . gene_id "W7K_12505"; transcript_id "KOE99190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99190-1"; +contig25 ena CDS 366842 367192 . - 0 gene_id "W7K_12505"; transcript_id "KOE99190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99190"; +contig25 ena start_codon 367190 367192 . - 0 gene_id "W7K_12505"; transcript_id "KOE99190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 366839 366841 . - 0 gene_id "W7K_12505"; transcript_id "KOE99190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 367225 367749 . - . gene_id "W7K_12510"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 367225 367749 . - . gene_id "W7K_12510"; transcript_id "KOE99191"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 367225 367749 . - . gene_id "W7K_12510"; transcript_id "KOE99191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99191-1"; +contig25 ena CDS 367228 367749 . - 0 gene_id "W7K_12510"; transcript_id "KOE99191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99191"; +contig25 ena start_codon 367747 367749 . - 0 gene_id "W7K_12510"; transcript_id "KOE99191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 367225 367227 . - 0 gene_id "W7K_12510"; transcript_id "KOE99191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 367768 368166 . - . gene_id "W7K_12515"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 367768 368166 . - . gene_id "W7K_12515"; transcript_id "KOE99192"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 367768 368166 . - . gene_id "W7K_12515"; transcript_id "KOE99192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99192-1"; +contig25 ena CDS 367771 368166 . - 0 gene_id "W7K_12515"; transcript_id "KOE99192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99192"; +contig25 ena start_codon 368164 368166 . - 0 gene_id "W7K_12515"; transcript_id "KOE99192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 367768 367770 . - 0 gene_id "W7K_12515"; transcript_id "KOE99192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 368425 368730 . - . gene_id "W7K_12520"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 368425 368730 . - . gene_id "W7K_12520"; transcript_id "KOE99193"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 368425 368730 . - . gene_id "W7K_12520"; transcript_id "KOE99193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99193-1"; +contig25 ena CDS 368428 368730 . - 0 gene_id "W7K_12520"; transcript_id "KOE99193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99193"; +contig25 ena start_codon 368728 368730 . - 0 gene_id "W7K_12520"; transcript_id "KOE99193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 368425 368427 . - 0 gene_id "W7K_12520"; transcript_id "KOE99193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 368749 369291 . - . gene_id "W7K_12525"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 368749 369291 . - . gene_id "W7K_12525"; transcript_id "KOE99194"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 368749 369291 . - . gene_id "W7K_12525"; transcript_id "KOE99194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99194-1"; +contig25 ena CDS 368752 369291 . - 0 gene_id "W7K_12525"; transcript_id "KOE99194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99194"; +contig25 ena start_codon 369289 369291 . - 0 gene_id "W7K_12525"; transcript_id "KOE99194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 368749 368751 . - 0 gene_id "W7K_12525"; transcript_id "KOE99194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 369303 369620 . - . gene_id "W7K_12530"; gene_name "rplX"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 369303 369620 . - . gene_id "W7K_12530"; transcript_id "KOE99195"; gene_name "rplX"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplX-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 369303 369620 . - . gene_id "W7K_12530"; transcript_id "KOE99195"; exon_number "1"; gene_name "rplX"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplX-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99195-1"; +contig25 ena CDS 369306 369620 . - 0 gene_id "W7K_12530"; transcript_id "KOE99195"; exon_number "1"; gene_name "rplX"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplX-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99195"; +contig25 ena start_codon 369618 369620 . - 0 gene_id "W7K_12530"; transcript_id "KOE99195"; exon_number "1"; gene_name "rplX"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplX-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 369303 369305 . - 0 gene_id "W7K_12530"; transcript_id "KOE99195"; exon_number "1"; gene_name "rplX"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplX-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 369637 370005 . - . gene_id "W7K_12535"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 369637 370005 . - . gene_id "W7K_12535"; transcript_id "KOE99196"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 369637 370005 . - . gene_id "W7K_12535"; transcript_id "KOE99196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99196-1"; +contig25 ena CDS 369640 370005 . - 0 gene_id "W7K_12535"; transcript_id "KOE99196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99196"; +contig25 ena start_codon 370003 370005 . - 0 gene_id "W7K_12535"; transcript_id "KOE99196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 369637 369639 . - 0 gene_id "W7K_12535"; transcript_id "KOE99196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 370018 370287 . - . gene_id "W7K_12540"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 370018 370287 . - . gene_id "W7K_12540"; transcript_id "KOE99197"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 370018 370287 . - . gene_id "W7K_12540"; transcript_id "KOE99197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99197-1"; +contig25 ena CDS 370021 370287 . - 0 gene_id "W7K_12540"; transcript_id "KOE99197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99197"; +contig25 ena start_codon 370285 370287 . - 0 gene_id "W7K_12540"; transcript_id "KOE99197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 370018 370020 . - 0 gene_id "W7K_12540"; transcript_id "KOE99197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 370299 370484 . - . gene_id "W7K_12545"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 370299 370484 . - . gene_id "W7K_12545"; transcript_id "KOE99198"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 370299 370484 . - . gene_id "W7K_12545"; transcript_id "KOE99198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99198-1"; +contig25 ena CDS 370302 370484 . - 0 gene_id "W7K_12545"; transcript_id "KOE99198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99198"; +contig25 ena start_codon 370482 370484 . - 0 gene_id "W7K_12545"; transcript_id "KOE99198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 370299 370301 . - 0 gene_id "W7K_12545"; transcript_id "KOE99198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 370484 370897 . - . gene_id "W7K_12550"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 370484 370897 . - . gene_id "W7K_12550"; transcript_id "KOE99199"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 370484 370897 . - . gene_id "W7K_12550"; transcript_id "KOE99199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99199-1"; +contig25 ena CDS 370487 370897 . - 0 gene_id "W7K_12550"; transcript_id "KOE99199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99199"; +contig25 ena start_codon 370895 370897 . - 0 gene_id "W7K_12550"; transcript_id "KOE99199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 370484 370486 . - 0 gene_id "W7K_12550"; transcript_id "KOE99199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 370903 371637 . - . gene_id "W7K_12555"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 370903 371637 . - . gene_id "W7K_12555"; transcript_id "KOE99200"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 370903 371637 . - . gene_id "W7K_12555"; transcript_id "KOE99200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99200-1"; +contig25 ena CDS 370906 371637 . - 0 gene_id "W7K_12555"; transcript_id "KOE99200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99200"; +contig25 ena start_codon 371635 371637 . - 0 gene_id "W7K_12555"; transcript_id "KOE99200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 370903 370905 . - 0 gene_id "W7K_12555"; transcript_id "KOE99200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 371656 371997 . - . gene_id "W7K_12560"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 371656 371997 . - . gene_id "W7K_12560"; transcript_id "KOE99201"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 371656 371997 . - . gene_id "W7K_12560"; transcript_id "KOE99201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99201-1"; +contig25 ena CDS 371659 371997 . - 0 gene_id "W7K_12560"; transcript_id "KOE99201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99201"; +contig25 ena start_codon 371995 371997 . - 0 gene_id "W7K_12560"; transcript_id "KOE99201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 371656 371658 . - 0 gene_id "W7K_12560"; transcript_id "KOE99201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 372004 372273 . - . gene_id "W7K_12565"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 372004 372273 . - . gene_id "W7K_12565"; transcript_id "KOE99202"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 372004 372273 . - . gene_id "W7K_12565"; transcript_id "KOE99202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99202-1"; +contig25 ena CDS 372007 372273 . - 0 gene_id "W7K_12565"; transcript_id "KOE99202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99202"; +contig25 ena start_codon 372271 372273 . - 0 gene_id "W7K_12565"; transcript_id "KOE99202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 372004 372006 . - 0 gene_id "W7K_12565"; transcript_id "KOE99202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 372280 373107 . - . gene_id "W7K_12570"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 372280 373107 . - . gene_id "W7K_12570"; transcript_id "KOE99203"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 372280 373107 . - . gene_id "W7K_12570"; transcript_id "KOE99203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99203-1"; +contig25 ena CDS 372283 373107 . - 0 gene_id "W7K_12570"; transcript_id "KOE99203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99203"; +contig25 ena start_codon 373105 373107 . - 0 gene_id "W7K_12570"; transcript_id "KOE99203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 372280 372282 . - 0 gene_id "W7K_12570"; transcript_id "KOE99203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 373118 373417 . - . gene_id "W7K_12575"; gene_name "rplW"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 373118 373417 . - . gene_id "W7K_12575"; transcript_id "KOE99204"; gene_name "rplW"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplW-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 373118 373417 . - . gene_id "W7K_12575"; transcript_id "KOE99204"; exon_number "1"; gene_name "rplW"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplW-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99204-1"; +contig25 ena CDS 373121 373417 . - 0 gene_id "W7K_12575"; transcript_id "KOE99204"; exon_number "1"; gene_name "rplW"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplW-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99204"; +contig25 ena start_codon 373415 373417 . - 0 gene_id "W7K_12575"; transcript_id "KOE99204"; exon_number "1"; gene_name "rplW"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplW-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 373118 373120 . - 0 gene_id "W7K_12575"; transcript_id "KOE99204"; exon_number "1"; gene_name "rplW"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplW-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 373414 374019 . - . gene_id "W7K_12580"; gene_name "rplD"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 373414 374019 . - . gene_id "W7K_12580"; transcript_id "KOE99205"; gene_name "rplD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 373414 374019 . - . gene_id "W7K_12580"; transcript_id "KOE99205"; exon_number "1"; gene_name "rplD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99205-1"; +contig25 ena CDS 373417 374019 . - 0 gene_id "W7K_12580"; transcript_id "KOE99205"; exon_number "1"; gene_name "rplD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99205"; +contig25 ena start_codon 374017 374019 . - 0 gene_id "W7K_12580"; transcript_id "KOE99205"; exon_number "1"; gene_name "rplD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 373414 373416 . - 0 gene_id "W7K_12580"; transcript_id "KOE99205"; exon_number "1"; gene_name "rplD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 374032 374682 . - . gene_id "W7K_12585"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 374032 374682 . - . gene_id "W7K_12585"; transcript_id "KOE99206"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 374032 374682 . - . gene_id "W7K_12585"; transcript_id "KOE99206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99206-1"; +contig25 ena CDS 374035 374682 . - 0 gene_id "W7K_12585"; transcript_id "KOE99206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99206"; +contig25 ena start_codon 374680 374682 . - 0 gene_id "W7K_12585"; transcript_id "KOE99206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 374032 374034 . - 0 gene_id "W7K_12585"; transcript_id "KOE99206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena gene 374694 375005 . - . gene_id "W7K_12590"; gene_name "rpsJ"; gene_source "ena"; gene_biotype "protein_coding"; +contig25 ena transcript 374694 375005 . - . gene_id "W7K_12590"; transcript_id "KOE99207"; gene_name "rpsJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena exon 374694 375005 . - . gene_id "W7K_12590"; transcript_id "KOE99207"; exon_number "1"; gene_name "rpsJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99207-1"; +contig25 ena CDS 374697 375005 . - 0 gene_id "W7K_12590"; transcript_id "KOE99207"; exon_number "1"; gene_name "rpsJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99207"; +contig25 ena start_codon 375003 375005 . - 0 gene_id "W7K_12590"; transcript_id "KOE99207"; exon_number "1"; gene_name "rpsJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig25 ena stop_codon 374694 374696 . - 0 gene_id "W7K_12590"; transcript_id "KOE99207"; exon_number "1"; gene_name "rpsJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 46 121 . - . gene_id "W7K_05880"; gene_source "ena"; gene_biotype "tRNA"; +contig34 ena transcript 46 121 . - . gene_id "W7K_05880"; transcript_id "EBT00051077645"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05880"; transcript_source "ena"; transcript_biotype "tRNA"; +contig34 ena exon 46 121 . - . gene_id "W7K_05880"; transcript_id "EBT00051077645"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05880"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_05880-1"; +contig34 ena gene 169 244 . - . gene_id "W7K_05885"; gene_source "ena"; gene_biotype "tRNA"; +contig34 ena transcript 169 244 . - . gene_id "W7K_05885"; transcript_id "EBT00051077646"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05885"; transcript_source "ena"; transcript_biotype "tRNA"; +contig34 ena exon 169 244 . - . gene_id "W7K_05885"; transcript_id "EBT00051077646"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05885"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_05885-1"; +contig34 ena gene 429 504 . - . gene_id "W7K_05890"; gene_source "ena"; gene_biotype "tRNA"; +contig34 ena transcript 429 504 . - . gene_id "W7K_05890"; transcript_id "EBT00051077643"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05890"; transcript_source "ena"; transcript_biotype "tRNA"; +contig34 ena exon 429 504 . - . gene_id "W7K_05890"; transcript_id "EBT00051077643"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05890"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_05890-1"; +contig34 ena gene 559 634 . - . gene_id "W7K_05895"; gene_source "ena"; gene_biotype "tRNA"; +contig34 ena transcript 559 634 . - . gene_id "W7K_05895"; transcript_id "EBT00051077644"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05895"; transcript_source "ena"; transcript_biotype "tRNA"; +contig34 ena exon 559 634 . - . gene_id "W7K_05895"; transcript_id "EBT00051077644"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_05895"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_05895-1"; +contig34 ena gene 724 1137 . - . gene_id "W7K_05900"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 724 1137 . - . gene_id "W7K_05900"; transcript_id "KOE99872"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 724 1137 . - . gene_id "W7K_05900"; transcript_id "KOE99872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99872-1"; +contig34 ena CDS 727 1137 . - 0 gene_id "W7K_05900"; transcript_id "KOE99872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99872"; +contig34 ena start_codon 1135 1137 . - 0 gene_id "W7K_05900"; transcript_id "KOE99872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 724 726 . - 0 gene_id "W7K_05900"; transcript_id "KOE99872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 1324 2391 . + . gene_id "W7K_05905"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 1324 2391 . + . gene_id "W7K_05905"; transcript_id "KOE99873"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 1324 2391 . + . gene_id "W7K_05905"; transcript_id "KOE99873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99873-1"; +contig34 ena CDS 1324 2388 . + 0 gene_id "W7K_05905"; transcript_id "KOE99873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99873"; +contig34 ena start_codon 1324 1326 . + 0 gene_id "W7K_05905"; transcript_id "KOE99873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 2389 2391 . + 0 gene_id "W7K_05905"; transcript_id "KOE99873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 2472 3275 . + . gene_id "W7K_05910"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 2472 3275 . + . gene_id "W7K_05910"; transcript_id "KOE99874"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 2472 3275 . + . gene_id "W7K_05910"; transcript_id "KOE99874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99874-1"; +contig34 ena CDS 2472 3272 . + 0 gene_id "W7K_05910"; transcript_id "KOE99874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99874"; +contig34 ena start_codon 2472 2474 . + 0 gene_id "W7K_05910"; transcript_id "KOE99874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 3273 3275 . + 0 gene_id "W7K_05910"; transcript_id "KOE99874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 3306 4148 . + . gene_id "W7K_05915"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 3306 4148 . + . gene_id "W7K_05915"; transcript_id "KOE99875"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 3306 4148 . + . gene_id "W7K_05915"; transcript_id "KOE99875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99875-1"; +contig34 ena CDS 3306 4145 . + 0 gene_id "W7K_05915"; transcript_id "KOE99875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99875"; +contig34 ena start_codon 3306 3308 . + 0 gene_id "W7K_05915"; transcript_id "KOE99875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 4146 4148 . + 0 gene_id "W7K_05915"; transcript_id "KOE99875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 4663 6096 . + . gene_id "W7K_05920"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 4663 6096 . + . gene_id "W7K_05920"; transcript_id "KOE99876"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 4663 6096 . + . gene_id "W7K_05920"; transcript_id "KOE99876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99876-1"; +contig34 ena CDS 4663 6093 . + 0 gene_id "W7K_05920"; transcript_id "KOE99876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99876"; +contig34 ena start_codon 4663 4665 . + 0 gene_id "W7K_05920"; transcript_id "KOE99876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 6094 6096 . + 0 gene_id "W7K_05920"; transcript_id "KOE99876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 6173 7525 . + . gene_id "W7K_05925"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 6173 7525 . + . gene_id "W7K_05925"; transcript_id "KOE99877"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 6173 7525 . + . gene_id "W7K_05925"; transcript_id "KOE99877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99877-1"; +contig34 ena CDS 6173 7522 . + 0 gene_id "W7K_05925"; transcript_id "KOE99877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99877"; +contig34 ena start_codon 6173 6175 . + 0 gene_id "W7K_05925"; transcript_id "KOE99877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 7523 7525 . + 0 gene_id "W7K_05925"; transcript_id "KOE99877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 7546 9834 . + . gene_id "W7K_05930"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 7546 9834 . + . gene_id "W7K_05930"; transcript_id "KOE99878"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 7546 9834 . + . gene_id "W7K_05930"; transcript_id "KOE99878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99878-1"; +contig34 ena CDS 7546 9831 . + 0 gene_id "W7K_05930"; transcript_id "KOE99878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99878"; +contig34 ena start_codon 7546 7548 . + 0 gene_id "W7K_05930"; transcript_id "KOE99878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 9832 9834 . + 0 gene_id "W7K_05930"; transcript_id "KOE99878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 9863 10765 . + . gene_id "W7K_05935"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 9863 10765 . + . gene_id "W7K_05935"; transcript_id "KOE99879"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 9863 10765 . + . gene_id "W7K_05935"; transcript_id "KOE99879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99879-1"; +contig34 ena CDS 9863 10762 . + 0 gene_id "W7K_05935"; transcript_id "KOE99879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99879"; +contig34 ena start_codon 9863 9865 . + 0 gene_id "W7K_05935"; transcript_id "KOE99879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 10763 10765 . + 0 gene_id "W7K_05935"; transcript_id "KOE99879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 10950 11384 . + . gene_id "W7K_05940"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 10950 11384 . + . gene_id "W7K_05940"; transcript_id "KOE99880"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 10950 11384 . + . gene_id "W7K_05940"; transcript_id "KOE99880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99880-1"; +contig34 ena CDS 10950 11381 . + 0 gene_id "W7K_05940"; transcript_id "KOE99880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99880"; +contig34 ena start_codon 10950 10952 . + 0 gene_id "W7K_05940"; transcript_id "KOE99880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 11382 11384 . + 0 gene_id "W7K_05940"; transcript_id "KOE99880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 11381 12094 . - . gene_id "W7K_05945"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 11381 12094 . - . gene_id "W7K_05945"; transcript_id "KOE99881"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 11381 12094 . - . gene_id "W7K_05945"; transcript_id "KOE99881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99881-1"; +contig34 ena CDS 11384 12094 . - 0 gene_id "W7K_05945"; transcript_id "KOE99881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99881"; +contig34 ena start_codon 12092 12094 . - 0 gene_id "W7K_05945"; transcript_id "KOE99881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 11381 11383 . - 0 gene_id "W7K_05945"; transcript_id "KOE99881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 12087 12887 . - . gene_id "W7K_05950"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 12087 12887 . - . gene_id "W7K_05950"; transcript_id "KOE99882"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 12087 12887 . - . gene_id "W7K_05950"; transcript_id "KOE99882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99882-1"; +contig34 ena CDS 12090 12887 . - 0 gene_id "W7K_05950"; transcript_id "KOE99882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99882"; +contig34 ena start_codon 12885 12887 . - 0 gene_id "W7K_05950"; transcript_id "KOE99882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 12087 12089 . - 0 gene_id "W7K_05950"; transcript_id "KOE99882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 12874 15345 . - . gene_id "W7K_05955"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 12874 15345 . - . gene_id "W7K_05955"; transcript_id "KOE99883"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 12874 15345 . - . gene_id "W7K_05955"; transcript_id "KOE99883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99883-1"; +contig34 ena CDS 12877 15345 . - 0 gene_id "W7K_05955"; transcript_id "KOE99883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99883"; +contig34 ena start_codon 15343 15345 . - 0 gene_id "W7K_05955"; transcript_id "KOE99883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 12874 12876 . - 0 gene_id "W7K_05955"; transcript_id "KOE99883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 15410 16336 . - . gene_id "W7K_05960"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 15410 16336 . - . gene_id "W7K_05960"; transcript_id "KOE99884"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 15410 16336 . - . gene_id "W7K_05960"; transcript_id "KOE99884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99884-1"; +contig34 ena CDS 15413 16336 . - 0 gene_id "W7K_05960"; transcript_id "KOE99884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99884"; +contig34 ena start_codon 16334 16336 . - 0 gene_id "W7K_05960"; transcript_id "KOE99884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 15410 15412 . - 0 gene_id "W7K_05960"; transcript_id "KOE99884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 16333 16842 . - . gene_id "W7K_05965"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 16333 16842 . - . gene_id "W7K_05965"; transcript_id "KOE99885"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 16333 16842 . - . gene_id "W7K_05965"; transcript_id "KOE99885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99885-1"; +contig34 ena CDS 16336 16842 . - 0 gene_id "W7K_05965"; transcript_id "KOE99885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99885"; +contig34 ena start_codon 16840 16842 . - 0 gene_id "W7K_05965"; transcript_id "KOE99885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 16333 16335 . - 0 gene_id "W7K_05965"; transcript_id "KOE99885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 16967 17473 . - . gene_id "W7K_05970"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 16967 17473 . - . gene_id "W7K_05970"; transcript_id "KOE99886"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 16967 17473 . - . gene_id "W7K_05970"; transcript_id "KOE99886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99886-1"; +contig34 ena CDS 16970 17473 . - 0 gene_id "W7K_05970"; transcript_id "KOE99886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99886"; +contig34 ena start_codon 17471 17473 . - 0 gene_id "W7K_05970"; transcript_id "KOE99886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 16967 16969 . - 0 gene_id "W7K_05970"; transcript_id "KOE99886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 17582 17806 . - . gene_id "W7K_05975"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 17582 17806 . - . gene_id "W7K_05975"; transcript_id "KOE99887"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 17582 17806 . - . gene_id "W7K_05975"; transcript_id "KOE99887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99887-1"; +contig34 ena CDS 17585 17806 . - 0 gene_id "W7K_05975"; transcript_id "KOE99887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99887"; +contig34 ena start_codon 17804 17806 . - 0 gene_id "W7K_05975"; transcript_id "KOE99887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 17582 17584 . - 0 gene_id "W7K_05975"; transcript_id "KOE99887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 17803 18504 . - . gene_id "W7K_05980"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 17803 18504 . - . gene_id "W7K_05980"; transcript_id "KOE99888"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 17803 18504 . - . gene_id "W7K_05980"; transcript_id "KOE99888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99888-1"; +contig34 ena CDS 17806 18504 . - 0 gene_id "W7K_05980"; transcript_id "KOE99888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99888"; +contig34 ena start_codon 18502 18504 . - 0 gene_id "W7K_05980"; transcript_id "KOE99888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 17803 17805 . - 0 gene_id "W7K_05980"; transcript_id "KOE99888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 18501 19274 . - . gene_id "W7K_05985"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 18501 19274 . - . gene_id "W7K_05985"; transcript_id "KOE99889"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 18501 19274 . - . gene_id "W7K_05985"; transcript_id "KOE99889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99889-1"; +contig34 ena CDS 18504 19274 . - 0 gene_id "W7K_05985"; transcript_id "KOE99889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99889"; +contig34 ena start_codon 19272 19274 . - 0 gene_id "W7K_05985"; transcript_id "KOE99889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 18501 18503 . - 0 gene_id "W7K_05985"; transcript_id "KOE99889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 19351 20637 . + . gene_id "W7K_05990"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 19351 20637 . + . gene_id "W7K_05990"; transcript_id "KOE99890"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 19351 20637 . + . gene_id "W7K_05990"; transcript_id "KOE99890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99890-1"; +contig34 ena CDS 19351 20634 . + 0 gene_id "W7K_05990"; transcript_id "KOE99890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99890"; +contig34 ena start_codon 19351 19353 . + 0 gene_id "W7K_05990"; transcript_id "KOE99890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 20635 20637 . + 0 gene_id "W7K_05990"; transcript_id "KOE99890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 20740 21246 . - . gene_id "W7K_05995"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 20740 21246 . - . gene_id "W7K_05995"; transcript_id "KOE99891"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 20740 21246 . - . gene_id "W7K_05995"; transcript_id "KOE99891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99891-1"; +contig34 ena CDS 20743 21246 . - 0 gene_id "W7K_05995"; transcript_id "KOE99891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99891"; +contig34 ena start_codon 21244 21246 . - 0 gene_id "W7K_05995"; transcript_id "KOE99891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 20740 20742 . - 0 gene_id "W7K_05995"; transcript_id "KOE99891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 21328 24438 . - . gene_id "W7K_06000"; gene_name "dnaE2"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 21328 24438 . - . gene_id "W7K_06000"; transcript_id "KOE99892"; gene_name "dnaE2"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaE2-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 21328 24438 . - . gene_id "W7K_06000"; transcript_id "KOE99892"; exon_number "1"; gene_name "dnaE2"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaE2-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99892-1"; +contig34 ena CDS 21331 24438 . - 0 gene_id "W7K_06000"; transcript_id "KOE99892"; exon_number "1"; gene_name "dnaE2"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaE2-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99892"; +contig34 ena start_codon 24436 24438 . - 0 gene_id "W7K_06000"; transcript_id "KOE99892"; exon_number "1"; gene_name "dnaE2"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaE2-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 21328 21330 . - 0 gene_id "W7K_06000"; transcript_id "KOE99892"; exon_number "1"; gene_name "dnaE2"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaE2-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 24445 25854 . - . gene_id "W7K_06005"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 24445 25854 . - . gene_id "W7K_06005"; transcript_id "KOE99893"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 24445 25854 . - . gene_id "W7K_06005"; transcript_id "KOE99893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99893-1"; +contig34 ena CDS 24448 25854 . - 0 gene_id "W7K_06005"; transcript_id "KOE99893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99893"; +contig34 ena start_codon 25852 25854 . - 0 gene_id "W7K_06005"; transcript_id "KOE99893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 24445 24447 . - 0 gene_id "W7K_06005"; transcript_id "KOE99893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 25864 26478 . - . gene_id "W7K_06010"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 25864 26478 . - . gene_id "W7K_06010"; transcript_id "KOE99894"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 25864 26478 . - . gene_id "W7K_06010"; transcript_id "KOE99894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99894-1"; +contig34 ena CDS 25867 26478 . - 0 gene_id "W7K_06010"; transcript_id "KOE99894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99894"; +contig34 ena start_codon 26476 26478 . - 0 gene_id "W7K_06010"; transcript_id "KOE99894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 25864 25866 . - 0 gene_id "W7K_06010"; transcript_id "KOE99894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 26737 27744 . - . gene_id "W7K_06015"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 26737 27744 . - . gene_id "W7K_06015"; transcript_id "KOE99895"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 26737 27744 . - . gene_id "W7K_06015"; transcript_id "KOE99895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99895-1"; +contig34 ena CDS 26740 27744 . - 0 gene_id "W7K_06015"; transcript_id "KOE99895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99895"; +contig34 ena start_codon 27742 27744 . - 0 gene_id "W7K_06015"; transcript_id "KOE99895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 26737 26739 . - 0 gene_id "W7K_06015"; transcript_id "KOE99895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 27780 28430 . - . gene_id "W7K_06020"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 27780 28430 . - . gene_id "W7K_06020"; transcript_id "KOE99896"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 27780 28430 . - . gene_id "W7K_06020"; transcript_id "KOE99896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99896-1"; +contig34 ena CDS 27783 28430 . - 0 gene_id "W7K_06020"; transcript_id "KOE99896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99896"; +contig34 ena start_codon 28428 28430 . - 0 gene_id "W7K_06020"; transcript_id "KOE99896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 27780 27782 . - 0 gene_id "W7K_06020"; transcript_id "KOE99896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 28523 29428 . - . gene_id "W7K_06025"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 28523 29428 . - . gene_id "W7K_06025"; transcript_id "KOE99897"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 28523 29428 . - . gene_id "W7K_06025"; transcript_id "KOE99897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99897-1"; +contig34 ena CDS 28526 29428 . - 0 gene_id "W7K_06025"; transcript_id "KOE99897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99897"; +contig34 ena start_codon 29426 29428 . - 0 gene_id "W7K_06025"; transcript_id "KOE99897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 28523 28525 . - 0 gene_id "W7K_06025"; transcript_id "KOE99897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 29577 30467 . + . gene_id "W7K_06030"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 29577 30467 . + . gene_id "W7K_06030"; transcript_id "KOE99898"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 29577 30467 . + . gene_id "W7K_06030"; transcript_id "KOE99898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99898-1"; +contig34 ena CDS 29577 30464 . + 0 gene_id "W7K_06030"; transcript_id "KOE99898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99898"; +contig34 ena start_codon 29577 29579 . + 0 gene_id "W7K_06030"; transcript_id "KOE99898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 30465 30467 . + 0 gene_id "W7K_06030"; transcript_id "KOE99898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 30477 31181 . - . gene_id "W7K_06035"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 30477 31181 . - . gene_id "W7K_06035"; transcript_id "KOE99899"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 30477 31181 . - . gene_id "W7K_06035"; transcript_id "KOE99899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99899-1"; +contig34 ena CDS 30480 31181 . - 0 gene_id "W7K_06035"; transcript_id "KOE99899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99899"; +contig34 ena start_codon 31179 31181 . - 0 gene_id "W7K_06035"; transcript_id "KOE99899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 30477 30479 . - 0 gene_id "W7K_06035"; transcript_id "KOE99899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 31469 31903 . - . gene_id "W7K_06040"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 31469 31903 . - . gene_id "W7K_06040"; transcript_id "KOE99900"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 31469 31903 . - . gene_id "W7K_06040"; transcript_id "KOE99900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99900-1"; +contig34 ena CDS 31472 31903 . - 0 gene_id "W7K_06040"; transcript_id "KOE99900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99900"; +contig34 ena start_codon 31901 31903 . - 0 gene_id "W7K_06040"; transcript_id "KOE99900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 31469 31471 . - 0 gene_id "W7K_06040"; transcript_id "KOE99900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 32857 35037 . + . gene_id "W7K_06045"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 32857 35037 . + . gene_id "W7K_06045"; transcript_id "KOF00171"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 32857 35037 . + . gene_id "W7K_06045"; transcript_id "KOF00171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00171-1"; +contig34 ena CDS 32857 35034 . + 0 gene_id "W7K_06045"; transcript_id "KOF00171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00171"; +contig34 ena start_codon 32857 32859 . + 0 gene_id "W7K_06045"; transcript_id "KOF00171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 35035 35037 . + 0 gene_id "W7K_06045"; transcript_id "KOF00171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 35217 36122 . - . gene_id "W7K_06050"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 35217 36122 . - . gene_id "W7K_06050"; transcript_id "KOE99901"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 35217 36122 . - . gene_id "W7K_06050"; transcript_id "KOE99901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99901-1"; +contig34 ena CDS 35220 36122 . - 0 gene_id "W7K_06050"; transcript_id "KOE99901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99901"; +contig34 ena start_codon 36120 36122 . - 0 gene_id "W7K_06050"; transcript_id "KOE99901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 35217 35219 . - 0 gene_id "W7K_06050"; transcript_id "KOE99901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 36228 37589 . + . gene_id "W7K_06055"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 36228 37589 . + . gene_id "W7K_06055"; transcript_id "KOE99902"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 36228 37589 . + . gene_id "W7K_06055"; transcript_id "KOE99902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99902-1"; +contig34 ena CDS 36228 37586 . + 0 gene_id "W7K_06055"; transcript_id "KOE99902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99902"; +contig34 ena start_codon 36228 36230 . + 0 gene_id "W7K_06055"; transcript_id "KOE99902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 37587 37589 . + 0 gene_id "W7K_06055"; transcript_id "KOE99902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 37586 37972 . + . gene_id "W7K_06060"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 37586 37972 . + . gene_id "W7K_06060"; transcript_id "KOE99903"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 37586 37972 . + . gene_id "W7K_06060"; transcript_id "KOE99903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99903-1"; +contig34 ena CDS 37586 37969 . + 0 gene_id "W7K_06060"; transcript_id "KOE99903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99903"; +contig34 ena start_codon 37586 37588 . + 0 gene_id "W7K_06060"; transcript_id "KOE99903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 37970 37972 . + 0 gene_id "W7K_06060"; transcript_id "KOE99903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 38195 40105 . + . gene_id "W7K_06065"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 38195 40105 . + . gene_id "W7K_06065"; transcript_id "KOE99904"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 38195 40105 . + . gene_id "W7K_06065"; transcript_id "KOE99904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99904-1"; +contig34 ena CDS 38195 40102 . + 0 gene_id "W7K_06065"; transcript_id "KOE99904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99904"; +contig34 ena start_codon 38195 38197 . + 0 gene_id "W7K_06065"; transcript_id "KOE99904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 40103 40105 . + 0 gene_id "W7K_06065"; transcript_id "KOE99904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 40316 41269 . - . gene_id "W7K_06070"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 40316 41269 . - . gene_id "W7K_06070"; transcript_id "KOE99905"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 40316 41269 . - . gene_id "W7K_06070"; transcript_id "KOE99905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99905-1"; +contig34 ena CDS 40319 41269 . - 0 gene_id "W7K_06070"; transcript_id "KOE99905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99905"; +contig34 ena start_codon 41267 41269 . - 0 gene_id "W7K_06070"; transcript_id "KOE99905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 40316 40318 . - 0 gene_id "W7K_06070"; transcript_id "KOE99905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 41716 42474 . + . gene_id "W7K_06075"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 41716 42474 . + . gene_id "W7K_06075"; transcript_id "KOE99906"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 41716 42474 . + . gene_id "W7K_06075"; transcript_id "KOE99906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99906-1"; +contig34 ena CDS 41716 42471 . + 0 gene_id "W7K_06075"; transcript_id "KOE99906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99906"; +contig34 ena start_codon 41716 41718 . + 0 gene_id "W7K_06075"; transcript_id "KOE99906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 42472 42474 . + 0 gene_id "W7K_06075"; transcript_id "KOE99906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 42605 43057 . + . gene_id "W7K_06080"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 42605 43057 . + . gene_id "W7K_06080"; transcript_id "KOE99907"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 42605 43057 . + . gene_id "W7K_06080"; transcript_id "KOE99907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99907-1"; +contig34 ena CDS 42605 43054 . + 0 gene_id "W7K_06080"; transcript_id "KOE99907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99907"; +contig34 ena start_codon 42605 42607 . + 0 gene_id "W7K_06080"; transcript_id "KOE99907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 43055 43057 . + 0 gene_id "W7K_06080"; transcript_id "KOE99907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 43282 44940 . + . gene_id "W7K_06085"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 43282 44940 . + . gene_id "W7K_06085"; transcript_id "KOE99908"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 43282 44940 . + . gene_id "W7K_06085"; transcript_id "KOE99908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99908-1"; +contig34 ena CDS 43282 44937 . + 0 gene_id "W7K_06085"; transcript_id "KOE99908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99908"; +contig34 ena start_codon 43282 43284 . + 0 gene_id "W7K_06085"; transcript_id "KOE99908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 44938 44940 . + 0 gene_id "W7K_06085"; transcript_id "KOE99908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 44994 45758 . + . gene_id "W7K_06090"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 44994 45758 . + . gene_id "W7K_06090"; transcript_id "KOF00172"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 44994 45758 . + . gene_id "W7K_06090"; transcript_id "KOF00172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00172-1"; +contig34 ena CDS 44994 45755 . + 0 gene_id "W7K_06090"; transcript_id "KOF00172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00172"; +contig34 ena start_codon 44994 44996 . + 0 gene_id "W7K_06090"; transcript_id "KOF00172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 45756 45758 . + 0 gene_id "W7K_06090"; transcript_id "KOF00172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 45763 46902 . + . gene_id "W7K_06095"; gene_name "lldD"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 45763 46902 . + . gene_id "W7K_06095"; transcript_id "KOE99909"; gene_name "lldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "lldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 45763 46902 . + . gene_id "W7K_06095"; transcript_id "KOE99909"; exon_number "1"; gene_name "lldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "lldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99909-1"; +contig34 ena CDS 45763 46899 . + 0 gene_id "W7K_06095"; transcript_id "KOE99909"; exon_number "1"; gene_name "lldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "lldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99909"; +contig34 ena start_codon 45763 45765 . + 0 gene_id "W7K_06095"; transcript_id "KOE99909"; exon_number "1"; gene_name "lldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "lldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 46900 46902 . + 0 gene_id "W7K_06095"; transcript_id "KOE99909"; exon_number "1"; gene_name "lldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "lldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 46899 48599 . + . gene_id "W7K_06100"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 46899 48599 . + . gene_id "W7K_06100"; transcript_id "KOE99910"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 46899 48599 . + . gene_id "W7K_06100"; transcript_id "KOE99910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99910-1"; +contig34 ena CDS 46899 48596 . + 0 gene_id "W7K_06100"; transcript_id "KOE99910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99910"; +contig34 ena start_codon 46899 46901 . + 0 gene_id "W7K_06100"; transcript_id "KOE99910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 48597 48599 . + 0 gene_id "W7K_06100"; transcript_id "KOE99910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 48711 49595 . + . gene_id "W7K_06105"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 48711 49595 . + . gene_id "W7K_06105"; transcript_id "KOE99911"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 48711 49595 . + . gene_id "W7K_06105"; transcript_id "KOE99911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99911-1"; +contig34 ena CDS 48711 49592 . + 0 gene_id "W7K_06105"; transcript_id "KOE99911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99911"; +contig34 ena start_codon 48711 48713 . + 0 gene_id "W7K_06105"; transcript_id "KOE99911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 49593 49595 . + 0 gene_id "W7K_06105"; transcript_id "KOE99911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 49692 49988 . - . gene_id "W7K_06110"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 49692 49988 . - . gene_id "W7K_06110"; transcript_id "KOE99912"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 49692 49988 . - . gene_id "W7K_06110"; transcript_id "KOE99912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99912-1"; +contig34 ena CDS 49695 49988 . - 0 gene_id "W7K_06110"; transcript_id "KOE99912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99912"; +contig34 ena start_codon 49986 49988 . - 0 gene_id "W7K_06110"; transcript_id "KOE99912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 49692 49694 . - 0 gene_id "W7K_06110"; transcript_id "KOE99912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 50160 50816 . + . gene_id "W7K_06115"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 50160 50816 . + . gene_id "W7K_06115"; transcript_id "KOE99913"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 50160 50816 . + . gene_id "W7K_06115"; transcript_id "KOE99913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99913-1"; +contig34 ena CDS 50160 50813 . + 0 gene_id "W7K_06115"; transcript_id "KOE99913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99913"; +contig34 ena start_codon 50160 50162 . + 0 gene_id "W7K_06115"; transcript_id "KOE99913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 50814 50816 . + 0 gene_id "W7K_06115"; transcript_id "KOE99913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 50885 51661 . + . gene_id "W7K_06120"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 50885 51661 . + . gene_id "W7K_06120"; transcript_id "KOE99914"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 50885 51661 . + . gene_id "W7K_06120"; transcript_id "KOE99914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99914-1"; +contig34 ena CDS 50885 51658 . + 0 gene_id "W7K_06120"; transcript_id "KOE99914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99914"; +contig34 ena start_codon 50885 50887 . + 0 gene_id "W7K_06120"; transcript_id "KOE99914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 51659 51661 . + 0 gene_id "W7K_06120"; transcript_id "KOE99914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 51658 52257 . - . gene_id "W7K_06125"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 51658 52257 . - . gene_id "W7K_06125"; transcript_id "KOE99915"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 51658 52257 . - . gene_id "W7K_06125"; transcript_id "KOE99915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99915-1"; +contig34 ena CDS 51661 52257 . - 0 gene_id "W7K_06125"; transcript_id "KOE99915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99915"; +contig34 ena start_codon 52255 52257 . - 0 gene_id "W7K_06125"; transcript_id "KOE99915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 51658 51660 . - 0 gene_id "W7K_06125"; transcript_id "KOE99915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 52476 55202 . + . gene_id "W7K_06130"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 52476 55202 . + . gene_id "W7K_06130"; transcript_id "KOE99916"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 52476 55202 . + . gene_id "W7K_06130"; transcript_id "KOE99916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99916-1"; +contig34 ena CDS 52476 55199 . + 0 gene_id "W7K_06130"; transcript_id "KOE99916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99916"; +contig34 ena start_codon 52476 52478 . + 0 gene_id "W7K_06130"; transcript_id "KOE99916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 55200 55202 . + 0 gene_id "W7K_06130"; transcript_id "KOE99916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 55313 55939 . + . gene_id "W7K_06135"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 55313 55939 . + . gene_id "W7K_06135"; transcript_id "KOE99917"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 55313 55939 . + . gene_id "W7K_06135"; transcript_id "KOE99917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99917-1"; +contig34 ena CDS 55313 55936 . + 0 gene_id "W7K_06135"; transcript_id "KOE99917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99917"; +contig34 ena start_codon 55313 55315 . + 0 gene_id "W7K_06135"; transcript_id "KOE99917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 55937 55939 . + 0 gene_id "W7K_06135"; transcript_id "KOE99917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 55947 56588 . - . gene_id "W7K_06140"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 55947 56588 . - . gene_id "W7K_06140"; transcript_id "KOE99918"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 55947 56588 . - . gene_id "W7K_06140"; transcript_id "KOE99918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99918-1"; +contig34 ena CDS 55950 56588 . - 0 gene_id "W7K_06140"; transcript_id "KOE99918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99918"; +contig34 ena start_codon 56586 56588 . - 0 gene_id "W7K_06140"; transcript_id "KOE99918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 55947 55949 . - 0 gene_id "W7K_06140"; transcript_id "KOE99918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 56772 57932 . + . gene_id "W7K_06145"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 56772 57932 . + . gene_id "W7K_06145"; transcript_id "KOE99919"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 56772 57932 . + . gene_id "W7K_06145"; transcript_id "KOE99919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99919-1"; +contig34 ena CDS 56772 57929 . + 0 gene_id "W7K_06145"; transcript_id "KOE99919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99919"; +contig34 ena start_codon 56772 56774 . + 0 gene_id "W7K_06145"; transcript_id "KOE99919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 57930 57932 . + 0 gene_id "W7K_06145"; transcript_id "KOE99919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 57982 58419 . - . gene_id "W7K_06150"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 57982 58419 . - . gene_id "W7K_06150"; transcript_id "KOE99920"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 57982 58419 . - . gene_id "W7K_06150"; transcript_id "KOE99920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99920-1"; +contig34 ena CDS 57985 58419 . - 0 gene_id "W7K_06150"; transcript_id "KOE99920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99920"; +contig34 ena start_codon 58417 58419 . - 0 gene_id "W7K_06150"; transcript_id "KOE99920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 57982 57984 . - 0 gene_id "W7K_06150"; transcript_id "KOE99920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 58551 59432 . - . gene_id "W7K_06155"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 58551 59432 . - . gene_id "W7K_06155"; transcript_id "KOE99921"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 58551 59432 . - . gene_id "W7K_06155"; transcript_id "KOE99921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99921-1"; +contig34 ena CDS 58554 59432 . - 0 gene_id "W7K_06155"; transcript_id "KOE99921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99921"; +contig34 ena start_codon 59430 59432 . - 0 gene_id "W7K_06155"; transcript_id "KOE99921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 58551 58553 . - 0 gene_id "W7K_06155"; transcript_id "KOE99921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 59555 60256 . + . gene_id "W7K_06160"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 59555 60256 . + . gene_id "W7K_06160"; transcript_id "KOE99922"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 59555 60256 . + . gene_id "W7K_06160"; transcript_id "KOE99922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99922-1"; +contig34 ena CDS 59555 60253 . + 0 gene_id "W7K_06160"; transcript_id "KOE99922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99922"; +contig34 ena start_codon 59555 59557 . + 0 gene_id "W7K_06160"; transcript_id "KOE99922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 60254 60256 . + 0 gene_id "W7K_06160"; transcript_id "KOE99922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 60308 61765 . + . gene_id "W7K_06165"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 60308 61765 . + . gene_id "W7K_06165"; transcript_id "KOE99923"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 60308 61765 . + . gene_id "W7K_06165"; transcript_id "KOE99923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99923-1"; +contig34 ena CDS 60308 61762 . + 0 gene_id "W7K_06165"; transcript_id "KOE99923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99923"; +contig34 ena start_codon 60308 60310 . + 0 gene_id "W7K_06165"; transcript_id "KOE99923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 61763 61765 . + 0 gene_id "W7K_06165"; transcript_id "KOE99923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 61782 62711 . - . gene_id "W7K_06170"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 61782 62711 . - . gene_id "W7K_06170"; transcript_id "KOE99924"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 61782 62711 . - . gene_id "W7K_06170"; transcript_id "KOE99924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99924-1"; +contig34 ena CDS 61785 62711 . - 0 gene_id "W7K_06170"; transcript_id "KOE99924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99924"; +contig34 ena start_codon 62709 62711 . - 0 gene_id "W7K_06170"; transcript_id "KOE99924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 61782 61784 . - 0 gene_id "W7K_06170"; transcript_id "KOE99924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 62805 63998 . + . gene_id "W7K_06175"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 62805 63998 . + . gene_id "W7K_06175"; transcript_id "KOE99925"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 62805 63998 . + . gene_id "W7K_06175"; transcript_id "KOE99925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99925-1"; +contig34 ena CDS 62805 63995 . + 0 gene_id "W7K_06175"; transcript_id "KOE99925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99925"; +contig34 ena start_codon 62805 62807 . + 0 gene_id "W7K_06175"; transcript_id "KOE99925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 63996 63998 . + 0 gene_id "W7K_06175"; transcript_id "KOE99925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 64683 65336 . - . gene_id "W7K_06180"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 64683 65336 . - . gene_id "W7K_06180"; transcript_id "KOE99926"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 64683 65336 . - . gene_id "W7K_06180"; transcript_id "KOE99926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99926-1"; +contig34 ena CDS 64686 65336 . - 0 gene_id "W7K_06180"; transcript_id "KOE99926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99926"; +contig34 ena start_codon 65334 65336 . - 0 gene_id "W7K_06180"; transcript_id "KOE99926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 64683 64685 . - 0 gene_id "W7K_06180"; transcript_id "KOE99926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 65329 68358 . - . gene_id "W7K_06185"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 65329 68358 . - . gene_id "W7K_06185"; transcript_id "KOE99927"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 65329 68358 . - . gene_id "W7K_06185"; transcript_id "KOE99927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99927-1"; +contig34 ena CDS 65332 68358 . - 0 gene_id "W7K_06185"; transcript_id "KOE99927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99927"; +contig34 ena start_codon 68356 68358 . - 0 gene_id "W7K_06185"; transcript_id "KOE99927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 65329 65331 . - 0 gene_id "W7K_06185"; transcript_id "KOE99927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 68455 68787 . + . gene_id "W7K_06190"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 68455 68787 . + . gene_id "W7K_06190"; transcript_id "KOE99928"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 68455 68787 . + . gene_id "W7K_06190"; transcript_id "KOE99928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99928-1"; +contig34 ena CDS 68455 68784 . + 0 gene_id "W7K_06190"; transcript_id "KOE99928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99928"; +contig34 ena start_codon 68455 68457 . + 0 gene_id "W7K_06190"; transcript_id "KOE99928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 68785 68787 . + 0 gene_id "W7K_06190"; transcript_id "KOE99928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 68865 69281 . + . gene_id "W7K_06195"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 68865 69281 . + . gene_id "W7K_06195"; transcript_id "KOE99929"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 68865 69281 . + . gene_id "W7K_06195"; transcript_id "KOE99929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99929-1"; +contig34 ena CDS 68865 69278 . + 0 gene_id "W7K_06195"; transcript_id "KOE99929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99929"; +contig34 ena start_codon 68865 68867 . + 0 gene_id "W7K_06195"; transcript_id "KOE99929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 69279 69281 . + 0 gene_id "W7K_06195"; transcript_id "KOE99929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 69278 69934 . + . gene_id "W7K_06200"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 69278 69934 . + . gene_id "W7K_06200"; transcript_id "KOE99930"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 69278 69934 . + . gene_id "W7K_06200"; transcript_id "KOE99930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99930-1"; +contig34 ena CDS 69278 69931 . + 0 gene_id "W7K_06200"; transcript_id "KOE99930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99930"; +contig34 ena start_codon 69278 69280 . + 0 gene_id "W7K_06200"; transcript_id "KOE99930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 69932 69934 . + 0 gene_id "W7K_06200"; transcript_id "KOE99930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 69937 70362 . + . gene_id "W7K_06205"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 69937 70362 . + . gene_id "W7K_06205"; transcript_id "KOE99931"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 69937 70362 . + . gene_id "W7K_06205"; transcript_id "KOE99931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99931-1"; +contig34 ena CDS 69937 70359 . + 0 gene_id "W7K_06205"; transcript_id "KOE99931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99931"; +contig34 ena start_codon 69937 69939 . + 0 gene_id "W7K_06205"; transcript_id "KOE99931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 70360 70362 . + 0 gene_id "W7K_06205"; transcript_id "KOE99931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 70359 72329 . + . gene_id "W7K_06210"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 70359 72329 . + . gene_id "W7K_06210"; transcript_id "KOE99932"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 70359 72329 . + . gene_id "W7K_06210"; transcript_id "KOE99932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99932-1"; +contig34 ena CDS 70359 72326 . + 0 gene_id "W7K_06210"; transcript_id "KOE99932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99932"; +contig34 ena start_codon 70359 70361 . + 0 gene_id "W7K_06210"; transcript_id "KOE99932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 72327 72329 . + 0 gene_id "W7K_06210"; transcript_id "KOE99932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 72308 73591 . + . gene_id "W7K_06215"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 72308 73591 . + . gene_id "W7K_06215"; transcript_id "KOE99933"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 72308 73591 . + . gene_id "W7K_06215"; transcript_id "KOE99933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99933-1"; +contig34 ena CDS 72308 73588 . + 0 gene_id "W7K_06215"; transcript_id "KOE99933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99933"; +contig34 ena start_codon 72308 72310 . + 0 gene_id "W7K_06215"; transcript_id "KOE99933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 73589 73591 . + 0 gene_id "W7K_06215"; transcript_id "KOE99933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 73585 75234 . + . gene_id "W7K_06220"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 73585 75234 . + . gene_id "W7K_06220"; transcript_id "KOE99934"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 73585 75234 . + . gene_id "W7K_06220"; transcript_id "KOE99934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99934-1"; +contig34 ena CDS 73585 75231 . + 0 gene_id "W7K_06220"; transcript_id "KOE99934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99934"; +contig34 ena start_codon 73585 73587 . + 0 gene_id "W7K_06220"; transcript_id "KOE99934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 75232 75234 . + 0 gene_id "W7K_06220"; transcript_id "KOE99934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 75336 76160 . - . gene_id "W7K_06225"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 75336 76160 . - . gene_id "W7K_06225"; transcript_id "KOE99935"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 75336 76160 . - . gene_id "W7K_06225"; transcript_id "KOE99935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99935-1"; +contig34 ena CDS 75339 76160 . - 0 gene_id "W7K_06225"; transcript_id "KOE99935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99935"; +contig34 ena start_codon 76158 76160 . - 0 gene_id "W7K_06225"; transcript_id "KOE99935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 75336 75338 . - 0 gene_id "W7K_06225"; transcript_id "KOE99935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 76347 76733 . + . gene_id "W7K_06230"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 76347 76733 . + . gene_id "W7K_06230"; transcript_id "KOE99936"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 76347 76733 . + . gene_id "W7K_06230"; transcript_id "KOE99936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99936-1"; +contig34 ena CDS 76347 76730 . + 0 gene_id "W7K_06230"; transcript_id "KOE99936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99936"; +contig34 ena start_codon 76347 76349 . + 0 gene_id "W7K_06230"; transcript_id "KOE99936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 76731 76733 . + 0 gene_id "W7K_06230"; transcript_id "KOE99936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 76803 77516 . - . gene_id "W7K_06235"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 76803 77516 . - . gene_id "W7K_06235"; transcript_id "KOE99937"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 76803 77516 . - . gene_id "W7K_06235"; transcript_id "KOE99937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99937-1"; +contig34 ena CDS 76806 77516 . - 0 gene_id "W7K_06235"; transcript_id "KOE99937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99937"; +contig34 ena start_codon 77514 77516 . - 0 gene_id "W7K_06235"; transcript_id "KOE99937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 76803 76805 . - 0 gene_id "W7K_06235"; transcript_id "KOE99937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 77616 79775 . - . gene_id "W7K_06240"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 77616 79775 . - . gene_id "W7K_06240"; transcript_id "KOE99938"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 77616 79775 . - . gene_id "W7K_06240"; transcript_id "KOE99938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99938-1"; +contig34 ena CDS 77619 79775 . - 0 gene_id "W7K_06240"; transcript_id "KOE99938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99938"; +contig34 ena start_codon 79773 79775 . - 0 gene_id "W7K_06240"; transcript_id "KOE99938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 77616 77618 . - 0 gene_id "W7K_06240"; transcript_id "KOE99938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 79784 80242 . - . gene_id "W7K_06245"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 79784 80242 . - . gene_id "W7K_06245"; transcript_id "KOE99939"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 79784 80242 . - . gene_id "W7K_06245"; transcript_id "KOE99939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99939-1"; +contig34 ena CDS 79787 80242 . - 0 gene_id "W7K_06245"; transcript_id "KOE99939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99939"; +contig34 ena start_codon 80240 80242 . - 0 gene_id "W7K_06245"; transcript_id "KOE99939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 79784 79786 . - 0 gene_id "W7K_06245"; transcript_id "KOE99939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 80239 81135 . - . gene_id "W7K_06250"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 80239 81135 . - . gene_id "W7K_06250"; transcript_id "KOE99940"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 80239 81135 . - . gene_id "W7K_06250"; transcript_id "KOE99940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99940-1"; +contig34 ena CDS 80242 81135 . - 0 gene_id "W7K_06250"; transcript_id "KOE99940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99940"; +contig34 ena start_codon 81133 81135 . - 0 gene_id "W7K_06250"; transcript_id "KOE99940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 80239 80241 . - 0 gene_id "W7K_06250"; transcript_id "KOE99940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 81135 82070 . - . gene_id "W7K_06255"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 81135 82070 . - . gene_id "W7K_06255"; transcript_id "KOE99941"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 81135 82070 . - . gene_id "W7K_06255"; transcript_id "KOE99941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99941-1"; +contig34 ena CDS 81138 82070 . - 0 gene_id "W7K_06255"; transcript_id "KOE99941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99941"; +contig34 ena start_codon 82068 82070 . - 0 gene_id "W7K_06255"; transcript_id "KOE99941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 81135 81137 . - 0 gene_id "W7K_06255"; transcript_id "KOE99941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 82099 83055 . - . gene_id "W7K_06260"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 82099 83055 . - . gene_id "W7K_06260"; transcript_id "KOE99942"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 82099 83055 . - . gene_id "W7K_06260"; transcript_id "KOE99942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99942-1"; +contig34 ena CDS 82102 83055 . - 0 gene_id "W7K_06260"; transcript_id "KOE99942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99942"; +contig34 ena start_codon 83053 83055 . - 0 gene_id "W7K_06260"; transcript_id "KOE99942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 82099 82101 . - 0 gene_id "W7K_06260"; transcript_id "KOE99942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 83058 84407 . - . gene_id "W7K_06265"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 83058 84407 . - . gene_id "W7K_06265"; transcript_id "KOE99943"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 83058 84407 . - . gene_id "W7K_06265"; transcript_id "KOE99943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99943-1"; +contig34 ena CDS 83061 84407 . - 0 gene_id "W7K_06265"; transcript_id "KOE99943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99943"; +contig34 ena start_codon 84405 84407 . - 0 gene_id "W7K_06265"; transcript_id "KOE99943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 83058 83060 . - 0 gene_id "W7K_06265"; transcript_id "KOE99943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 84392 85648 . - . gene_id "W7K_06270"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 84392 85648 . - . gene_id "W7K_06270"; transcript_id "KOE99944"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 84392 85648 . - . gene_id "W7K_06270"; transcript_id "KOE99944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99944-1"; +contig34 ena CDS 84395 85648 . - 0 gene_id "W7K_06270"; transcript_id "KOE99944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99944"; +contig34 ena start_codon 85646 85648 . - 0 gene_id "W7K_06270"; transcript_id "KOE99944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 84392 84394 . - 0 gene_id "W7K_06270"; transcript_id "KOE99944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 85676 87034 . - . gene_id "W7K_06275"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 85676 87034 . - . gene_id "W7K_06275"; transcript_id "KOE99945"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 85676 87034 . - . gene_id "W7K_06275"; transcript_id "KOE99945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99945-1"; +contig34 ena CDS 85679 87034 . - 0 gene_id "W7K_06275"; transcript_id "KOE99945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99945"; +contig34 ena start_codon 87032 87034 . - 0 gene_id "W7K_06275"; transcript_id "KOE99945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 85676 85678 . - 0 gene_id "W7K_06275"; transcript_id "KOE99945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 87053 88090 . - . gene_id "W7K_06280"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 87053 88090 . - . gene_id "W7K_06280"; transcript_id "KOE99946"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 87053 88090 . - . gene_id "W7K_06280"; transcript_id "KOE99946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99946-1"; +contig34 ena CDS 87056 88090 . - 0 gene_id "W7K_06280"; transcript_id "KOE99946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99946"; +contig34 ena start_codon 88088 88090 . - 0 gene_id "W7K_06280"; transcript_id "KOE99946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 87053 87055 . - 0 gene_id "W7K_06280"; transcript_id "KOE99946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 88114 88590 . - . gene_id "W7K_06285"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 88114 88590 . - . gene_id "W7K_06285"; transcript_id "KOE99947"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 88114 88590 . - . gene_id "W7K_06285"; transcript_id "KOE99947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99947-1"; +contig34 ena CDS 88117 88590 . - 0 gene_id "W7K_06285"; transcript_id "KOE99947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99947"; +contig34 ena start_codon 88588 88590 . - 0 gene_id "W7K_06285"; transcript_id "KOE99947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 88114 88116 . - 0 gene_id "W7K_06285"; transcript_id "KOE99947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 88587 89132 . - . gene_id "W7K_06290"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 88587 89132 . - . gene_id "W7K_06290"; transcript_id "KOE99948"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 88587 89132 . - . gene_id "W7K_06290"; transcript_id "KOE99948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99948-1"; +contig34 ena CDS 88590 89132 . - 0 gene_id "W7K_06290"; transcript_id "KOE99948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99948"; +contig34 ena start_codon 89130 89132 . - 0 gene_id "W7K_06290"; transcript_id "KOE99948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 88587 88589 . - 0 gene_id "W7K_06290"; transcript_id "KOE99948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 89198 89389 . - . gene_id "W7K_06295"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 89198 89389 . - . gene_id "W7K_06295"; transcript_id "KOE99949"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 89198 89389 . - . gene_id "W7K_06295"; transcript_id "KOE99949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99949-1"; +contig34 ena CDS 89201 89389 . - 0 gene_id "W7K_06295"; transcript_id "KOE99949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99949"; +contig34 ena start_codon 89387 89389 . - 0 gene_id "W7K_06295"; transcript_id "KOE99949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 89198 89200 . - 0 gene_id "W7K_06295"; transcript_id "KOE99949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 90076 91056 . + . gene_id "W7K_06300"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 90076 91056 . + . gene_id "W7K_06300"; transcript_id "KOE99950"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 90076 91056 . + . gene_id "W7K_06300"; transcript_id "KOE99950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99950-1"; +contig34 ena CDS 90076 91053 . + 0 gene_id "W7K_06300"; transcript_id "KOE99950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99950"; +contig34 ena start_codon 90076 90078 . + 0 gene_id "W7K_06300"; transcript_id "KOE99950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 91054 91056 . + 0 gene_id "W7K_06300"; transcript_id "KOE99950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 91292 96493 . + . gene_id "W7K_06305"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 91292 96493 . + . gene_id "W7K_06305"; transcript_id "KOE99951"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 91292 96493 . + . gene_id "W7K_06305"; transcript_id "KOE99951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99951-1"; +contig34 ena CDS 91292 96490 . + 0 gene_id "W7K_06305"; transcript_id "KOE99951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99951"; +contig34 ena start_codon 91292 91294 . + 0 gene_id "W7K_06305"; transcript_id "KOE99951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 96491 96493 . + 0 gene_id "W7K_06305"; transcript_id "KOE99951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 96555 97391 . + . gene_id "W7K_06310"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 96555 97391 . + . gene_id "W7K_06310"; transcript_id "KOE99952"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 96555 97391 . + . gene_id "W7K_06310"; transcript_id "KOE99952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99952-1"; +contig34 ena CDS 96555 97388 . + 0 gene_id "W7K_06310"; transcript_id "KOE99952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99952"; +contig34 ena start_codon 96555 96557 . + 0 gene_id "W7K_06310"; transcript_id "KOE99952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 97389 97391 . + 0 gene_id "W7K_06310"; transcript_id "KOE99952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 97501 97803 . + . gene_id "W7K_06315"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 97501 97803 . + . gene_id "W7K_06315"; transcript_id "KOE99953"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 97501 97803 . + . gene_id "W7K_06315"; transcript_id "KOE99953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99953-1"; +contig34 ena CDS 97501 97800 . + 0 gene_id "W7K_06315"; transcript_id "KOE99953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99953"; +contig34 ena start_codon 97501 97503 . + 0 gene_id "W7K_06315"; transcript_id "KOE99953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 97801 97803 . + 0 gene_id "W7K_06315"; transcript_id "KOE99953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 97889 98716 . - . gene_id "W7K_06320"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 97889 98716 . - . gene_id "W7K_06320"; transcript_id "KOE99954"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 97889 98716 . - . gene_id "W7K_06320"; transcript_id "KOE99954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99954-1"; +contig34 ena CDS 97892 98716 . - 0 gene_id "W7K_06320"; transcript_id "KOE99954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99954"; +contig34 ena start_codon 98714 98716 . - 0 gene_id "W7K_06320"; transcript_id "KOE99954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 97889 97891 . - 0 gene_id "W7K_06320"; transcript_id "KOE99954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 98780 99187 . + . gene_id "W7K_06325"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 98780 99187 . + . gene_id "W7K_06325"; transcript_id "KOE99955"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 98780 99187 . + . gene_id "W7K_06325"; transcript_id "KOE99955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99955-1"; +contig34 ena CDS 98780 99184 . + 0 gene_id "W7K_06325"; transcript_id "KOE99955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99955"; +contig34 ena start_codon 98780 98782 . + 0 gene_id "W7K_06325"; transcript_id "KOE99955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 99185 99187 . + 0 gene_id "W7K_06325"; transcript_id "KOE99955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 99203 99919 . - . gene_id "W7K_06330"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 99203 99919 . - . gene_id "W7K_06330"; transcript_id "KOE99956"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 99203 99919 . - . gene_id "W7K_06330"; transcript_id "KOE99956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99956-1"; +contig34 ena CDS 99206 99919 . - 0 gene_id "W7K_06330"; transcript_id "KOE99956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99956"; +contig34 ena start_codon 99917 99919 . - 0 gene_id "W7K_06330"; transcript_id "KOE99956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 99203 99205 . - 0 gene_id "W7K_06330"; transcript_id "KOE99956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 100012 101784 . - . gene_id "W7K_06335"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 100012 101784 . - . gene_id "W7K_06335"; transcript_id "KOF00173"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 100012 101784 . - . gene_id "W7K_06335"; transcript_id "KOF00173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00173-1"; +contig34 ena CDS 100015 101784 . - 0 gene_id "W7K_06335"; transcript_id "KOF00173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00173"; +contig34 ena start_codon 101782 101784 . - 0 gene_id "W7K_06335"; transcript_id "KOF00173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 100012 100014 . - 0 gene_id "W7K_06335"; transcript_id "KOF00173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 101847 103928 . - . gene_id "W7K_06340"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 101847 103928 . - . gene_id "W7K_06340"; transcript_id "KOE99957"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 101847 103928 . - . gene_id "W7K_06340"; transcript_id "KOE99957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99957-1"; +contig34 ena CDS 101850 103928 . - 0 gene_id "W7K_06340"; transcript_id "KOE99957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99957"; +contig34 ena start_codon 103926 103928 . - 0 gene_id "W7K_06340"; transcript_id "KOE99957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 101847 101849 . - 0 gene_id "W7K_06340"; transcript_id "KOE99957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 104060 104980 . + . gene_id "W7K_06345"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 104060 104980 . + . gene_id "W7K_06345"; transcript_id "KOE99958"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 104060 104980 . + . gene_id "W7K_06345"; transcript_id "KOE99958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99958-1"; +contig34 ena CDS 104060 104977 . + 0 gene_id "W7K_06345"; transcript_id "KOE99958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99958"; +contig34 ena start_codon 104060 104062 . + 0 gene_id "W7K_06345"; transcript_id "KOE99958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 104978 104980 . + 0 gene_id "W7K_06345"; transcript_id "KOE99958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 104988 105839 . - . gene_id "W7K_06350"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 104988 105839 . - . gene_id "W7K_06350"; transcript_id "KOE99959"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 104988 105839 . - . gene_id "W7K_06350"; transcript_id "KOE99959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99959-1"; +contig34 ena CDS 104991 105839 . - 0 gene_id "W7K_06350"; transcript_id "KOE99959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99959"; +contig34 ena start_codon 105837 105839 . - 0 gene_id "W7K_06350"; transcript_id "KOE99959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 104988 104990 . - 0 gene_id "W7K_06350"; transcript_id "KOE99959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 105990 106343 . + . gene_id "W7K_06355"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 105990 106343 . + . gene_id "W7K_06355"; transcript_id "KOE99960"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 105990 106343 . + . gene_id "W7K_06355"; transcript_id "KOE99960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99960-1"; +contig34 ena CDS 105990 106340 . + 0 gene_id "W7K_06355"; transcript_id "KOE99960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99960"; +contig34 ena start_codon 105990 105992 . + 0 gene_id "W7K_06355"; transcript_id "KOE99960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 106341 106343 . + 0 gene_id "W7K_06355"; transcript_id "KOE99960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 106343 106666 . + . gene_id "W7K_06360"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 106343 106666 . + . gene_id "W7K_06360"; transcript_id "KOE99961"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 106343 106666 . + . gene_id "W7K_06360"; transcript_id "KOE99961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99961-1"; +contig34 ena CDS 106343 106663 . + 0 gene_id "W7K_06360"; transcript_id "KOE99961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99961"; +contig34 ena start_codon 106343 106345 . + 0 gene_id "W7K_06360"; transcript_id "KOE99961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 106664 106666 . + 0 gene_id "W7K_06360"; transcript_id "KOE99961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 106809 109757 . - . gene_id "W7K_06365"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 106809 109757 . - . gene_id "W7K_06365"; transcript_id "KOE99962"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 106809 109757 . - . gene_id "W7K_06365"; transcript_id "KOE99962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99962-1"; +contig34 ena CDS 106812 109757 . - 0 gene_id "W7K_06365"; transcript_id "KOE99962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99962"; +contig34 ena start_codon 109755 109757 . - 0 gene_id "W7K_06365"; transcript_id "KOE99962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 106809 106811 . - 0 gene_id "W7K_06365"; transcript_id "KOE99962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 109827 110771 . - . gene_id "W7K_06370"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 109827 110771 . - . gene_id "W7K_06370"; transcript_id "KOE99963"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 109827 110771 . - . gene_id "W7K_06370"; transcript_id "KOE99963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99963-1"; +contig34 ena CDS 109830 110771 . - 0 gene_id "W7K_06370"; transcript_id "KOE99963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99963"; +contig34 ena start_codon 110769 110771 . - 0 gene_id "W7K_06370"; transcript_id "KOE99963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 109827 109829 . - 0 gene_id "W7K_06370"; transcript_id "KOE99963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 110768 111286 . - . gene_id "W7K_06375"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 110768 111286 . - . gene_id "W7K_06375"; transcript_id "KOE99964"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 110768 111286 . - . gene_id "W7K_06375"; transcript_id "KOE99964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99964-1"; +contig34 ena CDS 110771 111286 . - 0 gene_id "W7K_06375"; transcript_id "KOE99964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99964"; +contig34 ena start_codon 111284 111286 . - 0 gene_id "W7K_06375"; transcript_id "KOE99964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 110768 110770 . - 0 gene_id "W7K_06375"; transcript_id "KOE99964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 111437 111817 . + . gene_id "W7K_06380"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 111437 111817 . + . gene_id "W7K_06380"; transcript_id "KOE99965"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 111437 111817 . + . gene_id "W7K_06380"; transcript_id "KOE99965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99965-1"; +contig34 ena CDS 111437 111814 . + 0 gene_id "W7K_06380"; transcript_id "KOE99965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99965"; +contig34 ena start_codon 111437 111439 . + 0 gene_id "W7K_06380"; transcript_id "KOE99965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 111815 111817 . + 0 gene_id "W7K_06380"; transcript_id "KOE99965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 112011 113990 . + . gene_id "W7K_06385"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 112011 113990 . + . gene_id "W7K_06385"; transcript_id "KOE99966"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 112011 113990 . + . gene_id "W7K_06385"; transcript_id "KOE99966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99966-1"; +contig34 ena CDS 112011 113987 . + 0 gene_id "W7K_06385"; transcript_id "KOE99966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99966"; +contig34 ena start_codon 112011 112013 . + 0 gene_id "W7K_06385"; transcript_id "KOE99966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 113988 113990 . + 0 gene_id "W7K_06385"; transcript_id "KOE99966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 114098 116725 . - . gene_id "W7K_06390"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 114098 116725 . - . gene_id "W7K_06390"; transcript_id "KOF00174"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 114098 116725 . - . gene_id "W7K_06390"; transcript_id "KOF00174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00174-1"; +contig34 ena CDS 114101 116725 . - 0 gene_id "W7K_06390"; transcript_id "KOF00174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00174"; +contig34 ena start_codon 116723 116725 . - 0 gene_id "W7K_06390"; transcript_id "KOF00174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 114098 114100 . - 0 gene_id "W7K_06390"; transcript_id "KOF00174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 116985 117962 . - . gene_id "W7K_06395"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 116985 117962 . - . gene_id "W7K_06395"; transcript_id "KOE99967"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 116985 117962 . - . gene_id "W7K_06395"; transcript_id "KOE99967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99967-1"; +contig34 ena CDS 116988 117962 . - 0 gene_id "W7K_06395"; transcript_id "KOE99967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99967"; +contig34 ena start_codon 117960 117962 . - 0 gene_id "W7K_06395"; transcript_id "KOE99967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 116985 116987 . - 0 gene_id "W7K_06395"; transcript_id "KOE99967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 118394 120757 . + . gene_id "W7K_06400"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 118394 120757 . + . gene_id "W7K_06400"; transcript_id "KOE99968"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 118394 120757 . + . gene_id "W7K_06400"; transcript_id "KOE99968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99968-1"; +contig34 ena CDS 118394 120754 . + 0 gene_id "W7K_06400"; transcript_id "KOE99968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99968"; +contig34 ena start_codon 118394 118396 . + 0 gene_id "W7K_06400"; transcript_id "KOE99968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 120755 120757 . + 0 gene_id "W7K_06400"; transcript_id "KOE99968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 120868 121908 . + . gene_id "W7K_06405"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 120868 121908 . + . gene_id "W7K_06405"; transcript_id "KOE99969"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 120868 121908 . + . gene_id "W7K_06405"; transcript_id "KOE99969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99969-1"; +contig34 ena CDS 120868 121905 . + 0 gene_id "W7K_06405"; transcript_id "KOE99969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99969"; +contig34 ena start_codon 120868 120870 . + 0 gene_id "W7K_06405"; transcript_id "KOE99969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 121906 121908 . + 0 gene_id "W7K_06405"; transcript_id "KOE99969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 121922 122401 . + . gene_id "W7K_06410"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 121922 122401 . + . gene_id "W7K_06410"; transcript_id "KOF00175"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 121922 122401 . + . gene_id "W7K_06410"; transcript_id "KOF00175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00175-1"; +contig34 ena CDS 121922 122398 . + 0 gene_id "W7K_06410"; transcript_id "KOF00175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00175"; +contig34 ena start_codon 121922 121924 . + 0 gene_id "W7K_06410"; transcript_id "KOF00175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 122399 122401 . + 0 gene_id "W7K_06410"; transcript_id "KOF00175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 122373 122699 . + . gene_id "W7K_06415"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 122373 122699 . + . gene_id "W7K_06415"; transcript_id "KOE99970"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 122373 122699 . + . gene_id "W7K_06415"; transcript_id "KOE99970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99970-1"; +contig34 ena CDS 122373 122696 . + 0 gene_id "W7K_06415"; transcript_id "KOE99970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99970"; +contig34 ena start_codon 122373 122375 . + 0 gene_id "W7K_06415"; transcript_id "KOE99970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 122697 122699 . + 0 gene_id "W7K_06415"; transcript_id "KOE99970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 122818 124149 . - . gene_id "W7K_06420"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 122818 124149 . - . gene_id "W7K_06420"; transcript_id "KOE99971"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 122818 124149 . - . gene_id "W7K_06420"; transcript_id "KOE99971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99971-1"; +contig34 ena CDS 122821 124149 . - 0 gene_id "W7K_06420"; transcript_id "KOE99971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99971"; +contig34 ena start_codon 124147 124149 . - 0 gene_id "W7K_06420"; transcript_id "KOE99971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 122818 122820 . - 0 gene_id "W7K_06420"; transcript_id "KOE99971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 124267 124737 . + . gene_id "W7K_06425"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 124267 124737 . + . gene_id "W7K_06425"; transcript_id "KOE99972"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 124267 124737 . + . gene_id "W7K_06425"; transcript_id "KOE99972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99972-1"; +contig34 ena CDS 124267 124734 . + 0 gene_id "W7K_06425"; transcript_id "KOE99972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99972"; +contig34 ena start_codon 124267 124269 . + 0 gene_id "W7K_06425"; transcript_id "KOE99972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 124735 124737 . + 0 gene_id "W7K_06425"; transcript_id "KOE99972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 124852 125400 . - . gene_id "W7K_06430"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 124852 125400 . - . gene_id "W7K_06430"; transcript_id "KOE99973"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 124852 125400 . - . gene_id "W7K_06430"; transcript_id "KOE99973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99973-1"; +contig34 ena CDS 124855 125400 . - 0 gene_id "W7K_06430"; transcript_id "KOE99973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99973"; +contig34 ena start_codon 125398 125400 . - 0 gene_id "W7K_06430"; transcript_id "KOE99973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 124852 124854 . - 0 gene_id "W7K_06430"; transcript_id "KOE99973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 125390 127549 . - . gene_id "W7K_06435"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 125390 127549 . - . gene_id "W7K_06435"; transcript_id "KOE99974"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 125390 127549 . - . gene_id "W7K_06435"; transcript_id "KOE99974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99974-1"; +contig34 ena CDS 125393 127549 . - 0 gene_id "W7K_06435"; transcript_id "KOE99974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99974"; +contig34 ena start_codon 127547 127549 . - 0 gene_id "W7K_06435"; transcript_id "KOE99974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 125390 125392 . - 0 gene_id "W7K_06435"; transcript_id "KOE99974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 127780 128436 . - . gene_id "W7K_06440"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 127780 128436 . - . gene_id "W7K_06440"; transcript_id "KOE99975"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 127780 128436 . - . gene_id "W7K_06440"; transcript_id "KOE99975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99975-1"; +contig34 ena CDS 127783 128436 . - 0 gene_id "W7K_06440"; transcript_id "KOE99975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99975"; +contig34 ena start_codon 128434 128436 . - 0 gene_id "W7K_06440"; transcript_id "KOE99975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 127780 127782 . - 0 gene_id "W7K_06440"; transcript_id "KOE99975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 128529 129599 . + . gene_id "W7K_06445"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 128529 129599 . + . gene_id "W7K_06445"; transcript_id "KOE99976"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 128529 129599 . + . gene_id "W7K_06445"; transcript_id "KOE99976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99976-1"; +contig34 ena CDS 128529 129596 . + 0 gene_id "W7K_06445"; transcript_id "KOE99976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99976"; +contig34 ena start_codon 128529 128531 . + 0 gene_id "W7K_06445"; transcript_id "KOE99976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 129597 129599 . + 0 gene_id "W7K_06445"; transcript_id "KOE99976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 129611 130759 . + . gene_id "W7K_06450"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 129611 130759 . + . gene_id "W7K_06450"; transcript_id "KOE99977"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 129611 130759 . + . gene_id "W7K_06450"; transcript_id "KOE99977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99977-1"; +contig34 ena CDS 129611 130756 . + 0 gene_id "W7K_06450"; transcript_id "KOE99977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99977"; +contig34 ena start_codon 129611 129613 . + 0 gene_id "W7K_06450"; transcript_id "KOE99977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 130757 130759 . + 0 gene_id "W7K_06450"; transcript_id "KOE99977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 130765 131100 . - . gene_id "W7K_06455"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 130765 131100 . - . gene_id "W7K_06455"; transcript_id "KOE99978"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 130765 131100 . - . gene_id "W7K_06455"; transcript_id "KOE99978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99978-1"; +contig34 ena CDS 130768 131100 . - 0 gene_id "W7K_06455"; transcript_id "KOE99978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99978"; +contig34 ena start_codon 131098 131100 . - 0 gene_id "W7K_06455"; transcript_id "KOE99978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 130765 130767 . - 0 gene_id "W7K_06455"; transcript_id "KOE99978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 131100 131675 . - . gene_id "W7K_06460"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 131100 131675 . - . gene_id "W7K_06460"; transcript_id "KOE99979"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 131100 131675 . - . gene_id "W7K_06460"; transcript_id "KOE99979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99979-1"; +contig34 ena CDS 131103 131675 . - 0 gene_id "W7K_06460"; transcript_id "KOE99979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99979"; +contig34 ena start_codon 131673 131675 . - 0 gene_id "W7K_06460"; transcript_id "KOE99979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 131100 131102 . - 0 gene_id "W7K_06460"; transcript_id "KOE99979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 131672 132301 . - . gene_id "W7K_06465"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 131672 132301 . - . gene_id "W7K_06465"; transcript_id "KOE99980"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 131672 132301 . - . gene_id "W7K_06465"; transcript_id "KOE99980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99980-1"; +contig34 ena CDS 131675 132301 . - 0 gene_id "W7K_06465"; transcript_id "KOE99980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99980"; +contig34 ena start_codon 132299 132301 . - 0 gene_id "W7K_06465"; transcript_id "KOE99980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 131672 131674 . - 0 gene_id "W7K_06465"; transcript_id "KOE99980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 132790 134310 . - . gene_id "W7K_06470"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 132790 134310 . - . gene_id "W7K_06470"; transcript_id "KOE99981"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 132790 134310 . - . gene_id "W7K_06470"; transcript_id "KOE99981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99981-1"; +contig34 ena CDS 132793 134310 . - 0 gene_id "W7K_06470"; transcript_id "KOE99981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99981"; +contig34 ena start_codon 134308 134310 . - 0 gene_id "W7K_06470"; transcript_id "KOE99981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 132790 132792 . - 0 gene_id "W7K_06470"; transcript_id "KOE99981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 134430 134879 . - . gene_id "W7K_06475"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 134430 134879 . - . gene_id "W7K_06475"; transcript_id "KOE99982"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 134430 134879 . - . gene_id "W7K_06475"; transcript_id "KOE99982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99982-1"; +contig34 ena CDS 134433 134879 . - 0 gene_id "W7K_06475"; transcript_id "KOE99982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99982"; +contig34 ena start_codon 134877 134879 . - 0 gene_id "W7K_06475"; transcript_id "KOE99982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 134430 134432 . - 0 gene_id "W7K_06475"; transcript_id "KOE99982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 134946 135881 . + . gene_id "W7K_06480"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 134946 135881 . + . gene_id "W7K_06480"; transcript_id "KOE99983"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 134946 135881 . + . gene_id "W7K_06480"; transcript_id "KOE99983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99983-1"; +contig34 ena CDS 134946 135878 . + 0 gene_id "W7K_06480"; transcript_id "KOE99983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99983"; +contig34 ena start_codon 134946 134948 . + 0 gene_id "W7K_06480"; transcript_id "KOE99983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 135879 135881 . + 0 gene_id "W7K_06480"; transcript_id "KOE99983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 136007 136318 . + . gene_id "W7K_06485"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 136007 136318 . + . gene_id "W7K_06485"; transcript_id "KOE99984"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 136007 136318 . + . gene_id "W7K_06485"; transcript_id "KOE99984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99984-1"; +contig34 ena CDS 136007 136315 . + 0 gene_id "W7K_06485"; transcript_id "KOE99984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99984"; +contig34 ena start_codon 136007 136009 . + 0 gene_id "W7K_06485"; transcript_id "KOE99984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 136316 136318 . + 0 gene_id "W7K_06485"; transcript_id "KOE99984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 136473 137669 . + . gene_id "W7K_06490"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 136473 137669 . + . gene_id "W7K_06490"; transcript_id "KOE99985"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 136473 137669 . + . gene_id "W7K_06490"; transcript_id "KOE99985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99985-1"; +contig34 ena CDS 136473 137666 . + 0 gene_id "W7K_06490"; transcript_id "KOE99985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99985"; +contig34 ena start_codon 136473 136475 . + 0 gene_id "W7K_06490"; transcript_id "KOE99985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 137667 137669 . + 0 gene_id "W7K_06490"; transcript_id "KOE99985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 137666 138859 . + . gene_id "W7K_06495"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 137666 138859 . + . gene_id "W7K_06495"; transcript_id "KOE99986"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 137666 138859 . + . gene_id "W7K_06495"; transcript_id "KOE99986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99986-1"; +contig34 ena CDS 137666 138856 . + 0 gene_id "W7K_06495"; transcript_id "KOE99986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99986"; +contig34 ena start_codon 137666 137668 . + 0 gene_id "W7K_06495"; transcript_id "KOE99986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 138857 138859 . + 0 gene_id "W7K_06495"; transcript_id "KOE99986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 138856 140508 . + . gene_id "W7K_06500"; gene_name "entE"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 138856 140508 . + . gene_id "W7K_06500"; transcript_id "KOE99987"; gene_name "entE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "entE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 138856 140508 . + . gene_id "W7K_06500"; transcript_id "KOE99987"; exon_number "1"; gene_name "entE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "entE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99987-1"; +contig34 ena CDS 138856 140505 . + 0 gene_id "W7K_06500"; transcript_id "KOE99987"; exon_number "1"; gene_name "entE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "entE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99987"; +contig34 ena start_codon 138856 138858 . + 0 gene_id "W7K_06500"; transcript_id "KOE99987"; exon_number "1"; gene_name "entE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "entE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 140506 140508 . + 0 gene_id "W7K_06500"; transcript_id "KOE99987"; exon_number "1"; gene_name "entE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "entE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 140508 141140 . + . gene_id "W7K_06505"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 140508 141140 . + . gene_id "W7K_06505"; transcript_id "KOE99988"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 140508 141140 . + . gene_id "W7K_06505"; transcript_id "KOE99988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99988-1"; +contig34 ena CDS 140508 141137 . + 0 gene_id "W7K_06505"; transcript_id "KOE99988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99988"; +contig34 ena start_codon 140508 140510 . + 0 gene_id "W7K_06505"; transcript_id "KOE99988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 141138 141140 . + 0 gene_id "W7K_06505"; transcript_id "KOE99988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 141140 141397 . + . gene_id "W7K_06510"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 141140 141397 . + . gene_id "W7K_06510"; transcript_id "KOE99989"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 141140 141397 . + . gene_id "W7K_06510"; transcript_id "KOE99989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99989-1"; +contig34 ena CDS 141140 141394 . + 0 gene_id "W7K_06510"; transcript_id "KOE99989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99989"; +contig34 ena start_codon 141140 141142 . + 0 gene_id "W7K_06510"; transcript_id "KOE99989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 141395 141397 . + 0 gene_id "W7K_06510"; transcript_id "KOE99989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 141394 145284 . + . gene_id "W7K_06515"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 141394 145284 . + . gene_id "W7K_06515"; transcript_id "KOE99990"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 141394 145284 . + . gene_id "W7K_06515"; transcript_id "KOE99990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99990-1"; +contig34 ena CDS 141394 145281 . + 0 gene_id "W7K_06515"; transcript_id "KOE99990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99990"; +contig34 ena start_codon 141394 141396 . + 0 gene_id "W7K_06515"; transcript_id "KOE99990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 145282 145284 . + 0 gene_id "W7K_06515"; transcript_id "KOE99990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 145275 146033 . + . gene_id "W7K_06520"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 145275 146033 . + . gene_id "W7K_06520"; transcript_id "KOE99991"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 145275 146033 . + . gene_id "W7K_06520"; transcript_id "KOE99991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99991-1"; +contig34 ena CDS 145275 146030 . + 0 gene_id "W7K_06520"; transcript_id "KOE99991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99991"; +contig34 ena start_codon 145275 145277 . + 0 gene_id "W7K_06520"; transcript_id "KOE99991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 146031 146033 . + 0 gene_id "W7K_06520"; transcript_id "KOE99991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 146172 147629 . - . gene_id "W7K_06525"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 146172 147629 . - . gene_id "W7K_06525"; transcript_id "KOE99992"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 146172 147629 . - . gene_id "W7K_06525"; transcript_id "KOE99992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99992-1"; +contig34 ena CDS 146175 147629 . - 0 gene_id "W7K_06525"; transcript_id "KOE99992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99992"; +contig34 ena start_codon 147627 147629 . - 0 gene_id "W7K_06525"; transcript_id "KOE99992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 146172 146174 . - 0 gene_id "W7K_06525"; transcript_id "KOE99992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 147651 149969 . - . gene_id "W7K_06530"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 147651 149969 . - . gene_id "W7K_06530"; transcript_id "KOE99993"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 147651 149969 . - . gene_id "W7K_06530"; transcript_id "KOE99993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99993-1"; +contig34 ena CDS 147654 149969 . - 0 gene_id "W7K_06530"; transcript_id "KOE99993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99993"; +contig34 ena start_codon 149967 149969 . - 0 gene_id "W7K_06530"; transcript_id "KOE99993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 147651 147653 . - 0 gene_id "W7K_06530"; transcript_id "KOE99993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 150254 150631 . - . gene_id "W7K_06535"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 150254 150631 . - . gene_id "W7K_06535"; transcript_id "KOE99994"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 150254 150631 . - . gene_id "W7K_06535"; transcript_id "KOE99994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99994-1"; +contig34 ena CDS 150257 150631 . - 0 gene_id "W7K_06535"; transcript_id "KOE99994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99994"; +contig34 ena start_codon 150629 150631 . - 0 gene_id "W7K_06535"; transcript_id "KOE99994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 150254 150256 . - 0 gene_id "W7K_06535"; transcript_id "KOE99994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 150621 151259 . - . gene_id "W7K_06540"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 150621 151259 . - . gene_id "W7K_06540"; transcript_id "KOE99995"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 150621 151259 . - . gene_id "W7K_06540"; transcript_id "KOE99995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99995-1"; +contig34 ena CDS 150624 151259 . - 0 gene_id "W7K_06540"; transcript_id "KOE99995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99995"; +contig34 ena start_codon 151257 151259 . - 0 gene_id "W7K_06540"; transcript_id "KOE99995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 150621 150623 . - 0 gene_id "W7K_06540"; transcript_id "KOE99995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 151256 153520 . - . gene_id "W7K_06545"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 151256 153520 . - . gene_id "W7K_06545"; transcript_id "KOE99996"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 151256 153520 . - . gene_id "W7K_06545"; transcript_id "KOE99996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99996-1"; +contig34 ena CDS 151259 153520 . - 0 gene_id "W7K_06545"; transcript_id "KOE99996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99996"; +contig34 ena start_codon 153518 153520 . - 0 gene_id "W7K_06545"; transcript_id "KOE99996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 151256 151258 . - 0 gene_id "W7K_06545"; transcript_id "KOE99996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 153531 154184 . - . gene_id "W7K_06550"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 153531 154184 . - . gene_id "W7K_06550"; transcript_id "KOE99997"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 153531 154184 . - . gene_id "W7K_06550"; transcript_id "KOE99997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99997-1"; +contig34 ena CDS 153534 154184 . - 0 gene_id "W7K_06550"; transcript_id "KOE99997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99997"; +contig34 ena start_codon 154182 154184 . - 0 gene_id "W7K_06550"; transcript_id "KOE99997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 153531 153533 . - 0 gene_id "W7K_06550"; transcript_id "KOE99997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 154331 155251 . + . gene_id "W7K_06555"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 154331 155251 . + . gene_id "W7K_06555"; transcript_id "KOE99998"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 154331 155251 . + . gene_id "W7K_06555"; transcript_id "KOE99998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99998-1"; +contig34 ena CDS 154331 155248 . + 0 gene_id "W7K_06555"; transcript_id "KOE99998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99998"; +contig34 ena start_codon 154331 154333 . + 0 gene_id "W7K_06555"; transcript_id "KOE99998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 155249 155251 . + 0 gene_id "W7K_06555"; transcript_id "KOE99998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 155155 156966 . - . gene_id "W7K_06560"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 155155 156966 . - . gene_id "W7K_06560"; transcript_id "KOE99999"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 155155 156966 . - . gene_id "W7K_06560"; transcript_id "KOE99999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99999-1"; +contig34 ena CDS 155158 156966 . - 0 gene_id "W7K_06560"; transcript_id "KOE99999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99999"; +contig34 ena start_codon 156964 156966 . - 0 gene_id "W7K_06560"; transcript_id "KOE99999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 155155 155157 . - 0 gene_id "W7K_06560"; transcript_id "KOE99999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 157040 157426 . - . gene_id "W7K_06565"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 157040 157426 . - . gene_id "W7K_06565"; transcript_id "KOF00001"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 157040 157426 . - . gene_id "W7K_06565"; transcript_id "KOF00001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00001-1"; +contig34 ena CDS 157043 157426 . - 0 gene_id "W7K_06565"; transcript_id "KOF00001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00001"; +contig34 ena start_codon 157424 157426 . - 0 gene_id "W7K_06565"; transcript_id "KOF00001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 157040 157042 . - 0 gene_id "W7K_06565"; transcript_id "KOF00001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 157486 158718 . - . gene_id "W7K_06570"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 157486 158718 . - . gene_id "W7K_06570"; transcript_id "KOF00002"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 157486 158718 . - . gene_id "W7K_06570"; transcript_id "KOF00002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00002-1"; +contig34 ena CDS 157489 158718 . - 0 gene_id "W7K_06570"; transcript_id "KOF00002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00002"; +contig34 ena start_codon 158716 158718 . - 0 gene_id "W7K_06570"; transcript_id "KOF00002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 157486 157488 . - 0 gene_id "W7K_06570"; transcript_id "KOF00002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 158715 159389 . - . gene_id "W7K_06575"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 158715 159389 . - . gene_id "W7K_06575"; transcript_id "KOF00003"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 158715 159389 . - . gene_id "W7K_06575"; transcript_id "KOF00003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00003-1"; +contig34 ena CDS 158718 159389 . - 0 gene_id "W7K_06575"; transcript_id "KOF00003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00003"; +contig34 ena start_codon 159387 159389 . - 0 gene_id "W7K_06575"; transcript_id "KOF00003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 158715 158717 . - 0 gene_id "W7K_06575"; transcript_id "KOF00003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 159501 160031 . - . gene_id "W7K_06580"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 159501 160031 . - . gene_id "W7K_06580"; transcript_id "KOF00004"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 159501 160031 . - . gene_id "W7K_06580"; transcript_id "KOF00004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00004-1"; +contig34 ena CDS 159504 160031 . - 0 gene_id "W7K_06580"; transcript_id "KOF00004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00004"; +contig34 ena start_codon 160029 160031 . - 0 gene_id "W7K_06580"; transcript_id "KOF00004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 159501 159503 . - 0 gene_id "W7K_06580"; transcript_id "KOF00004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 160067 160513 . - . gene_id "W7K_06585"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 160067 160513 . - . gene_id "W7K_06585"; transcript_id "KOF00005"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 160067 160513 . - . gene_id "W7K_06585"; transcript_id "KOF00005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00005-1"; +contig34 ena CDS 160070 160513 . - 0 gene_id "W7K_06585"; transcript_id "KOF00005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00005"; +contig34 ena start_codon 160511 160513 . - 0 gene_id "W7K_06585"; transcript_id "KOF00005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 160067 160069 . - 0 gene_id "W7K_06585"; transcript_id "KOF00005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 160506 160700 . - . gene_id "W7K_06590"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 160506 160700 . - . gene_id "W7K_06590"; transcript_id "KOF00006"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 160506 160700 . - . gene_id "W7K_06590"; transcript_id "KOF00006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00006-1"; +contig34 ena CDS 160509 160700 . - 0 gene_id "W7K_06590"; transcript_id "KOF00006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00006"; +contig34 ena start_codon 160698 160700 . - 0 gene_id "W7K_06590"; transcript_id "KOF00006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 160506 160508 . - 0 gene_id "W7K_06590"; transcript_id "KOF00006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 161193 161510 . + . gene_id "W7K_06600"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 161193 161510 . + . gene_id "W7K_06600"; transcript_id "KOF00007"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 161193 161510 . + . gene_id "W7K_06600"; transcript_id "KOF00007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00007-1"; +contig34 ena CDS 161193 161507 . + 0 gene_id "W7K_06600"; transcript_id "KOF00007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00007"; +contig34 ena start_codon 161193 161195 . + 0 gene_id "W7K_06600"; transcript_id "KOF00007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 161508 161510 . + 0 gene_id "W7K_06600"; transcript_id "KOF00007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 161560 161907 . - . gene_id "W7K_06605"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 161560 161907 . - . gene_id "W7K_06605"; transcript_id "KOF00008"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 161560 161907 . - . gene_id "W7K_06605"; transcript_id "KOF00008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00008-1"; +contig34 ena CDS 161563 161907 . - 0 gene_id "W7K_06605"; transcript_id "KOF00008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00008"; +contig34 ena start_codon 161905 161907 . - 0 gene_id "W7K_06605"; transcript_id "KOF00008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 161560 161562 . - 0 gene_id "W7K_06605"; transcript_id "KOF00008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 162041 163477 . - . gene_id "W7K_06610"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 162041 163477 . - . gene_id "W7K_06610"; transcript_id "KOF00009"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 162041 163477 . - . gene_id "W7K_06610"; transcript_id "KOF00009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00009-1"; +contig34 ena CDS 162044 163477 . - 0 gene_id "W7K_06610"; transcript_id "KOF00009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00009"; +contig34 ena start_codon 163475 163477 . - 0 gene_id "W7K_06610"; transcript_id "KOF00009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 162041 162043 . - 0 gene_id "W7K_06610"; transcript_id "KOF00009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 163474 164358 . - . gene_id "W7K_06615"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 163474 164358 . - . gene_id "W7K_06615"; transcript_id "KOF00010"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 163474 164358 . - . gene_id "W7K_06615"; transcript_id "KOF00010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00010-1"; +contig34 ena CDS 163477 164358 . - 0 gene_id "W7K_06615"; transcript_id "KOF00010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00010"; +contig34 ena start_codon 164356 164358 . - 0 gene_id "W7K_06615"; transcript_id "KOF00010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 163474 163476 . - 0 gene_id "W7K_06615"; transcript_id "KOF00010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 164360 164569 . - . gene_id "W7K_06620"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 164360 164569 . - . gene_id "W7K_06620"; transcript_id "KOF00011"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 164360 164569 . - . gene_id "W7K_06620"; transcript_id "KOF00011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00011-1"; +contig34 ena CDS 164363 164569 . - 0 gene_id "W7K_06620"; transcript_id "KOF00011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00011"; +contig34 ena start_codon 164567 164569 . - 0 gene_id "W7K_06620"; transcript_id "KOF00011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 164360 164362 . - 0 gene_id "W7K_06620"; transcript_id "KOF00011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 164574 166364 . - . gene_id "W7K_06625"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 164574 166364 . - . gene_id "W7K_06625"; transcript_id "KOF00012"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 164574 166364 . - . gene_id "W7K_06625"; transcript_id "KOF00012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00012-1"; +contig34 ena CDS 164577 166364 . - 0 gene_id "W7K_06625"; transcript_id "KOF00012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00012"; +contig34 ena start_codon 166362 166364 . - 0 gene_id "W7K_06625"; transcript_id "KOF00012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 164574 164576 . - 0 gene_id "W7K_06625"; transcript_id "KOF00012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 166615 167409 . + . gene_id "W7K_06630"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 166615 167409 . + . gene_id "W7K_06630"; transcript_id "KOF00013"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 166615 167409 . + . gene_id "W7K_06630"; transcript_id "KOF00013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00013-1"; +contig34 ena CDS 166615 167406 . + 0 gene_id "W7K_06630"; transcript_id "KOF00013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00013"; +contig34 ena start_codon 166615 166617 . + 0 gene_id "W7K_06630"; transcript_id "KOF00013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 167407 167409 . + 0 gene_id "W7K_06630"; transcript_id "KOF00013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 167445 168266 . - . gene_id "W7K_06635"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 167445 168266 . - . gene_id "W7K_06635"; transcript_id "KOF00014"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 167445 168266 . - . gene_id "W7K_06635"; transcript_id "KOF00014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00014-1"; +contig34 ena CDS 167448 168266 . - 0 gene_id "W7K_06635"; transcript_id "KOF00014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00014"; +contig34 ena start_codon 168264 168266 . - 0 gene_id "W7K_06635"; transcript_id "KOF00014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 167445 167447 . - 0 gene_id "W7K_06635"; transcript_id "KOF00014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 168623 173350 . + . gene_id "W7K_06640"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 168623 173350 . + . gene_id "W7K_06640"; transcript_id "KOF00015"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 168623 173350 . + . gene_id "W7K_06640"; transcript_id "KOF00015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00015-1"; +contig34 ena CDS 168623 173347 . + 0 gene_id "W7K_06640"; transcript_id "KOF00015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00015"; +contig34 ena start_codon 168623 168625 . + 0 gene_id "W7K_06640"; transcript_id "KOF00015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 173348 173350 . + 0 gene_id "W7K_06640"; transcript_id "KOF00015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 174855 175250 . + . gene_id "W7K_06650"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 174855 175250 . + . gene_id "W7K_06650"; transcript_id "KOF00016"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 174855 175250 . + . gene_id "W7K_06650"; transcript_id "KOF00016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00016-1"; +contig34 ena CDS 174855 175247 . + 0 gene_id "W7K_06650"; transcript_id "KOF00016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00016"; +contig34 ena start_codon 174855 174857 . + 0 gene_id "W7K_06650"; transcript_id "KOF00016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 175248 175250 . + 0 gene_id "W7K_06650"; transcript_id "KOF00016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 175300 175674 . - . gene_id "W7K_06655"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 175300 175674 . - . gene_id "W7K_06655"; transcript_id "KOF00017"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 175300 175674 . - . gene_id "W7K_06655"; transcript_id "KOF00017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00017-1"; +contig34 ena CDS 175303 175674 . - 0 gene_id "W7K_06655"; transcript_id "KOF00017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00017"; +contig34 ena start_codon 175672 175674 . - 0 gene_id "W7K_06655"; transcript_id "KOF00017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 175300 175302 . - 0 gene_id "W7K_06655"; transcript_id "KOF00017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 176278 176607 . + . gene_id "W7K_06660"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 176278 176607 . + . gene_id "W7K_06660"; transcript_id "KOF00018"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 176278 176607 . + . gene_id "W7K_06660"; transcript_id "KOF00018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00018-1"; +contig34 ena CDS 176278 176604 . + 0 gene_id "W7K_06660"; transcript_id "KOF00018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00018"; +contig34 ena start_codon 176278 176280 . + 0 gene_id "W7K_06660"; transcript_id "KOF00018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 176605 176607 . + 0 gene_id "W7K_06660"; transcript_id "KOF00018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 176601 177005 . - . gene_id "W7K_06665"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 176601 177005 . - . gene_id "W7K_06665"; transcript_id "KOF00019"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 176601 177005 . - . gene_id "W7K_06665"; transcript_id "KOF00019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00019-1"; +contig34 ena CDS 176604 177005 . - 0 gene_id "W7K_06665"; transcript_id "KOF00019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00019"; +contig34 ena start_codon 177003 177005 . - 0 gene_id "W7K_06665"; transcript_id "KOF00019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 176601 176603 . - 0 gene_id "W7K_06665"; transcript_id "KOF00019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 177200 178180 . + . gene_id "W7K_06670"; gene_name "moaA"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 177200 178180 . + . gene_id "W7K_06670"; transcript_id "KOF00020"; gene_name "moaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "moaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 177200 178180 . + . gene_id "W7K_06670"; transcript_id "KOF00020"; exon_number "1"; gene_name "moaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "moaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00020-1"; +contig34 ena CDS 177200 178177 . + 0 gene_id "W7K_06670"; transcript_id "KOF00020"; exon_number "1"; gene_name "moaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "moaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00020"; +contig34 ena start_codon 177200 177202 . + 0 gene_id "W7K_06670"; transcript_id "KOF00020"; exon_number "1"; gene_name "moaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "moaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 178178 178180 . + 0 gene_id "W7K_06670"; transcript_id "KOF00020"; exon_number "1"; gene_name "moaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "moaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 178189 179187 . + . gene_id "W7K_06675"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 178189 179187 . + . gene_id "W7K_06675"; transcript_id "KOF00021"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 178189 179187 . + . gene_id "W7K_06675"; transcript_id "KOF00021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00021-1"; +contig34 ena CDS 178189 179184 . + 0 gene_id "W7K_06675"; transcript_id "KOF00021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00021"; +contig34 ena start_codon 178189 178191 . + 0 gene_id "W7K_06675"; transcript_id "KOF00021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 179185 179187 . + 0 gene_id "W7K_06675"; transcript_id "KOF00021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 179184 180437 . + . gene_id "W7K_06680"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 179184 180437 . + . gene_id "W7K_06680"; transcript_id "KOF00022"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 179184 180437 . + . gene_id "W7K_06680"; transcript_id "KOF00022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00022-1"; +contig34 ena CDS 179184 180434 . + 0 gene_id "W7K_06680"; transcript_id "KOF00022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00022"; +contig34 ena start_codon 179184 179186 . + 0 gene_id "W7K_06680"; transcript_id "KOF00022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 180435 180437 . + 0 gene_id "W7K_06680"; transcript_id "KOF00022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 180437 180697 . + . gene_id "W7K_06685"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 180437 180697 . + . gene_id "W7K_06685"; transcript_id "KOF00023"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 180437 180697 . + . gene_id "W7K_06685"; transcript_id "KOF00023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00023-1"; +contig34 ena CDS 180437 180694 . + 0 gene_id "W7K_06685"; transcript_id "KOF00023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00023"; +contig34 ena start_codon 180437 180439 . + 0 gene_id "W7K_06685"; transcript_id "KOF00023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 180695 180697 . + 0 gene_id "W7K_06685"; transcript_id "KOF00023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 180701 181165 . + . gene_id "W7K_06690"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 180701 181165 . + . gene_id "W7K_06690"; transcript_id "KOF00024"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 180701 181165 . + . gene_id "W7K_06690"; transcript_id "KOF00024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00024-1"; +contig34 ena CDS 180701 181162 . + 0 gene_id "W7K_06690"; transcript_id "KOF00024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00024"; +contig34 ena start_codon 180701 180703 . + 0 gene_id "W7K_06690"; transcript_id "KOF00024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 181163 181165 . + 0 gene_id "W7K_06690"; transcript_id "KOF00024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 181238 181780 . + . gene_id "W7K_06695"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 181238 181780 . + . gene_id "W7K_06695"; transcript_id "KOF00025"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 181238 181780 . + . gene_id "W7K_06695"; transcript_id "KOF00025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00025-1"; +contig34 ena CDS 181238 181777 . + 0 gene_id "W7K_06695"; transcript_id "KOF00025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00025"; +contig34 ena start_codon 181238 181240 . + 0 gene_id "W7K_06695"; transcript_id "KOF00025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 181778 181780 . + 0 gene_id "W7K_06695"; transcript_id "KOF00025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 181777 182142 . + . gene_id "W7K_06700"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 181777 182142 . + . gene_id "W7K_06700"; transcript_id "KOF00026"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 181777 182142 . + . gene_id "W7K_06700"; transcript_id "KOF00026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00026-1"; +contig34 ena CDS 181777 182139 . + 0 gene_id "W7K_06700"; transcript_id "KOF00026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00026"; +contig34 ena start_codon 181777 181779 . + 0 gene_id "W7K_06700"; transcript_id "KOF00026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 182140 182142 . + 0 gene_id "W7K_06700"; transcript_id "KOF00026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 182287 183705 . + . gene_id "W7K_06705"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 182287 183705 . + . gene_id "W7K_06705"; transcript_id "KOF00027"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 182287 183705 . + . gene_id "W7K_06705"; transcript_id "KOF00027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00027-1"; +contig34 ena CDS 182287 183702 . + 0 gene_id "W7K_06705"; transcript_id "KOF00027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00027"; +contig34 ena start_codon 182287 182289 . + 0 gene_id "W7K_06705"; transcript_id "KOF00027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 183703 183705 . + 0 gene_id "W7K_06705"; transcript_id "KOF00027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 183778 187521 . + . gene_id "W7K_06710"; gene_name "narZ"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 183778 187521 . + . gene_id "W7K_06710"; transcript_id "KOF00028"; gene_name "narZ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narZ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 183778 187521 . + . gene_id "W7K_06710"; transcript_id "KOF00028"; exon_number "1"; gene_name "narZ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narZ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00028-1"; +contig34 ena CDS 183778 187518 . + 0 gene_id "W7K_06710"; transcript_id "KOF00028"; exon_number "1"; gene_name "narZ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narZ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00028"; +contig34 ena start_codon 183778 183780 . + 0 gene_id "W7K_06710"; transcript_id "KOF00028"; exon_number "1"; gene_name "narZ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narZ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 187519 187521 . + 0 gene_id "W7K_06710"; transcript_id "KOF00028"; exon_number "1"; gene_name "narZ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narZ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 187521 189065 . + . gene_id "W7K_06715"; gene_name "narH"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 187521 189065 . + . gene_id "W7K_06715"; transcript_id "KOF00029"; gene_name "narH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 187521 189065 . + . gene_id "W7K_06715"; transcript_id "KOF00029"; exon_number "1"; gene_name "narH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00029-1"; +contig34 ena CDS 187521 189062 . + 0 gene_id "W7K_06715"; transcript_id "KOF00029"; exon_number "1"; gene_name "narH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00029"; +contig34 ena start_codon 187521 187523 . + 0 gene_id "W7K_06715"; transcript_id "KOF00029"; exon_number "1"; gene_name "narH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 189063 189065 . + 0 gene_id "W7K_06715"; transcript_id "KOF00029"; exon_number "1"; gene_name "narH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "narH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 189065 189745 . + . gene_id "W7K_06720"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 189065 189745 . + . gene_id "W7K_06720"; transcript_id "KOF00030"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 189065 189745 . + . gene_id "W7K_06720"; transcript_id "KOF00030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00030-1"; +contig34 ena CDS 189065 189742 . + 0 gene_id "W7K_06720"; transcript_id "KOF00030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00030"; +contig34 ena start_codon 189065 189067 . + 0 gene_id "W7K_06720"; transcript_id "KOF00030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 189743 189745 . + 0 gene_id "W7K_06720"; transcript_id "KOF00030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 189742 190449 . + . gene_id "W7K_06725"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 189742 190449 . + . gene_id "W7K_06725"; transcript_id "KOF00031"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 189742 190449 . + . gene_id "W7K_06725"; transcript_id "KOF00031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00031-1"; +contig34 ena CDS 189742 190446 . + 0 gene_id "W7K_06725"; transcript_id "KOF00031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00031"; +contig34 ena start_codon 189742 189744 . + 0 gene_id "W7K_06725"; transcript_id "KOF00031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 190447 190449 . + 0 gene_id "W7K_06725"; transcript_id "KOF00031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 190453 191352 . + . gene_id "W7K_06730"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 190453 191352 . + . gene_id "W7K_06730"; transcript_id "KOF00032"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 190453 191352 . + . gene_id "W7K_06730"; transcript_id "KOF00032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00032-1"; +contig34 ena CDS 190453 191349 . + 0 gene_id "W7K_06730"; transcript_id "KOF00032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00032"; +contig34 ena start_codon 190453 190455 . + 0 gene_id "W7K_06730"; transcript_id "KOF00032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 191350 191352 . + 0 gene_id "W7K_06730"; transcript_id "KOF00032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 191376 192707 . + . gene_id "W7K_06735"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 191376 192707 . + . gene_id "W7K_06735"; transcript_id "KOF00033"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 191376 192707 . + . gene_id "W7K_06735"; transcript_id "KOF00033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00033-1"; +contig34 ena CDS 191376 192704 . + 0 gene_id "W7K_06735"; transcript_id "KOF00033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00033"; +contig34 ena start_codon 191376 191378 . + 0 gene_id "W7K_06735"; transcript_id "KOF00033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 192705 192707 . + 0 gene_id "W7K_06735"; transcript_id "KOF00033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 192850 194064 . + . gene_id "W7K_06740"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 192850 194064 . + . gene_id "W7K_06740"; transcript_id "KOF00034"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 192850 194064 . + . gene_id "W7K_06740"; transcript_id "KOF00034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00034-1"; +contig34 ena CDS 192850 194061 . + 0 gene_id "W7K_06740"; transcript_id "KOF00034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00034"; +contig34 ena start_codon 192850 192852 . + 0 gene_id "W7K_06740"; transcript_id "KOF00034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 194062 194064 . + 0 gene_id "W7K_06740"; transcript_id "KOF00034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 194076 194852 . + . gene_id "W7K_06745"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 194076 194852 . + . gene_id "W7K_06745"; transcript_id "KOF00035"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 194076 194852 . + . gene_id "W7K_06745"; transcript_id "KOF00035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00035-1"; +contig34 ena CDS 194076 194849 . + 0 gene_id "W7K_06745"; transcript_id "KOF00035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00035"; +contig34 ena start_codon 194076 194078 . + 0 gene_id "W7K_06745"; transcript_id "KOF00035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 194850 194852 . + 0 gene_id "W7K_06745"; transcript_id "KOF00035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 194872 195615 . + . gene_id "W7K_06750"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 194872 195615 . + . gene_id "W7K_06750"; transcript_id "KOF00036"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 194872 195615 . + . gene_id "W7K_06750"; transcript_id "KOF00036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00036-1"; +contig34 ena CDS 194872 195612 . + 0 gene_id "W7K_06750"; transcript_id "KOF00036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00036"; +contig34 ena start_codon 194872 194874 . + 0 gene_id "W7K_06750"; transcript_id "KOF00036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 195613 195615 . + 0 gene_id "W7K_06750"; transcript_id "KOF00036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 195619 196302 . + . gene_id "W7K_06755"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 195619 196302 . + . gene_id "W7K_06755"; transcript_id "KOF00037"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 195619 196302 . + . gene_id "W7K_06755"; transcript_id "KOF00037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00037-1"; +contig34 ena CDS 195619 196299 . + 0 gene_id "W7K_06755"; transcript_id "KOF00037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00037"; +contig34 ena start_codon 195619 195621 . + 0 gene_id "W7K_06755"; transcript_id "KOF00037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 196300 196302 . + 0 gene_id "W7K_06755"; transcript_id "KOF00037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 196292 196960 . + . gene_id "W7K_06760"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 196292 196960 . + . gene_id "W7K_06760"; transcript_id "KOF00038"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 196292 196960 . + . gene_id "W7K_06760"; transcript_id "KOF00038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00038-1"; +contig34 ena CDS 196292 196957 . + 0 gene_id "W7K_06760"; transcript_id "KOF00038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00038"; +contig34 ena start_codon 196292 196294 . + 0 gene_id "W7K_06760"; transcript_id "KOF00038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 196958 196960 . + 0 gene_id "W7K_06760"; transcript_id "KOF00038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 197054 198583 . - . gene_id "W7K_06765"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 197054 198583 . - . gene_id "W7K_06765"; transcript_id "KOF00039"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 197054 198583 . - . gene_id "W7K_06765"; transcript_id "KOF00039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00039-1"; +contig34 ena CDS 197057 198583 . - 0 gene_id "W7K_06765"; transcript_id "KOF00039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00039"; +contig34 ena start_codon 198581 198583 . - 0 gene_id "W7K_06765"; transcript_id "KOF00039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 197054 197056 . - 0 gene_id "W7K_06765"; transcript_id "KOF00039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 198580 199008 . - . gene_id "W7K_06770"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 198580 199008 . - . gene_id "W7K_06770"; transcript_id "KOF00040"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 198580 199008 . - . gene_id "W7K_06770"; transcript_id "KOF00040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00040-1"; +contig34 ena CDS 198583 199008 . - 0 gene_id "W7K_06770"; transcript_id "KOF00040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00040"; +contig34 ena start_codon 199006 199008 . - 0 gene_id "W7K_06770"; transcript_id "KOF00040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 198580 198582 . - 0 gene_id "W7K_06770"; transcript_id "KOF00040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 199181 199438 . + . gene_id "W7K_06775"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 199181 199438 . + . gene_id "W7K_06775"; transcript_id "KOF00041"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 199181 199438 . + . gene_id "W7K_06775"; transcript_id "KOF00041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00041-1"; +contig34 ena CDS 199181 199435 . + 0 gene_id "W7K_06775"; transcript_id "KOF00041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00041"; +contig34 ena start_codon 199181 199183 . + 0 gene_id "W7K_06775"; transcript_id "KOF00041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 199436 199438 . + 0 gene_id "W7K_06775"; transcript_id "KOF00041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 200291 200605 . - . gene_id "W7K_06780"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 200291 200605 . - . gene_id "W7K_06780"; transcript_id "KOF00042"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 200291 200605 . - . gene_id "W7K_06780"; transcript_id "KOF00042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00042-1"; +contig34 ena CDS 200294 200605 . - 0 gene_id "W7K_06780"; transcript_id "KOF00042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00042"; +contig34 ena start_codon 200603 200605 . - 0 gene_id "W7K_06780"; transcript_id "KOF00042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 200291 200293 . - 0 gene_id "W7K_06780"; transcript_id "KOF00042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 200602 201333 . - . gene_id "W7K_06785"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 200602 201333 . - . gene_id "W7K_06785"; transcript_id "KOF00043"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 200602 201333 . - . gene_id "W7K_06785"; transcript_id "KOF00043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00043-1"; +contig34 ena CDS 200605 201333 . - 0 gene_id "W7K_06785"; transcript_id "KOF00043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00043"; +contig34 ena start_codon 201331 201333 . - 0 gene_id "W7K_06785"; transcript_id "KOF00043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 200602 200604 . - 0 gene_id "W7K_06785"; transcript_id "KOF00043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 201462 201926 . + . gene_id "W7K_06790"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 201462 201926 . + . gene_id "W7K_06790"; transcript_id "KOF00044"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 201462 201926 . + . gene_id "W7K_06790"; transcript_id "KOF00044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00044-1"; +contig34 ena CDS 201462 201923 . + 0 gene_id "W7K_06790"; transcript_id "KOF00044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00044"; +contig34 ena start_codon 201462 201464 . + 0 gene_id "W7K_06790"; transcript_id "KOF00044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 201924 201926 . + 0 gene_id "W7K_06790"; transcript_id "KOF00044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 202418 203098 . + . gene_id "W7K_06795"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 202418 203098 . + . gene_id "W7K_06795"; transcript_id "KOF00045"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 202418 203098 . + . gene_id "W7K_06795"; transcript_id "KOF00045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00045-1"; +contig34 ena CDS 202418 203095 . + 0 gene_id "W7K_06795"; transcript_id "KOF00045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00045"; +contig34 ena start_codon 202418 202420 . + 0 gene_id "W7K_06795"; transcript_id "KOF00045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 203096 203098 . + 0 gene_id "W7K_06795"; transcript_id "KOF00045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 203115 203645 . + . gene_id "W7K_06800"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 203115 203645 . + . gene_id "W7K_06800"; transcript_id "KOF00176"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 203115 203645 . + . gene_id "W7K_06800"; transcript_id "KOF00176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00176-1"; +contig34 ena CDS 203115 203642 . + 0 gene_id "W7K_06800"; transcript_id "KOF00176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00176"; +contig34 ena start_codon 203115 203117 . + 0 gene_id "W7K_06800"; transcript_id "KOF00176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 203643 203645 . + 0 gene_id "W7K_06800"; transcript_id "KOF00176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 203715 204695 . + . gene_id "W7K_06805"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 203715 204695 . + . gene_id "W7K_06805"; transcript_id "KOF00046"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 203715 204695 . + . gene_id "W7K_06805"; transcript_id "KOF00046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00046-1"; +contig34 ena CDS 203715 204692 . + 0 gene_id "W7K_06805"; transcript_id "KOF00046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00046"; +contig34 ena start_codon 203715 203717 . + 0 gene_id "W7K_06805"; transcript_id "KOF00046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 204693 204695 . + 0 gene_id "W7K_06805"; transcript_id "KOF00046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 204754 205305 . + . gene_id "W7K_06810"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 204754 205305 . + . gene_id "W7K_06810"; transcript_id "KOF00047"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 204754 205305 . + . gene_id "W7K_06810"; transcript_id "KOF00047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00047-1"; +contig34 ena CDS 204754 205302 . + 0 gene_id "W7K_06810"; transcript_id "KOF00047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00047"; +contig34 ena start_codon 204754 204756 . + 0 gene_id "W7K_06810"; transcript_id "KOF00047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 205303 205305 . + 0 gene_id "W7K_06810"; transcript_id "KOF00047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 205426 206010 . + . gene_id "W7K_06815"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 205426 206010 . + . gene_id "W7K_06815"; transcript_id "KOF00048"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 205426 206010 . + . gene_id "W7K_06815"; transcript_id "KOF00048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00048-1"; +contig34 ena CDS 205426 206007 . + 0 gene_id "W7K_06815"; transcript_id "KOF00048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00048"; +contig34 ena start_codon 205426 205428 . + 0 gene_id "W7K_06815"; transcript_id "KOF00048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 206008 206010 . + 0 gene_id "W7K_06815"; transcript_id "KOF00048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 206068 206505 . + . gene_id "W7K_06820"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 206068 206505 . + . gene_id "W7K_06820"; transcript_id "KOF00049"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 206068 206505 . + . gene_id "W7K_06820"; transcript_id "KOF00049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00049-1"; +contig34 ena CDS 206068 206502 . + 0 gene_id "W7K_06820"; transcript_id "KOF00049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00049"; +contig34 ena start_codon 206068 206070 . + 0 gene_id "W7K_06820"; transcript_id "KOF00049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 206503 206505 . + 0 gene_id "W7K_06820"; transcript_id "KOF00049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 206515 207420 . + . gene_id "W7K_06825"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 206515 207420 . + . gene_id "W7K_06825"; transcript_id "KOF00050"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 206515 207420 . + . gene_id "W7K_06825"; transcript_id "KOF00050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00050-1"; +contig34 ena CDS 206515 207417 . + 0 gene_id "W7K_06825"; transcript_id "KOF00050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00050"; +contig34 ena start_codon 206515 206517 . + 0 gene_id "W7K_06825"; transcript_id "KOF00050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 207418 207420 . + 0 gene_id "W7K_06825"; transcript_id "KOF00050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 207417 208580 . + . gene_id "W7K_06830"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 207417 208580 . + . gene_id "W7K_06830"; transcript_id "KOF00051"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 207417 208580 . + . gene_id "W7K_06830"; transcript_id "KOF00051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00051-1"; +contig34 ena CDS 207417 208577 . + 0 gene_id "W7K_06830"; transcript_id "KOF00051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00051"; +contig34 ena start_codon 207417 207419 . + 0 gene_id "W7K_06830"; transcript_id "KOF00051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 208578 208580 . + 0 gene_id "W7K_06830"; transcript_id "KOF00051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 208577 209104 . + . gene_id "W7K_06835"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 208577 209104 . + . gene_id "W7K_06835"; transcript_id "KOF00052"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 208577 209104 . + . gene_id "W7K_06835"; transcript_id "KOF00052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00052-1"; +contig34 ena CDS 208577 209101 . + 0 gene_id "W7K_06835"; transcript_id "KOF00052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00052"; +contig34 ena start_codon 208577 208579 . + 0 gene_id "W7K_06835"; transcript_id "KOF00052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 209102 209104 . + 0 gene_id "W7K_06835"; transcript_id "KOF00052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 209101 211482 . + . gene_id "W7K_06840"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 209101 211482 . + . gene_id "W7K_06840"; transcript_id "KOF00053"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 209101 211482 . + . gene_id "W7K_06840"; transcript_id "KOF00053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00053-1"; +contig34 ena CDS 209101 211479 . + 0 gene_id "W7K_06840"; transcript_id "KOF00053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00053"; +contig34 ena start_codon 209101 209103 . + 0 gene_id "W7K_06840"; transcript_id "KOF00053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 211480 211482 . + 0 gene_id "W7K_06840"; transcript_id "KOF00053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 211479 212912 . + . gene_id "W7K_06845"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 211479 212912 . + . gene_id "W7K_06845"; transcript_id "KOF00054"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 211479 212912 . + . gene_id "W7K_06845"; transcript_id "KOF00054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00054-1"; +contig34 ena CDS 211479 212909 . + 0 gene_id "W7K_06845"; transcript_id "KOF00054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00054"; +contig34 ena start_codon 211479 211481 . + 0 gene_id "W7K_06845"; transcript_id "KOF00054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 212910 212912 . + 0 gene_id "W7K_06845"; transcript_id "KOF00054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 212920 214119 . + . gene_id "W7K_06850"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 212920 214119 . + . gene_id "W7K_06850"; transcript_id "KOF00055"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 212920 214119 . + . gene_id "W7K_06850"; transcript_id "KOF00055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00055-1"; +contig34 ena CDS 212920 214116 . + 0 gene_id "W7K_06850"; transcript_id "KOF00055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00055"; +contig34 ena start_codon 212920 212922 . + 0 gene_id "W7K_06850"; transcript_id "KOF00055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 214117 214119 . + 0 gene_id "W7K_06850"; transcript_id "KOF00055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 214374 215564 . + . gene_id "W7K_06855"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 214374 215564 . + . gene_id "W7K_06855"; transcript_id "KOF00056"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 214374 215564 . + . gene_id "W7K_06855"; transcript_id "KOF00056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00056-1"; +contig34 ena CDS 214374 215561 . + 0 gene_id "W7K_06855"; transcript_id "KOF00056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00056"; +contig34 ena start_codon 214374 214376 . + 0 gene_id "W7K_06855"; transcript_id "KOF00056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 215562 215564 . + 0 gene_id "W7K_06855"; transcript_id "KOF00056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 215769 228161 . + . gene_id "W7K_06860"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 215769 228161 . + . gene_id "W7K_06860"; transcript_id "KOF00057"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 215769 228161 . + . gene_id "W7K_06860"; transcript_id "KOF00057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00057-1"; +contig34 ena CDS 215769 228158 . + 0 gene_id "W7K_06860"; transcript_id "KOF00057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00057"; +contig34 ena start_codon 215769 215771 . + 0 gene_id "W7K_06860"; transcript_id "KOF00057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 228159 228161 . + 0 gene_id "W7K_06860"; transcript_id "KOF00057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 228507 229121 . - . gene_id "W7K_06865"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 228507 229121 . - . gene_id "W7K_06865"; transcript_id "KOF00058"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 228507 229121 . - . gene_id "W7K_06865"; transcript_id "KOF00058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00058-1"; +contig34 ena CDS 228510 229121 . - 0 gene_id "W7K_06865"; transcript_id "KOF00058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00058"; +contig34 ena start_codon 229119 229121 . - 0 gene_id "W7K_06865"; transcript_id "KOF00058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 228507 228509 . - 0 gene_id "W7K_06865"; transcript_id "KOF00058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 229118 229480 . - . gene_id "W7K_06870"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 229118 229480 . - . gene_id "W7K_06870"; transcript_id "KOF00059"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 229118 229480 . - . gene_id "W7K_06870"; transcript_id "KOF00059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00059-1"; +contig34 ena CDS 229121 229480 . - 0 gene_id "W7K_06870"; transcript_id "KOF00059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00059"; +contig34 ena start_codon 229478 229480 . - 0 gene_id "W7K_06870"; transcript_id "KOF00059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 229118 229120 . - 0 gene_id "W7K_06870"; transcript_id "KOF00059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 229477 229923 . - . gene_id "W7K_06875"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 229477 229923 . - . gene_id "W7K_06875"; transcript_id "KOF00060"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 229477 229923 . - . gene_id "W7K_06875"; transcript_id "KOF00060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00060-1"; +contig34 ena CDS 229480 229923 . - 0 gene_id "W7K_06875"; transcript_id "KOF00060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00060"; +contig34 ena start_codon 229921 229923 . - 0 gene_id "W7K_06875"; transcript_id "KOF00060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 229477 229479 . - 0 gene_id "W7K_06875"; transcript_id "KOF00060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 230039 230524 . + . gene_id "W7K_06880"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 230039 230524 . + . gene_id "W7K_06880"; transcript_id "KOF00177"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 230039 230524 . + . gene_id "W7K_06880"; transcript_id "KOF00177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00177-1"; +contig34 ena CDS 230039 230521 . + 0 gene_id "W7K_06880"; transcript_id "KOF00177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00177"; +contig34 ena start_codon 230039 230041 . + 0 gene_id "W7K_06880"; transcript_id "KOF00177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 230522 230524 . + 0 gene_id "W7K_06880"; transcript_id "KOF00177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 230615 230950 . - . gene_id "W7K_06885"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 230615 230950 . - . gene_id "W7K_06885"; transcript_id "KOF00061"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 230615 230950 . - . gene_id "W7K_06885"; transcript_id "KOF00061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00061-1"; +contig34 ena CDS 230618 230950 . - 0 gene_id "W7K_06885"; transcript_id "KOF00061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00061"; +contig34 ena start_codon 230948 230950 . - 0 gene_id "W7K_06885"; transcript_id "KOF00061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 230615 230617 . - 0 gene_id "W7K_06885"; transcript_id "KOF00061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 231152 232768 . + . gene_id "W7K_06890"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 231152 232768 . + . gene_id "W7K_06890"; transcript_id "KOF00062"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 231152 232768 . + . gene_id "W7K_06890"; transcript_id "KOF00062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00062-1"; +contig34 ena CDS 231152 232765 . + 0 gene_id "W7K_06890"; transcript_id "KOF00062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00062"; +contig34 ena start_codon 231152 231154 . + 0 gene_id "W7K_06890"; transcript_id "KOF00062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 232766 232768 . + 0 gene_id "W7K_06890"; transcript_id "KOF00062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 232807 234591 . + . gene_id "W7K_06895"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 232807 234591 . + . gene_id "W7K_06895"; transcript_id "KOF00063"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 232807 234591 . + . gene_id "W7K_06895"; transcript_id "KOF00063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00063-1"; +contig34 ena CDS 232807 234588 . + 0 gene_id "W7K_06895"; transcript_id "KOF00063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00063"; +contig34 ena start_codon 232807 232809 . + 0 gene_id "W7K_06895"; transcript_id "KOF00063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 234589 234591 . + 0 gene_id "W7K_06895"; transcript_id "KOF00063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 234602 235015 . + . gene_id "W7K_06900"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 234602 235015 . + . gene_id "W7K_06900"; transcript_id "KOF00064"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 234602 235015 . + . gene_id "W7K_06900"; transcript_id "KOF00064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00064-1"; +contig34 ena CDS 234602 235012 . + 0 gene_id "W7K_06900"; transcript_id "KOF00064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00064"; +contig34 ena start_codon 234602 234604 . + 0 gene_id "W7K_06900"; transcript_id "KOF00064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 235013 235015 . + 0 gene_id "W7K_06900"; transcript_id "KOF00064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 235055 235720 . + . gene_id "W7K_06905"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 235055 235720 . + . gene_id "W7K_06905"; transcript_id "KOF00065"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 235055 235720 . + . gene_id "W7K_06905"; transcript_id "KOF00065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00065-1"; +contig34 ena CDS 235055 235717 . + 0 gene_id "W7K_06905"; transcript_id "KOF00065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00065"; +contig34 ena start_codon 235055 235057 . + 0 gene_id "W7K_06905"; transcript_id "KOF00065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 235718 235720 . + 0 gene_id "W7K_06905"; transcript_id "KOF00065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 235763 237508 . + . gene_id "W7K_06910"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 235763 237508 . + . gene_id "W7K_06910"; transcript_id "KOF00066"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 235763 237508 . + . gene_id "W7K_06910"; transcript_id "KOF00066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00066-1"; +contig34 ena CDS 235763 237505 . + 0 gene_id "W7K_06910"; transcript_id "KOF00066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00066"; +contig34 ena start_codon 235763 235765 . + 0 gene_id "W7K_06910"; transcript_id "KOF00066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 237506 237508 . + 0 gene_id "W7K_06910"; transcript_id "KOF00066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 237607 237936 . + . gene_id "W7K_06915"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 237607 237936 . + . gene_id "W7K_06915"; transcript_id "KOF00067"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 237607 237936 . + . gene_id "W7K_06915"; transcript_id "KOF00067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00067-1"; +contig34 ena CDS 237607 237933 . + 0 gene_id "W7K_06915"; transcript_id "KOF00067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00067"; +contig34 ena start_codon 237607 237609 . + 0 gene_id "W7K_06915"; transcript_id "KOF00067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 237934 237936 . + 0 gene_id "W7K_06915"; transcript_id "KOF00067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 238031 238429 . - . gene_id "W7K_06920"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 238031 238429 . - . gene_id "W7K_06920"; transcript_id "KOF00068"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 238031 238429 . - . gene_id "W7K_06920"; transcript_id "KOF00068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00068-1"; +contig34 ena CDS 238034 238429 . - 0 gene_id "W7K_06920"; transcript_id "KOF00068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00068"; +contig34 ena start_codon 238427 238429 . - 0 gene_id "W7K_06920"; transcript_id "KOF00068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 238031 238033 . - 0 gene_id "W7K_06920"; transcript_id "KOF00068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 238621 239124 . + . gene_id "W7K_06925"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 238621 239124 . + . gene_id "W7K_06925"; transcript_id "KOF00069"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 238621 239124 . + . gene_id "W7K_06925"; transcript_id "KOF00069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00069-1"; +contig34 ena CDS 238621 239121 . + 0 gene_id "W7K_06925"; transcript_id "KOF00069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00069"; +contig34 ena start_codon 238621 238623 . + 0 gene_id "W7K_06925"; transcript_id "KOF00069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 239122 239124 . + 0 gene_id "W7K_06925"; transcript_id "KOF00069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 239207 240163 . + . gene_id "W7K_06930"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 239207 240163 . + . gene_id "W7K_06930"; transcript_id "KOF00070"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 239207 240163 . + . gene_id "W7K_06930"; transcript_id "KOF00070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00070-1"; +contig34 ena CDS 239207 240160 . + 0 gene_id "W7K_06930"; transcript_id "KOF00070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00070"; +contig34 ena start_codon 239207 239209 . + 0 gene_id "W7K_06930"; transcript_id "KOF00070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 240161 240163 . + 0 gene_id "W7K_06930"; transcript_id "KOF00070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 240348 243467 . + . gene_id "W7K_06935"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 240348 243467 . + . gene_id "W7K_06935"; transcript_id "KOF00071"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 240348 243467 . + . gene_id "W7K_06935"; transcript_id "KOF00071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00071-1"; +contig34 ena CDS 240348 243464 . + 0 gene_id "W7K_06935"; transcript_id "KOF00071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00071"; +contig34 ena start_codon 240348 240350 . + 0 gene_id "W7K_06935"; transcript_id "KOF00071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 243465 243467 . + 0 gene_id "W7K_06935"; transcript_id "KOF00071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 243543 244250 . + . gene_id "W7K_06940"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 243543 244250 . + . gene_id "W7K_06940"; transcript_id "KOF00178"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 243543 244250 . + . gene_id "W7K_06940"; transcript_id "KOF00178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00178-1"; +contig34 ena CDS 243543 244247 . + 0 gene_id "W7K_06940"; transcript_id "KOF00178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00178"; +contig34 ena start_codon 243543 243545 . + 0 gene_id "W7K_06940"; transcript_id "KOF00178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 244248 244250 . + 0 gene_id "W7K_06940"; transcript_id "KOF00178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 244310 245074 . + . gene_id "W7K_06945"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 244310 245074 . + . gene_id "W7K_06945"; transcript_id "KOF00072"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 244310 245074 . + . gene_id "W7K_06945"; transcript_id "KOF00072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00072-1"; +contig34 ena CDS 244310 245071 . + 0 gene_id "W7K_06945"; transcript_id "KOF00072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00072"; +contig34 ena start_codon 244310 244312 . + 0 gene_id "W7K_06945"; transcript_id "KOF00072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 245072 245074 . + 0 gene_id "W7K_06945"; transcript_id "KOF00072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 245165 246619 . + . gene_id "W7K_06950"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 245165 246619 . + . gene_id "W7K_06950"; transcript_id "KOF00073"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 245165 246619 . + . gene_id "W7K_06950"; transcript_id "KOF00073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00073-1"; +contig34 ena CDS 245165 246616 . + 0 gene_id "W7K_06950"; transcript_id "KOF00073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00073"; +contig34 ena start_codon 245165 245167 . + 0 gene_id "W7K_06950"; transcript_id "KOF00073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 246617 246619 . + 0 gene_id "W7K_06950"; transcript_id "KOF00073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 246756 247160 . + . gene_id "W7K_06955"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 246756 247160 . + . gene_id "W7K_06955"; transcript_id "KOF00074"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 246756 247160 . + . gene_id "W7K_06955"; transcript_id "KOF00074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00074-1"; +contig34 ena CDS 246756 247157 . + 0 gene_id "W7K_06955"; transcript_id "KOF00074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00074"; +contig34 ena start_codon 246756 246758 . + 0 gene_id "W7K_06955"; transcript_id "KOF00074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 247158 247160 . + 0 gene_id "W7K_06955"; transcript_id "KOF00074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 247170 248765 . + . gene_id "W7K_06960"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 247170 248765 . + . gene_id "W7K_06960"; transcript_id "KOF00075"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 247170 248765 . + . gene_id "W7K_06960"; transcript_id "KOF00075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00075-1"; +contig34 ena CDS 247170 248762 . + 0 gene_id "W7K_06960"; transcript_id "KOF00075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00075"; +contig34 ena start_codon 247170 247172 . + 0 gene_id "W7K_06960"; transcript_id "KOF00075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 248763 248765 . + 0 gene_id "W7K_06960"; transcript_id "KOF00075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 248836 249177 . + . gene_id "W7K_06965"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 248836 249177 . + . gene_id "W7K_06965"; transcript_id "KOF00076"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 248836 249177 . + . gene_id "W7K_06965"; transcript_id "KOF00076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00076-1"; +contig34 ena CDS 248836 249174 . + 0 gene_id "W7K_06965"; transcript_id "KOF00076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00076"; +contig34 ena start_codon 248836 248838 . + 0 gene_id "W7K_06965"; transcript_id "KOF00076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 249175 249177 . + 0 gene_id "W7K_06965"; transcript_id "KOF00076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 249181 249810 . + . gene_id "W7K_06970"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 249181 249810 . + . gene_id "W7K_06970"; transcript_id "KOF00077"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 249181 249810 . + . gene_id "W7K_06970"; transcript_id "KOF00077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00077-1"; +contig34 ena CDS 249181 249807 . + 0 gene_id "W7K_06970"; transcript_id "KOF00077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00077"; +contig34 ena start_codon 249181 249183 . + 0 gene_id "W7K_06970"; transcript_id "KOF00077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 249808 249810 . + 0 gene_id "W7K_06970"; transcript_id "KOF00077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 249910 251397 . - . gene_id "W7K_06975"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 249910 251397 . - . gene_id "W7K_06975"; transcript_id "KOF00078"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 249910 251397 . - . gene_id "W7K_06975"; transcript_id "KOF00078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00078-1"; +contig34 ena CDS 249913 251397 . - 0 gene_id "W7K_06975"; transcript_id "KOF00078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00078"; +contig34 ena start_codon 251395 251397 . - 0 gene_id "W7K_06975"; transcript_id "KOF00078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 249910 249912 . - 0 gene_id "W7K_06975"; transcript_id "KOF00078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 251874 252290 . + . gene_id "W7K_06980"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 251874 252290 . + . gene_id "W7K_06980"; transcript_id "KOF00079"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 251874 252290 . + . gene_id "W7K_06980"; transcript_id "KOF00079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00079-1"; +contig34 ena CDS 251874 252287 . + 0 gene_id "W7K_06980"; transcript_id "KOF00079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00079"; +contig34 ena start_codon 251874 251876 . + 0 gene_id "W7K_06980"; transcript_id "KOF00079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 252288 252290 . + 0 gene_id "W7K_06980"; transcript_id "KOF00079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 252351 252950 . - . gene_id "W7K_06985"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 252351 252950 . - . gene_id "W7K_06985"; transcript_id "KOF00080"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 252351 252950 . - . gene_id "W7K_06985"; transcript_id "KOF00080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00080-1"; +contig34 ena CDS 252354 252950 . - 0 gene_id "W7K_06985"; transcript_id "KOF00080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00080"; +contig34 ena start_codon 252948 252950 . - 0 gene_id "W7K_06985"; transcript_id "KOF00080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 252351 252353 . - 0 gene_id "W7K_06985"; transcript_id "KOF00080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 253039 255723 . - . gene_id "W7K_06990"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 253039 255723 . - . gene_id "W7K_06990"; transcript_id "KOF00081"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 253039 255723 . - . gene_id "W7K_06990"; transcript_id "KOF00081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00081-1"; +contig34 ena CDS 253042 255723 . - 0 gene_id "W7K_06990"; transcript_id "KOF00081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00081"; +contig34 ena start_codon 255721 255723 . - 0 gene_id "W7K_06990"; transcript_id "KOF00081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 253039 253041 . - 0 gene_id "W7K_06990"; transcript_id "KOF00081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 255960 258311 . + . gene_id "W7K_06995"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 255960 258311 . + . gene_id "W7K_06995"; transcript_id "KOF00082"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 255960 258311 . + . gene_id "W7K_06995"; transcript_id "KOF00082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00082-1"; +contig34 ena CDS 255960 258308 . + 0 gene_id "W7K_06995"; transcript_id "KOF00082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00082"; +contig34 ena start_codon 255960 255962 . + 0 gene_id "W7K_06995"; transcript_id "KOF00082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 258309 258311 . + 0 gene_id "W7K_06995"; transcript_id "KOF00082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 258424 259809 . - . gene_id "W7K_07000"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 258424 259809 . - . gene_id "W7K_07000"; transcript_id "KOF00083"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 258424 259809 . - . gene_id "W7K_07000"; transcript_id "KOF00083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00083-1"; +contig34 ena CDS 258427 259809 . - 0 gene_id "W7K_07000"; transcript_id "KOF00083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00083"; +contig34 ena start_codon 259807 259809 . - 0 gene_id "W7K_07000"; transcript_id "KOF00083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 258424 258426 . - 0 gene_id "W7K_07000"; transcript_id "KOF00083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 259802 260476 . - . gene_id "W7K_07005"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 259802 260476 . - . gene_id "W7K_07005"; transcript_id "KOF00084"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 259802 260476 . - . gene_id "W7K_07005"; transcript_id "KOF00084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00084-1"; +contig34 ena CDS 259805 260476 . - 0 gene_id "W7K_07005"; transcript_id "KOF00084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00084"; +contig34 ena start_codon 260474 260476 . - 0 gene_id "W7K_07005"; transcript_id "KOF00084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 259802 259804 . - 0 gene_id "W7K_07005"; transcript_id "KOF00084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 260539 261786 . + . gene_id "W7K_07010"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 260539 261786 . + . gene_id "W7K_07010"; transcript_id "KOF00085"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 260539 261786 . + . gene_id "W7K_07010"; transcript_id "KOF00085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00085-1"; +contig34 ena CDS 260539 261783 . + 0 gene_id "W7K_07010"; transcript_id "KOF00085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00085"; +contig34 ena start_codon 260539 260541 . + 0 gene_id "W7K_07010"; transcript_id "KOF00085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 261784 261786 . + 0 gene_id "W7K_07010"; transcript_id "KOF00085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 261783 262955 . + . gene_id "W7K_07015"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 261783 262955 . + . gene_id "W7K_07015"; transcript_id "KOF00086"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 261783 262955 . + . gene_id "W7K_07015"; transcript_id "KOF00086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00086-1"; +contig34 ena CDS 261783 262952 . + 0 gene_id "W7K_07015"; transcript_id "KOF00086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00086"; +contig34 ena start_codon 261783 261785 . + 0 gene_id "W7K_07015"; transcript_id "KOF00086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 262953 262955 . + 0 gene_id "W7K_07015"; transcript_id "KOF00086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 262952 266029 . + . gene_id "W7K_07020"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 262952 266029 . + . gene_id "W7K_07020"; transcript_id "KOF00087"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 262952 266029 . + . gene_id "W7K_07020"; transcript_id "KOF00087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00087-1"; +contig34 ena CDS 262952 266026 . + 0 gene_id "W7K_07020"; transcript_id "KOF00087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00087"; +contig34 ena start_codon 262952 262954 . + 0 gene_id "W7K_07020"; transcript_id "KOF00087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 266027 266029 . + 0 gene_id "W7K_07020"; transcript_id "KOF00087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 266147 266890 . - . gene_id "W7K_07025"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 266147 266890 . - . gene_id "W7K_07025"; transcript_id "KOF00088"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 266147 266890 . - . gene_id "W7K_07025"; transcript_id "KOF00088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00088-1"; +contig34 ena CDS 266150 266890 . - 0 gene_id "W7K_07025"; transcript_id "KOF00088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00088"; +contig34 ena start_codon 266888 266890 . - 0 gene_id "W7K_07025"; transcript_id "KOF00088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 266147 266149 . - 0 gene_id "W7K_07025"; transcript_id "KOF00088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 266997 267920 . + . gene_id "W7K_07030"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 266997 267920 . + . gene_id "W7K_07030"; transcript_id "KOF00089"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 266997 267920 . + . gene_id "W7K_07030"; transcript_id "KOF00089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00089-1"; +contig34 ena CDS 266997 267917 . + 0 gene_id "W7K_07030"; transcript_id "KOF00089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00089"; +contig34 ena start_codon 266997 266999 . + 0 gene_id "W7K_07030"; transcript_id "KOF00089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 267918 267920 . + 0 gene_id "W7K_07030"; transcript_id "KOF00089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 267909 269276 . - . gene_id "W7K_07035"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 267909 269276 . - . gene_id "W7K_07035"; transcript_id "KOF00090"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 267909 269276 . - . gene_id "W7K_07035"; transcript_id "KOF00090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00090-1"; +contig34 ena CDS 267912 269276 . - 0 gene_id "W7K_07035"; transcript_id "KOF00090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00090"; +contig34 ena start_codon 269274 269276 . - 0 gene_id "W7K_07035"; transcript_id "KOF00090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 267909 267911 . - 0 gene_id "W7K_07035"; transcript_id "KOF00090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 269273 269971 . - . gene_id "W7K_07040"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 269273 269971 . - . gene_id "W7K_07040"; transcript_id "KOF00091"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 269273 269971 . - . gene_id "W7K_07040"; transcript_id "KOF00091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00091-1"; +contig34 ena CDS 269276 269971 . - 0 gene_id "W7K_07040"; transcript_id "KOF00091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00091"; +contig34 ena start_codon 269969 269971 . - 0 gene_id "W7K_07040"; transcript_id "KOF00091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 269273 269275 . - 0 gene_id "W7K_07040"; transcript_id "KOF00091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 270017 270901 . - . gene_id "W7K_07045"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 270017 270901 . - . gene_id "W7K_07045"; transcript_id "KOF00092"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 270017 270901 . - . gene_id "W7K_07045"; transcript_id "KOF00092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00092-1"; +contig34 ena CDS 270020 270901 . - 0 gene_id "W7K_07045"; transcript_id "KOF00092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00092"; +contig34 ena start_codon 270899 270901 . - 0 gene_id "W7K_07045"; transcript_id "KOF00092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 270017 270019 . - 0 gene_id "W7K_07045"; transcript_id "KOF00092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 270912 271289 . - . gene_id "W7K_07050"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 270912 271289 . - . gene_id "W7K_07050"; transcript_id "KOF00093"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 270912 271289 . - . gene_id "W7K_07050"; transcript_id "KOF00093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00093-1"; +contig34 ena CDS 270915 271289 . - 0 gene_id "W7K_07050"; transcript_id "KOF00093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00093"; +contig34 ena start_codon 271287 271289 . - 0 gene_id "W7K_07050"; transcript_id "KOF00093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 270912 270914 . - 0 gene_id "W7K_07050"; transcript_id "KOF00093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 271417 271740 . - . gene_id "W7K_07055"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 271417 271740 . - . gene_id "W7K_07055"; transcript_id "KOF00094"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 271417 271740 . - . gene_id "W7K_07055"; transcript_id "KOF00094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00094-1"; +contig34 ena CDS 271420 271740 . - 0 gene_id "W7K_07055"; transcript_id "KOF00094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00094"; +contig34 ena start_codon 271738 271740 . - 0 gene_id "W7K_07055"; transcript_id "KOF00094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 271417 271419 . - 0 gene_id "W7K_07055"; transcript_id "KOF00094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 271737 272675 . - . gene_id "W7K_07060"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 271737 272675 . - . gene_id "W7K_07060"; transcript_id "KOF00095"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 271737 272675 . - . gene_id "W7K_07060"; transcript_id "KOF00095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00095-1"; +contig34 ena CDS 271740 272675 . - 0 gene_id "W7K_07060"; transcript_id "KOF00095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00095"; +contig34 ena start_codon 272673 272675 . - 0 gene_id "W7K_07060"; transcript_id "KOF00095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 271737 271739 . - 0 gene_id "W7K_07060"; transcript_id "KOF00095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 272695 273669 . - . gene_id "W7K_07065"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 272695 273669 . - . gene_id "W7K_07065"; transcript_id "KOF00096"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 272695 273669 . - . gene_id "W7K_07065"; transcript_id "KOF00096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00096-1"; +contig34 ena CDS 272698 273669 . - 0 gene_id "W7K_07065"; transcript_id "KOF00096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00096"; +contig34 ena start_codon 273667 273669 . - 0 gene_id "W7K_07065"; transcript_id "KOF00096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 272695 272697 . - 0 gene_id "W7K_07065"; transcript_id "KOF00096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 273681 274484 . - . gene_id "W7K_07070"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 273681 274484 . - . gene_id "W7K_07070"; transcript_id "KOF00097"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 273681 274484 . - . gene_id "W7K_07070"; transcript_id "KOF00097"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00097-1"; +contig34 ena CDS 273684 274484 . - 0 gene_id "W7K_07070"; transcript_id "KOF00097"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00097"; +contig34 ena start_codon 274482 274484 . - 0 gene_id "W7K_07070"; transcript_id "KOF00097"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 273681 273683 . - 0 gene_id "W7K_07070"; transcript_id "KOF00097"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 274603 275505 . + . gene_id "W7K_07075"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 274603 275505 . + . gene_id "W7K_07075"; transcript_id "KOF00098"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 274603 275505 . + . gene_id "W7K_07075"; transcript_id "KOF00098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00098-1"; +contig34 ena CDS 274603 275502 . + 0 gene_id "W7K_07075"; transcript_id "KOF00098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00098"; +contig34 ena start_codon 274603 274605 . + 0 gene_id "W7K_07075"; transcript_id "KOF00098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 275503 275505 . + 0 gene_id "W7K_07075"; transcript_id "KOF00098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 275598 276071 . - . gene_id "W7K_07080"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 275598 276071 . - . gene_id "W7K_07080"; transcript_id "KOF00099"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 275598 276071 . - . gene_id "W7K_07080"; transcript_id "KOF00099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00099-1"; +contig34 ena CDS 275601 276071 . - 0 gene_id "W7K_07080"; transcript_id "KOF00099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00099"; +contig34 ena start_codon 276069 276071 . - 0 gene_id "W7K_07080"; transcript_id "KOF00099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 275598 275600 . - 0 gene_id "W7K_07080"; transcript_id "KOF00099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 276104 276637 . + . gene_id "W7K_07085"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 276104 276637 . + . gene_id "W7K_07085"; transcript_id "KOF00100"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 276104 276637 . + . gene_id "W7K_07085"; transcript_id "KOF00100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00100-1"; +contig34 ena CDS 276104 276634 . + 0 gene_id "W7K_07085"; transcript_id "KOF00100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00100"; +contig34 ena start_codon 276104 276106 . + 0 gene_id "W7K_07085"; transcript_id "KOF00100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 276635 276637 . + 0 gene_id "W7K_07085"; transcript_id "KOF00100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 276634 277329 . + . gene_id "W7K_07090"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 276634 277329 . + . gene_id "W7K_07090"; transcript_id "KOF00101"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 276634 277329 . + . gene_id "W7K_07090"; transcript_id "KOF00101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00101-1"; +contig34 ena CDS 276634 277326 . + 0 gene_id "W7K_07090"; transcript_id "KOF00101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00101"; +contig34 ena start_codon 276634 276636 . + 0 gene_id "W7K_07090"; transcript_id "KOF00101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 277327 277329 . + 0 gene_id "W7K_07090"; transcript_id "KOF00101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 277322 278575 . + . gene_id "W7K_07095"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 277322 278575 . + . gene_id "W7K_07095"; transcript_id "KOF00102"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 277322 278575 . + . gene_id "W7K_07095"; transcript_id "KOF00102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00102-1"; +contig34 ena CDS 277322 278572 . + 0 gene_id "W7K_07095"; transcript_id "KOF00102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00102"; +contig34 ena start_codon 277322 277324 . + 0 gene_id "W7K_07095"; transcript_id "KOF00102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 278573 278575 . + 0 gene_id "W7K_07095"; transcript_id "KOF00102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 278578 279129 . + . gene_id "W7K_07100"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 278578 279129 . + . gene_id "W7K_07100"; transcript_id "KOF00103"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 278578 279129 . + . gene_id "W7K_07100"; transcript_id "KOF00103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00103-1"; +contig34 ena CDS 278578 279126 . + 0 gene_id "W7K_07100"; transcript_id "KOF00103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00103"; +contig34 ena start_codon 278578 278580 . + 0 gene_id "W7K_07100"; transcript_id "KOF00103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 279127 279129 . + 0 gene_id "W7K_07100"; transcript_id "KOF00103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 279119 279739 . + . gene_id "W7K_07105"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 279119 279739 . + . gene_id "W7K_07105"; transcript_id "KOF00104"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 279119 279739 . + . gene_id "W7K_07105"; transcript_id "KOF00104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00104-1"; +contig34 ena CDS 279119 279736 . + 0 gene_id "W7K_07105"; transcript_id "KOF00104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00104"; +contig34 ena start_codon 279119 279121 . + 0 gene_id "W7K_07105"; transcript_id "KOF00104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 279737 279739 . + 0 gene_id "W7K_07105"; transcript_id "KOF00104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 279739 280485 . + . gene_id "W7K_07110"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 279739 280485 . + . gene_id "W7K_07110"; transcript_id "KOF00105"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 279739 280485 . + . gene_id "W7K_07110"; transcript_id "KOF00105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00105-1"; +contig34 ena CDS 279739 280482 . + 0 gene_id "W7K_07110"; transcript_id "KOF00105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00105"; +contig34 ena start_codon 279739 279741 . + 0 gene_id "W7K_07110"; transcript_id "KOF00105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 280483 280485 . + 0 gene_id "W7K_07110"; transcript_id "KOF00105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 280636 282168 . + . gene_id "W7K_07115"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 280636 282168 . + . gene_id "W7K_07115"; transcript_id "KOF00106"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 280636 282168 . + . gene_id "W7K_07115"; transcript_id "KOF00106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00106-1"; +contig34 ena CDS 280636 282165 . + 0 gene_id "W7K_07115"; transcript_id "KOF00106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00106"; +contig34 ena start_codon 280636 280638 . + 0 gene_id "W7K_07115"; transcript_id "KOF00106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 282166 282168 . + 0 gene_id "W7K_07115"; transcript_id "KOF00106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 282173 282736 . + . gene_id "W7K_07120"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 282173 282736 . + . gene_id "W7K_07120"; transcript_id "KOF00107"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 282173 282736 . + . gene_id "W7K_07120"; transcript_id "KOF00107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00107-1"; +contig34 ena CDS 282173 282733 . + 0 gene_id "W7K_07120"; transcript_id "KOF00107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00107"; +contig34 ena start_codon 282173 282175 . + 0 gene_id "W7K_07120"; transcript_id "KOF00107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 282734 282736 . + 0 gene_id "W7K_07120"; transcript_id "KOF00107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 282831 283712 . - . gene_id "W7K_07125"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 282831 283712 . - . gene_id "W7K_07125"; transcript_id "KOF00108"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 282831 283712 . - . gene_id "W7K_07125"; transcript_id "KOF00108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00108-1"; +contig34 ena CDS 282834 283712 . - 0 gene_id "W7K_07125"; transcript_id "KOF00108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00108"; +contig34 ena start_codon 283710 283712 . - 0 gene_id "W7K_07125"; transcript_id "KOF00108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 282831 282833 . - 0 gene_id "W7K_07125"; transcript_id "KOF00108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 283819 284355 . + . gene_id "W7K_07130"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 283819 284355 . + . gene_id "W7K_07130"; transcript_id "KOF00109"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 283819 284355 . + . gene_id "W7K_07130"; transcript_id "KOF00109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00109-1"; +contig34 ena CDS 283819 284352 . + 0 gene_id "W7K_07130"; transcript_id "KOF00109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00109"; +contig34 ena start_codon 283819 283821 . + 0 gene_id "W7K_07130"; transcript_id "KOF00109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 284353 284355 . + 0 gene_id "W7K_07130"; transcript_id "KOF00109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 284394 285242 . - . gene_id "W7K_07135"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 284394 285242 . - . gene_id "W7K_07135"; transcript_id "KOF00110"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 284394 285242 . - . gene_id "W7K_07135"; transcript_id "KOF00110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00110-1"; +contig34 ena CDS 284397 285242 . - 0 gene_id "W7K_07135"; transcript_id "KOF00110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00110"; +contig34 ena start_codon 285240 285242 . - 0 gene_id "W7K_07135"; transcript_id "KOF00110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 284394 284396 . - 0 gene_id "W7K_07135"; transcript_id "KOF00110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 285487 287772 . + . gene_id "W7K_07140"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 285487 287772 . + . gene_id "W7K_07140"; transcript_id "KOF00111"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 285487 287772 . + . gene_id "W7K_07140"; transcript_id "KOF00111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00111-1"; +contig34 ena CDS 285487 287769 . + 0 gene_id "W7K_07140"; transcript_id "KOF00111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00111"; +contig34 ena start_codon 285487 285489 . + 0 gene_id "W7K_07140"; transcript_id "KOF00111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 287770 287772 . + 0 gene_id "W7K_07140"; transcript_id "KOF00111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 288373 288789 . + . gene_id "W7K_07145"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 288373 288789 . + . gene_id "W7K_07145"; transcript_id "KOF00179"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 288373 288789 . + . gene_id "W7K_07145"; transcript_id "KOF00179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00179-1"; +contig34 ena CDS 288373 288786 . + 0 gene_id "W7K_07145"; transcript_id "KOF00179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00179"; +contig34 ena start_codon 288373 288375 . + 0 gene_id "W7K_07145"; transcript_id "KOF00179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 288787 288789 . + 0 gene_id "W7K_07145"; transcript_id "KOF00179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 288905 289777 . - . gene_id "W7K_07150"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 288905 289777 . - . gene_id "W7K_07150"; transcript_id "KOF00112"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 288905 289777 . - . gene_id "W7K_07150"; transcript_id "KOF00112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00112-1"; +contig34 ena CDS 288908 289777 . - 0 gene_id "W7K_07150"; transcript_id "KOF00112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00112"; +contig34 ena start_codon 289775 289777 . - 0 gene_id "W7K_07150"; transcript_id "KOF00112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 288905 288907 . - 0 gene_id "W7K_07150"; transcript_id "KOF00112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 289873 292302 . - . gene_id "W7K_07155"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 289873 292302 . - . gene_id "W7K_07155"; transcript_id "KOF00113"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 289873 292302 . - . gene_id "W7K_07155"; transcript_id "KOF00113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00113-1"; +contig34 ena CDS 289876 292302 . - 0 gene_id "W7K_07155"; transcript_id "KOF00113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00113"; +contig34 ena start_codon 292300 292302 . - 0 gene_id "W7K_07155"; transcript_id "KOF00113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 289873 289875 . - 0 gene_id "W7K_07155"; transcript_id "KOF00113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 292374 293210 . - . gene_id "W7K_07160"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 292374 293210 . - . gene_id "W7K_07160"; transcript_id "KOF00114"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 292374 293210 . - . gene_id "W7K_07160"; transcript_id "KOF00114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00114-1"; +contig34 ena CDS 292377 293210 . - 0 gene_id "W7K_07160"; transcript_id "KOF00114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00114"; +contig34 ena start_codon 293208 293210 . - 0 gene_id "W7K_07160"; transcript_id "KOF00114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 292374 292376 . - 0 gene_id "W7K_07160"; transcript_id "KOF00114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 293207 293731 . - . gene_id "W7K_07165"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 293207 293731 . - . gene_id "W7K_07165"; transcript_id "KOF00115"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 293207 293731 . - . gene_id "W7K_07165"; transcript_id "KOF00115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00115-1"; +contig34 ena CDS 293210 293731 . - 0 gene_id "W7K_07165"; transcript_id "KOF00115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00115"; +contig34 ena start_codon 293729 293731 . - 0 gene_id "W7K_07165"; transcript_id "KOF00115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 293207 293209 . - 0 gene_id "W7K_07165"; transcript_id "KOF00115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 293934 294200 . + . gene_id "W7K_07170"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 293934 294200 . + . gene_id "W7K_07170"; transcript_id "KOF00116"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 293934 294200 . + . gene_id "W7K_07170"; transcript_id "KOF00116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00116-1"; +contig34 ena CDS 293934 294197 . + 0 gene_id "W7K_07170"; transcript_id "KOF00116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00116"; +contig34 ena start_codon 293934 293936 . + 0 gene_id "W7K_07170"; transcript_id "KOF00116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 294198 294200 . + 0 gene_id "W7K_07170"; transcript_id "KOF00116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 294210 295382 . + . gene_id "W7K_07175"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 294210 295382 . + . gene_id "W7K_07175"; transcript_id "KOF00117"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 294210 295382 . + . gene_id "W7K_07175"; transcript_id "KOF00117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00117-1"; +contig34 ena CDS 294210 295379 . + 0 gene_id "W7K_07175"; transcript_id "KOF00117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00117"; +contig34 ena start_codon 294210 294212 . + 0 gene_id "W7K_07175"; transcript_id "KOF00117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 295380 295382 . + 0 gene_id "W7K_07175"; transcript_id "KOF00117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 295425 295817 . + . gene_id "W7K_07180"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 295425 295817 . + . gene_id "W7K_07180"; transcript_id "KOF00118"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 295425 295817 . + . gene_id "W7K_07180"; transcript_id "KOF00118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00118-1"; +contig34 ena CDS 295425 295814 . + 0 gene_id "W7K_07180"; transcript_id "KOF00118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00118"; +contig34 ena start_codon 295425 295427 . + 0 gene_id "W7K_07180"; transcript_id "KOF00118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 295815 295817 . + 0 gene_id "W7K_07180"; transcript_id "KOF00118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 295831 296472 . - . gene_id "W7K_07185"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 295831 296472 . - . gene_id "W7K_07185"; transcript_id "KOF00119"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 295831 296472 . - . gene_id "W7K_07185"; transcript_id "KOF00119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00119-1"; +contig34 ena CDS 295834 296472 . - 0 gene_id "W7K_07185"; transcript_id "KOF00119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00119"; +contig34 ena start_codon 296470 296472 . - 0 gene_id "W7K_07185"; transcript_id "KOF00119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 295831 295833 . - 0 gene_id "W7K_07185"; transcript_id "KOF00119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 296465 297520 . - . gene_id "W7K_07190"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 296465 297520 . - . gene_id "W7K_07190"; transcript_id "KOF00120"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 296465 297520 . - . gene_id "W7K_07190"; transcript_id "KOF00120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00120-1"; +contig34 ena CDS 296468 297520 . - 0 gene_id "W7K_07190"; transcript_id "KOF00120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00120"; +contig34 ena start_codon 297518 297520 . - 0 gene_id "W7K_07190"; transcript_id "KOF00120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 296465 296467 . - 0 gene_id "W7K_07190"; transcript_id "KOF00120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 297756 298493 . - . gene_id "W7K_07195"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 297756 298493 . - . gene_id "W7K_07195"; transcript_id "KOF00121"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 297756 298493 . - . gene_id "W7K_07195"; transcript_id "KOF00121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00121-1"; +contig34 ena CDS 297759 298493 . - 0 gene_id "W7K_07195"; transcript_id "KOF00121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00121"; +contig34 ena start_codon 298491 298493 . - 0 gene_id "W7K_07195"; transcript_id "KOF00121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 297756 297758 . - 0 gene_id "W7K_07195"; transcript_id "KOF00121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 298525 301284 . - . gene_id "W7K_07200"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 298525 301284 . - . gene_id "W7K_07200"; transcript_id "KOF00122"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 298525 301284 . - . gene_id "W7K_07200"; transcript_id "KOF00122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00122-1"; +contig34 ena CDS 298528 301284 . - 0 gene_id "W7K_07200"; transcript_id "KOF00122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00122"; +contig34 ena start_codon 301282 301284 . - 0 gene_id "W7K_07200"; transcript_id "KOF00122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 298525 298527 . - 0 gene_id "W7K_07200"; transcript_id "KOF00122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 301348 301647 . - . gene_id "W7K_07205"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 301348 301647 . - . gene_id "W7K_07205"; transcript_id "KOF00123"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 301348 301647 . - . gene_id "W7K_07205"; transcript_id "KOF00123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00123-1"; +contig34 ena CDS 301351 301647 . - 0 gene_id "W7K_07205"; transcript_id "KOF00123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00123"; +contig34 ena start_codon 301645 301647 . - 0 gene_id "W7K_07205"; transcript_id "KOF00123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 301348 301350 . - 0 gene_id "W7K_07205"; transcript_id "KOF00123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 301939 302238 . - . gene_id "W7K_07210"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 301939 302238 . - . gene_id "W7K_07210"; transcript_id "KOF00124"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 301939 302238 . - . gene_id "W7K_07210"; transcript_id "KOF00124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00124-1"; +contig34 ena CDS 301942 302238 . - 0 gene_id "W7K_07210"; transcript_id "KOF00124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00124"; +contig34 ena start_codon 302236 302238 . - 0 gene_id "W7K_07210"; transcript_id "KOF00124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 301939 301941 . - 0 gene_id "W7K_07210"; transcript_id "KOF00124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 302445 303425 . - . gene_id "W7K_07215"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 302445 303425 . - . gene_id "W7K_07215"; transcript_id "KOF00125"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 302445 303425 . - . gene_id "W7K_07215"; transcript_id "KOF00125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00125-1"; +contig34 ena CDS 302448 303425 . - 0 gene_id "W7K_07215"; transcript_id "KOF00125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00125"; +contig34 ena start_codon 303423 303425 . - 0 gene_id "W7K_07215"; transcript_id "KOF00125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 302445 302447 . - 0 gene_id "W7K_07215"; transcript_id "KOF00125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 303507 304172 . + . gene_id "W7K_07220"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 303507 304172 . + . gene_id "W7K_07220"; transcript_id "KOF00126"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 303507 304172 . + . gene_id "W7K_07220"; transcript_id "KOF00126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00126-1"; +contig34 ena CDS 303507 304169 . + 0 gene_id "W7K_07220"; transcript_id "KOF00126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00126"; +contig34 ena start_codon 303507 303509 . + 0 gene_id "W7K_07220"; transcript_id "KOF00126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 304170 304172 . + 0 gene_id "W7K_07220"; transcript_id "KOF00126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 304423 306618 . - . gene_id "W7K_07225"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 304423 306618 . - . gene_id "W7K_07225"; transcript_id "KOF00127"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 304423 306618 . - . gene_id "W7K_07225"; transcript_id "KOF00127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00127-1"; +contig34 ena CDS 304426 306618 . - 0 gene_id "W7K_07225"; transcript_id "KOF00127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00127"; +contig34 ena start_codon 306616 306618 . - 0 gene_id "W7K_07225"; transcript_id "KOF00127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 304423 304425 . - 0 gene_id "W7K_07225"; transcript_id "KOF00127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 306863 307447 . + . gene_id "W7K_07230"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 306863 307447 . + . gene_id "W7K_07230"; transcript_id "KOF00128"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 306863 307447 . + . gene_id "W7K_07230"; transcript_id "KOF00128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00128-1"; +contig34 ena CDS 306863 307444 . + 0 gene_id "W7K_07230"; transcript_id "KOF00128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00128"; +contig34 ena start_codon 306863 306865 . + 0 gene_id "W7K_07230"; transcript_id "KOF00128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 307445 307447 . + 0 gene_id "W7K_07230"; transcript_id "KOF00128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 307552 308640 . + . gene_id "W7K_07235"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 307552 308640 . + . gene_id "W7K_07235"; transcript_id "KOF00129"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 307552 308640 . + . gene_id "W7K_07235"; transcript_id "KOF00129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00129-1"; +contig34 ena CDS 307552 308637 . + 0 gene_id "W7K_07235"; transcript_id "KOF00129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00129"; +contig34 ena start_codon 307552 307554 . + 0 gene_id "W7K_07235"; transcript_id "KOF00129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 308638 308640 . + 0 gene_id "W7K_07235"; transcript_id "KOF00129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 308778 309056 . - . gene_id "W7K_07240"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 308778 309056 . - . gene_id "W7K_07240"; transcript_id "KOF00130"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 308778 309056 . - . gene_id "W7K_07240"; transcript_id "KOF00130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00130-1"; +contig34 ena CDS 308781 309056 . - 0 gene_id "W7K_07240"; transcript_id "KOF00130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00130"; +contig34 ena start_codon 309054 309056 . - 0 gene_id "W7K_07240"; transcript_id "KOF00130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 308778 308780 . - 0 gene_id "W7K_07240"; transcript_id "KOF00130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 309053 310663 . - . gene_id "W7K_07245"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 309053 310663 . - . gene_id "W7K_07245"; transcript_id "KOF00131"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 309053 310663 . - . gene_id "W7K_07245"; transcript_id "KOF00131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00131-1"; +contig34 ena CDS 309056 310663 . - 0 gene_id "W7K_07245"; transcript_id "KOF00131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00131"; +contig34 ena start_codon 310661 310663 . - 0 gene_id "W7K_07245"; transcript_id "KOF00131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 309053 309055 . - 0 gene_id "W7K_07245"; transcript_id "KOF00131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 310660 310959 . - . gene_id "W7K_07250"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 310660 310959 . - . gene_id "W7K_07250"; transcript_id "KOF00132"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 310660 310959 . - . gene_id "W7K_07250"; transcript_id "KOF00132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00132-1"; +contig34 ena CDS 310663 310959 . - 0 gene_id "W7K_07250"; transcript_id "KOF00132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00132"; +contig34 ena start_codon 310957 310959 . - 0 gene_id "W7K_07250"; transcript_id "KOF00132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 310660 310662 . - 0 gene_id "W7K_07250"; transcript_id "KOF00132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 311012 313189 . - . gene_id "W7K_07255"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 311012 313189 . - . gene_id "W7K_07255"; transcript_id "KOF00133"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 311012 313189 . - . gene_id "W7K_07255"; transcript_id "KOF00133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00133-1"; +contig34 ena CDS 311015 313189 . - 0 gene_id "W7K_07255"; transcript_id "KOF00133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00133"; +contig34 ena start_codon 313187 313189 . - 0 gene_id "W7K_07255"; transcript_id "KOF00133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 311012 311014 . - 0 gene_id "W7K_07255"; transcript_id "KOF00133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 313385 314221 . - . gene_id "W7K_07260"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 313385 314221 . - . gene_id "W7K_07260"; transcript_id "KOF00134"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 313385 314221 . - . gene_id "W7K_07260"; transcript_id "KOF00134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00134-1"; +contig34 ena CDS 313388 314221 . - 0 gene_id "W7K_07260"; transcript_id "KOF00134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00134"; +contig34 ena start_codon 314219 314221 . - 0 gene_id "W7K_07260"; transcript_id "KOF00134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 313385 313387 . - 0 gene_id "W7K_07260"; transcript_id "KOF00134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 314392 315006 . + . gene_id "W7K_07265"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 314392 315006 . + . gene_id "W7K_07265"; transcript_id "KOF00135"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 314392 315006 . + . gene_id "W7K_07265"; transcript_id "KOF00135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00135-1"; +contig34 ena CDS 314392 315003 . + 0 gene_id "W7K_07265"; transcript_id "KOF00135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00135"; +contig34 ena start_codon 314392 314394 . + 0 gene_id "W7K_07265"; transcript_id "KOF00135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 315004 315006 . + 0 gene_id "W7K_07265"; transcript_id "KOF00135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 315100 316026 . - . gene_id "W7K_07270"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 315100 316026 . - . gene_id "W7K_07270"; transcript_id "KOF00136"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 315100 316026 . - . gene_id "W7K_07270"; transcript_id "KOF00136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00136-1"; +contig34 ena CDS 315103 316026 . - 0 gene_id "W7K_07270"; transcript_id "KOF00136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00136"; +contig34 ena start_codon 316024 316026 . - 0 gene_id "W7K_07270"; transcript_id "KOF00136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 315100 315102 . - 0 gene_id "W7K_07270"; transcript_id "KOF00136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 316297 317373 . - . gene_id "W7K_07275"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 316297 317373 . - . gene_id "W7K_07275"; transcript_id "KOF00137"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 316297 317373 . - . gene_id "W7K_07275"; transcript_id "KOF00137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00137-1"; +contig34 ena CDS 316300 317373 . - 0 gene_id "W7K_07275"; transcript_id "KOF00137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00137"; +contig34 ena start_codon 317371 317373 . - 0 gene_id "W7K_07275"; transcript_id "KOF00137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 316297 316299 . - 0 gene_id "W7K_07275"; transcript_id "KOF00137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 317378 318094 . - . gene_id "W7K_07280"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 317378 318094 . - . gene_id "W7K_07280"; transcript_id "KOF00138"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 317378 318094 . - . gene_id "W7K_07280"; transcript_id "KOF00138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00138-1"; +contig34 ena CDS 317381 318094 . - 0 gene_id "W7K_07280"; transcript_id "KOF00138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00138"; +contig34 ena start_codon 318092 318094 . - 0 gene_id "W7K_07280"; transcript_id "KOF00138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 317378 317380 . - 0 gene_id "W7K_07280"; transcript_id "KOF00138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 318142 318606 . - . gene_id "W7K_07285"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 318142 318606 . - . gene_id "W7K_07285"; transcript_id "KOF00180"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 318142 318606 . - . gene_id "W7K_07285"; transcript_id "KOF00180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00180-1"; +contig34 ena CDS 318145 318606 . - 0 gene_id "W7K_07285"; transcript_id "KOF00180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00180"; +contig34 ena start_codon 318604 318606 . - 0 gene_id "W7K_07285"; transcript_id "KOF00180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 318142 318144 . - 0 gene_id "W7K_07285"; transcript_id "KOF00180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 318936 320117 . + . gene_id "W7K_07290"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 318936 320117 . + . gene_id "W7K_07290"; transcript_id "KOF00139"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 318936 320117 . + . gene_id "W7K_07290"; transcript_id "KOF00139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00139-1"; +contig34 ena CDS 318936 320114 . + 0 gene_id "W7K_07290"; transcript_id "KOF00139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00139"; +contig34 ena start_codon 318936 318938 . + 0 gene_id "W7K_07290"; transcript_id "KOF00139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 320115 320117 . + 0 gene_id "W7K_07290"; transcript_id "KOF00139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 320120 322063 . + . gene_id "W7K_07295"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 320120 322063 . + . gene_id "W7K_07295"; transcript_id "KOF00140"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 320120 322063 . + . gene_id "W7K_07295"; transcript_id "KOF00140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00140-1"; +contig34 ena CDS 320120 322060 . + 0 gene_id "W7K_07295"; transcript_id "KOF00140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00140"; +contig34 ena start_codon 320120 320122 . + 0 gene_id "W7K_07295"; transcript_id "KOF00140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 322061 322063 . + 0 gene_id "W7K_07295"; transcript_id "KOF00140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 322089 323798 . - . gene_id "W7K_07300"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 322089 323798 . - . gene_id "W7K_07300"; transcript_id "KOF00141"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 322089 323798 . - . gene_id "W7K_07300"; transcript_id "KOF00141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00141-1"; +contig34 ena CDS 322092 323798 . - 0 gene_id "W7K_07300"; transcript_id "KOF00141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00141"; +contig34 ena start_codon 323796 323798 . - 0 gene_id "W7K_07300"; transcript_id "KOF00141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 322089 322091 . - 0 gene_id "W7K_07300"; transcript_id "KOF00141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 324032 324991 . - . gene_id "W7K_07305"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 324032 324991 . - . gene_id "W7K_07305"; transcript_id "KOF00142"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 324032 324991 . - . gene_id "W7K_07305"; transcript_id "KOF00142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00142-1"; +contig34 ena CDS 324035 324991 . - 0 gene_id "W7K_07305"; transcript_id "KOF00142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00142"; +contig34 ena start_codon 324989 324991 . - 0 gene_id "W7K_07305"; transcript_id "KOF00142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 324032 324034 . - 0 gene_id "W7K_07305"; transcript_id "KOF00142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 325217 325471 . + . gene_id "W7K_07310"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 325217 325471 . + . gene_id "W7K_07310"; transcript_id "KOF00143"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 325217 325471 . + . gene_id "W7K_07310"; transcript_id "KOF00143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00143-1"; +contig34 ena CDS 325217 325468 . + 0 gene_id "W7K_07310"; transcript_id "KOF00143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00143"; +contig34 ena start_codon 325217 325219 . + 0 gene_id "W7K_07310"; transcript_id "KOF00143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 325469 325471 . + 0 gene_id "W7K_07310"; transcript_id "KOF00143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 325519 326163 . - . gene_id "W7K_07315"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 325519 326163 . - . gene_id "W7K_07315"; transcript_id "KOF00144"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 325519 326163 . - . gene_id "W7K_07315"; transcript_id "KOF00144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00144-1"; +contig34 ena CDS 325522 326163 . - 0 gene_id "W7K_07315"; transcript_id "KOF00144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00144"; +contig34 ena start_codon 326161 326163 . - 0 gene_id "W7K_07315"; transcript_id "KOF00144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 325519 325521 . - 0 gene_id "W7K_07315"; transcript_id "KOF00144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 326278 328575 . + . gene_id "W7K_07320"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 326278 328575 . + . gene_id "W7K_07320"; transcript_id "KOF00145"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 326278 328575 . + . gene_id "W7K_07320"; transcript_id "KOF00145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00145-1"; +contig34 ena CDS 326278 328572 . + 0 gene_id "W7K_07320"; transcript_id "KOF00145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00145"; +contig34 ena start_codon 326278 326280 . + 0 gene_id "W7K_07320"; transcript_id "KOF00145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 328573 328575 . + 0 gene_id "W7K_07320"; transcript_id "KOF00145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 328593 329489 . + . gene_id "W7K_07325"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 328593 329489 . + . gene_id "W7K_07325"; transcript_id "KOF00146"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 328593 329489 . + . gene_id "W7K_07325"; transcript_id "KOF00146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00146-1"; +contig34 ena CDS 328593 329486 . + 0 gene_id "W7K_07325"; transcript_id "KOF00146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00146"; +contig34 ena start_codon 328593 328595 . + 0 gene_id "W7K_07325"; transcript_id "KOF00146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 329487 329489 . + 0 gene_id "W7K_07325"; transcript_id "KOF00146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 329588 329845 . - . gene_id "W7K_07330"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 329588 329845 . - . gene_id "W7K_07330"; transcript_id "KOF00147"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 329588 329845 . - . gene_id "W7K_07330"; transcript_id "KOF00147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00147-1"; +contig34 ena CDS 329591 329845 . - 0 gene_id "W7K_07330"; transcript_id "KOF00147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00147"; +contig34 ena start_codon 329843 329845 . - 0 gene_id "W7K_07330"; transcript_id "KOF00147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 329588 329590 . - 0 gene_id "W7K_07330"; transcript_id "KOF00147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 329842 331194 . - . gene_id "W7K_07335"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 329842 331194 . - . gene_id "W7K_07335"; transcript_id "KOF00148"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 329842 331194 . - . gene_id "W7K_07335"; transcript_id "KOF00148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00148-1"; +contig34 ena CDS 329845 331194 . - 0 gene_id "W7K_07335"; transcript_id "KOF00148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00148"; +contig34 ena start_codon 331192 331194 . - 0 gene_id "W7K_07335"; transcript_id "KOF00148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 329842 329844 . - 0 gene_id "W7K_07335"; transcript_id "KOF00148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 331215 332354 . - . gene_id "W7K_07340"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 331215 332354 . - . gene_id "W7K_07340"; transcript_id "KOF00149"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 331215 332354 . - . gene_id "W7K_07340"; transcript_id "KOF00149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00149-1"; +contig34 ena CDS 331218 332354 . - 0 gene_id "W7K_07340"; transcript_id "KOF00149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00149"; +contig34 ena start_codon 332352 332354 . - 0 gene_id "W7K_07340"; transcript_id "KOF00149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 331215 331217 . - 0 gene_id "W7K_07340"; transcript_id "KOF00149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 332456 333298 . - . gene_id "W7K_07345"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 332456 333298 . - . gene_id "W7K_07345"; transcript_id "KOF00150"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 332456 333298 . - . gene_id "W7K_07345"; transcript_id "KOF00150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00150-1"; +contig34 ena CDS 332459 333298 . - 0 gene_id "W7K_07345"; transcript_id "KOF00150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00150"; +contig34 ena start_codon 333296 333298 . - 0 gene_id "W7K_07345"; transcript_id "KOF00150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 332456 332458 . - 0 gene_id "W7K_07345"; transcript_id "KOF00150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 333392 334684 . - . gene_id "W7K_07350"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 333392 334684 . - . gene_id "W7K_07350"; transcript_id "KOF00151"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 333392 334684 . - . gene_id "W7K_07350"; transcript_id "KOF00151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00151-1"; +contig34 ena CDS 333395 334684 . - 0 gene_id "W7K_07350"; transcript_id "KOF00151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00151"; +contig34 ena start_codon 334682 334684 . - 0 gene_id "W7K_07350"; transcript_id "KOF00151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 333392 333394 . - 0 gene_id "W7K_07350"; transcript_id "KOF00151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 334731 335480 . - . gene_id "W7K_07355"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 334731 335480 . - . gene_id "W7K_07355"; transcript_id "KOF00152"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 334731 335480 . - . gene_id "W7K_07355"; transcript_id "KOF00152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00152-1"; +contig34 ena CDS 334734 335480 . - 0 gene_id "W7K_07355"; transcript_id "KOF00152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00152"; +contig34 ena start_codon 335478 335480 . - 0 gene_id "W7K_07355"; transcript_id "KOF00152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 334731 334733 . - 0 gene_id "W7K_07355"; transcript_id "KOF00152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 335493 336197 . - . gene_id "W7K_07360"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 335493 336197 . - . gene_id "W7K_07360"; transcript_id "KOF00153"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 335493 336197 . - . gene_id "W7K_07360"; transcript_id "KOF00153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00153-1"; +contig34 ena CDS 335496 336197 . - 0 gene_id "W7K_07360"; transcript_id "KOF00153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00153"; +contig34 ena start_codon 336195 336197 . - 0 gene_id "W7K_07360"; transcript_id "KOF00153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 335493 335495 . - 0 gene_id "W7K_07360"; transcript_id "KOF00153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 336298 337614 . - . gene_id "W7K_07365"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 336298 337614 . - . gene_id "W7K_07365"; transcript_id "KOF00154"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 336298 337614 . - . gene_id "W7K_07365"; transcript_id "KOF00154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00154-1"; +contig34 ena CDS 336301 337614 . - 0 gene_id "W7K_07365"; transcript_id "KOF00154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00154"; +contig34 ena start_codon 337612 337614 . - 0 gene_id "W7K_07365"; transcript_id "KOF00154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 336298 336300 . - 0 gene_id "W7K_07365"; transcript_id "KOF00154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 337658 338275 . - . gene_id "W7K_07370"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 337658 338275 . - . gene_id "W7K_07370"; transcript_id "KOF00155"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 337658 338275 . - . gene_id "W7K_07370"; transcript_id "KOF00155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00155-1"; +contig34 ena CDS 337661 338275 . - 0 gene_id "W7K_07370"; transcript_id "KOF00155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00155"; +contig34 ena start_codon 338273 338275 . - 0 gene_id "W7K_07370"; transcript_id "KOF00155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 337658 337660 . - 0 gene_id "W7K_07370"; transcript_id "KOF00155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 338272 338802 . - . gene_id "W7K_07375"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 338272 338802 . - . gene_id "W7K_07375"; transcript_id "KOF00156"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 338272 338802 . - . gene_id "W7K_07375"; transcript_id "KOF00156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00156-1"; +contig34 ena CDS 338275 338802 . - 0 gene_id "W7K_07375"; transcript_id "KOF00156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00156"; +contig34 ena start_codon 338800 338802 . - 0 gene_id "W7K_07375"; transcript_id "KOF00156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 338272 338274 . - 0 gene_id "W7K_07375"; transcript_id "KOF00156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 339200 340555 . + . gene_id "W7K_07380"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 339200 340555 . + . gene_id "W7K_07380"; transcript_id "KOF00157"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 339200 340555 . + . gene_id "W7K_07380"; transcript_id "KOF00157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00157-1"; +contig34 ena CDS 339200 340552 . + 0 gene_id "W7K_07380"; transcript_id "KOF00157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00157"; +contig34 ena start_codon 339200 339202 . + 0 gene_id "W7K_07380"; transcript_id "KOF00157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 340553 340555 . + 0 gene_id "W7K_07380"; transcript_id "KOF00157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 340556 340864 . - . gene_id "W7K_07385"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 340556 340864 . - . gene_id "W7K_07385"; transcript_id "KOF00158"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 340556 340864 . - . gene_id "W7K_07385"; transcript_id "KOF00158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00158-1"; +contig34 ena CDS 340559 340864 . - 0 gene_id "W7K_07385"; transcript_id "KOF00158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00158"; +contig34 ena start_codon 340862 340864 . - 0 gene_id "W7K_07385"; transcript_id "KOF00158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 340556 340558 . - 0 gene_id "W7K_07385"; transcript_id "KOF00158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 340857 341399 . - . gene_id "W7K_07390"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 340857 341399 . - . gene_id "W7K_07390"; transcript_id "KOF00159"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 340857 341399 . - . gene_id "W7K_07390"; transcript_id "KOF00159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00159-1"; +contig34 ena CDS 340860 341399 . - 0 gene_id "W7K_07390"; transcript_id "KOF00159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00159"; +contig34 ena start_codon 341397 341399 . - 0 gene_id "W7K_07390"; transcript_id "KOF00159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 340857 340859 . - 0 gene_id "W7K_07390"; transcript_id "KOF00159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 341462 342343 . - . gene_id "W7K_07395"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 341462 342343 . - . gene_id "W7K_07395"; transcript_id "KOF00160"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 341462 342343 . - . gene_id "W7K_07395"; transcript_id "KOF00160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00160-1"; +contig34 ena CDS 341465 342343 . - 0 gene_id "W7K_07395"; transcript_id "KOF00160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00160"; +contig34 ena start_codon 342341 342343 . - 0 gene_id "W7K_07395"; transcript_id "KOF00160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 341462 341464 . - 0 gene_id "W7K_07395"; transcript_id "KOF00160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 342340 343380 . - . gene_id "W7K_07400"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 342340 343380 . - . gene_id "W7K_07400"; transcript_id "KOF00161"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 342340 343380 . - . gene_id "W7K_07400"; transcript_id "KOF00161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00161-1"; +contig34 ena CDS 342343 343380 . - 0 gene_id "W7K_07400"; transcript_id "KOF00161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00161"; +contig34 ena start_codon 343378 343380 . - 0 gene_id "W7K_07400"; transcript_id "KOF00161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 342340 342342 . - 0 gene_id "W7K_07400"; transcript_id "KOF00161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 343473 344399 . + . gene_id "W7K_07405"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 343473 344399 . + . gene_id "W7K_07405"; transcript_id "KOF00162"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 343473 344399 . + . gene_id "W7K_07405"; transcript_id "KOF00162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00162-1"; +contig34 ena CDS 343473 344396 . + 0 gene_id "W7K_07405"; transcript_id "KOF00162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00162"; +contig34 ena start_codon 343473 343475 . + 0 gene_id "W7K_07405"; transcript_id "KOF00162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 344397 344399 . + 0 gene_id "W7K_07405"; transcript_id "KOF00162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 344396 344857 . + . gene_id "W7K_07410"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 344396 344857 . + . gene_id "W7K_07410"; transcript_id "KOF00163"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 344396 344857 . + . gene_id "W7K_07410"; transcript_id "KOF00163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00163-1"; +contig34 ena CDS 344396 344854 . + 0 gene_id "W7K_07410"; transcript_id "KOF00163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00163"; +contig34 ena start_codon 344396 344398 . + 0 gene_id "W7K_07410"; transcript_id "KOF00163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 344855 344857 . + 0 gene_id "W7K_07410"; transcript_id "KOF00163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 344868 345293 . + . gene_id "W7K_07415"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 344868 345293 . + . gene_id "W7K_07415"; transcript_id "KOF00164"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 344868 345293 . + . gene_id "W7K_07415"; transcript_id "KOF00164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00164-1"; +contig34 ena CDS 344868 345290 . + 0 gene_id "W7K_07415"; transcript_id "KOF00164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00164"; +contig34 ena start_codon 344868 344870 . + 0 gene_id "W7K_07415"; transcript_id "KOF00164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 345291 345293 . + 0 gene_id "W7K_07415"; transcript_id "KOF00164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 345290 345520 . + . gene_id "W7K_07420"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 345290 345520 . + . gene_id "W7K_07420"; transcript_id "KOF00165"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 345290 345520 . + . gene_id "W7K_07420"; transcript_id "KOF00165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00165-1"; +contig34 ena CDS 345290 345517 . + 0 gene_id "W7K_07420"; transcript_id "KOF00165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00165"; +contig34 ena start_codon 345290 345292 . + 0 gene_id "W7K_07420"; transcript_id "KOF00165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 345518 345520 . + 0 gene_id "W7K_07420"; transcript_id "KOF00165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 345528 346223 . - . gene_id "W7K_07425"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 345528 346223 . - . gene_id "W7K_07425"; transcript_id "KOF00166"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 345528 346223 . - . gene_id "W7K_07425"; transcript_id "KOF00166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00166-1"; +contig34 ena CDS 345531 346223 . - 0 gene_id "W7K_07425"; transcript_id "KOF00166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00166"; +contig34 ena start_codon 346221 346223 . - 0 gene_id "W7K_07425"; transcript_id "KOF00166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 345528 345530 . - 0 gene_id "W7K_07425"; transcript_id "KOF00166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 346328 347068 . - . gene_id "W7K_07430"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 346328 347068 . - . gene_id "W7K_07430"; transcript_id "KOF00167"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 346328 347068 . - . gene_id "W7K_07430"; transcript_id "KOF00167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00167-1"; +contig34 ena CDS 346331 347068 . - 0 gene_id "W7K_07430"; transcript_id "KOF00167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00167"; +contig34 ena start_codon 347066 347068 . - 0 gene_id "W7K_07430"; transcript_id "KOF00167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 346328 346330 . - 0 gene_id "W7K_07430"; transcript_id "KOF00167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 347359 348663 . - . gene_id "W7K_07435"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 347359 348663 . - . gene_id "W7K_07435"; transcript_id "KOF00168"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 347359 348663 . - . gene_id "W7K_07435"; transcript_id "KOF00168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00168-1"; +contig34 ena CDS 347362 348663 . - 0 gene_id "W7K_07435"; transcript_id "KOF00168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00168"; +contig34 ena start_codon 348661 348663 . - 0 gene_id "W7K_07435"; transcript_id "KOF00168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 347359 347361 . - 0 gene_id "W7K_07435"; transcript_id "KOF00168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 348818 350392 . + . gene_id "W7K_07440"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 348818 350392 . + . gene_id "W7K_07440"; transcript_id "KOF00169"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 348818 350392 . + . gene_id "W7K_07440"; transcript_id "KOF00169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00169-1"; +contig34 ena CDS 348818 350389 . + 0 gene_id "W7K_07440"; transcript_id "KOF00169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00169"; +contig34 ena start_codon 348818 348820 . + 0 gene_id "W7K_07440"; transcript_id "KOF00169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena stop_codon 350390 350392 . + 0 gene_id "W7K_07440"; transcript_id "KOF00169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena gene 350480 351594 . + . gene_id "W7K_07445"; gene_source "ena"; gene_biotype "protein_coding"; +contig34 ena transcript 350480 351594 . + . gene_id "W7K_07445"; transcript_id "KOF00170"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig34 ena exon 350480 351594 . + . gene_id "W7K_07445"; transcript_id "KOF00170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00170-1"; +contig34 ena CDS 350480 351594 . + 0 gene_id "W7K_07445"; transcript_id "KOF00170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00170"; +contig34 ena start_codon 350480 350482 . + 0 gene_id "W7K_07445"; transcript_id "KOF00170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 60 485 . - . gene_id "W7K_18475"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 60 485 . - . gene_id "W7K_18475"; transcript_id "KOE97473"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 60 485 . - . gene_id "W7K_18475"; transcript_id "KOE97473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97473-1"; +contig08 ena CDS 63 485 . - 0 gene_id "W7K_18475"; transcript_id "KOE97473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97473"; +contig08 ena start_codon 483 485 . - 0 gene_id "W7K_18475"; transcript_id "KOE97473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 60 62 . - 0 gene_id "W7K_18475"; transcript_id "KOE97473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 529 807 . - . gene_id "W7K_18480"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 529 807 . - . gene_id "W7K_18480"; transcript_id "KOE97474"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 529 807 . - . gene_id "W7K_18480"; transcript_id "KOE97474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97474-1"; +contig08 ena CDS 532 807 . - 0 gene_id "W7K_18480"; transcript_id "KOE97474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97474"; +contig08 ena start_codon 805 807 . - 0 gene_id "W7K_18480"; transcript_id "KOE97474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 529 531 . - 0 gene_id "W7K_18480"; transcript_id "KOE97474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 842 1129 . - . gene_id "W7K_18485"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 842 1129 . - . gene_id "W7K_18485"; transcript_id "KOE97475"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 842 1129 . - . gene_id "W7K_18485"; transcript_id "KOE97475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97475-1"; +contig08 ena CDS 845 1129 . - 0 gene_id "W7K_18485"; transcript_id "KOE97475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97475"; +contig08 ena start_codon 1127 1129 . - 0 gene_id "W7K_18485"; transcript_id "KOE97475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 842 844 . - 0 gene_id "W7K_18485"; transcript_id "KOE97475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 1312 3201 . - . gene_id "W7K_18490"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 1312 3201 . - . gene_id "W7K_18490"; transcript_id "KOE97476"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 1312 3201 . - . gene_id "W7K_18490"; transcript_id "KOE97476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97476-1"; +contig08 ena CDS 1315 3201 . - 0 gene_id "W7K_18490"; transcript_id "KOE97476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97476"; +contig08 ena start_codon 3199 3201 . - 0 gene_id "W7K_18490"; transcript_id "KOE97476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 1312 1314 . - 0 gene_id "W7K_18490"; transcript_id "KOE97476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 3299 4093 . - . gene_id "W7K_18495"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 3299 4093 . - . gene_id "W7K_18495"; transcript_id "KOE97477"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 3299 4093 . - . gene_id "W7K_18495"; transcript_id "KOE97477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97477-1"; +contig08 ena CDS 3302 4093 . - 0 gene_id "W7K_18495"; transcript_id "KOE97477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97477"; +contig08 ena start_codon 4091 4093 . - 0 gene_id "W7K_18495"; transcript_id "KOE97477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 3299 3301 . - 0 gene_id "W7K_18495"; transcript_id "KOE97477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 4235 6412 . - . gene_id "W7K_18500"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 4235 6412 . - . gene_id "W7K_18500"; transcript_id "KOE97478"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 4235 6412 . - . gene_id "W7K_18500"; transcript_id "KOE97478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97478-1"; +contig08 ena CDS 4238 6412 . - 0 gene_id "W7K_18500"; transcript_id "KOE97478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97478"; +contig08 ena start_codon 6410 6412 . - 0 gene_id "W7K_18500"; transcript_id "KOE97478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 4235 4237 . - 0 gene_id "W7K_18500"; transcript_id "KOE97478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 6566 9688 . - . gene_id "W7K_18505"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 6566 9688 . - . gene_id "W7K_18505"; transcript_id "KOE97479"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 6566 9688 . - . gene_id "W7K_18505"; transcript_id "KOE97479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97479-1"; +contig08 ena CDS 6569 9688 . - 0 gene_id "W7K_18505"; transcript_id "KOE97479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97479"; +contig08 ena start_codon 9686 9688 . - 0 gene_id "W7K_18505"; transcript_id "KOE97479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 6566 6568 . - 0 gene_id "W7K_18505"; transcript_id "KOE97479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 9720 12953 . - . gene_id "W7K_18510"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 9720 12953 . - . gene_id "W7K_18510"; transcript_id "KOE97480"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 9720 12953 . - . gene_id "W7K_18510"; transcript_id "KOE97480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97480-1"; +contig08 ena CDS 9723 12953 . - 0 gene_id "W7K_18510"; transcript_id "KOE97480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97480"; +contig08 ena start_codon 12951 12953 . - 0 gene_id "W7K_18510"; transcript_id "KOE97480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 9720 9722 . - 0 gene_id "W7K_18510"; transcript_id "KOE97480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 13027 14268 . - . gene_id "W7K_18515"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 13027 14268 . - . gene_id "W7K_18515"; transcript_id "KOE97481"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 13027 14268 . - . gene_id "W7K_18515"; transcript_id "KOE97481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97481-1"; +contig08 ena CDS 13030 14268 . - 0 gene_id "W7K_18515"; transcript_id "KOE97481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97481"; +contig08 ena start_codon 14266 14268 . - 0 gene_id "W7K_18515"; transcript_id "KOE97481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 13027 13029 . - 0 gene_id "W7K_18515"; transcript_id "KOE97481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 14457 15776 . + . gene_id "W7K_18520"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 14457 15776 . + . gene_id "W7K_18520"; transcript_id "KOE97711"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 14457 15776 . + . gene_id "W7K_18520"; transcript_id "KOE97711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97711-1"; +contig08 ena CDS 14457 15773 . + 0 gene_id "W7K_18520"; transcript_id "KOE97711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97711"; +contig08 ena start_codon 14457 14459 . + 0 gene_id "W7K_18520"; transcript_id "KOE97711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 15774 15776 . + 0 gene_id "W7K_18520"; transcript_id "KOE97711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 16312 17130 . + . gene_id "W7K_18525"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 16312 17130 . + . gene_id "W7K_18525"; transcript_id "KOE97482"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 16312 17130 . + . gene_id "W7K_18525"; transcript_id "KOE97482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97482-1"; +contig08 ena CDS 16312 17127 . + 0 gene_id "W7K_18525"; transcript_id "KOE97482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97482"; +contig08 ena start_codon 16312 16314 . + 0 gene_id "W7K_18525"; transcript_id "KOE97482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 17128 17130 . + 0 gene_id "W7K_18525"; transcript_id "KOE97482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 17343 17636 . + . gene_id "W7K_18530"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 17343 17636 . + . gene_id "W7K_18530"; transcript_id "KOE97483"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 17343 17636 . + . gene_id "W7K_18530"; transcript_id "KOE97483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97483-1"; +contig08 ena CDS 17343 17633 . + 0 gene_id "W7K_18530"; transcript_id "KOE97483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97483"; +contig08 ena start_codon 17343 17345 . + 0 gene_id "W7K_18530"; transcript_id "KOE97483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 17634 17636 . + 0 gene_id "W7K_18530"; transcript_id "KOE97483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 17679 18191 . + . gene_id "W7K_18535"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 17679 18191 . + . gene_id "W7K_18535"; transcript_id "KOE97484"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 17679 18191 . + . gene_id "W7K_18535"; transcript_id "KOE97484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97484-1"; +contig08 ena CDS 17679 18188 . + 0 gene_id "W7K_18535"; transcript_id "KOE97484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97484"; +contig08 ena start_codon 17679 17681 . + 0 gene_id "W7K_18535"; transcript_id "KOE97484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 18189 18191 . + 0 gene_id "W7K_18535"; transcript_id "KOE97484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 19086 21308 . + . gene_id "W7K_18540"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 19086 21308 . + . gene_id "W7K_18540"; transcript_id "KOE97485"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 19086 21308 . + . gene_id "W7K_18540"; transcript_id "KOE97485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97485-1"; +contig08 ena CDS 19086 21305 . + 0 gene_id "W7K_18540"; transcript_id "KOE97485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97485"; +contig08 ena start_codon 19086 19088 . + 0 gene_id "W7K_18540"; transcript_id "KOE97485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 21306 21308 . + 0 gene_id "W7K_18540"; transcript_id "KOE97485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 21587 22552 . + . gene_id "W7K_18545"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 21587 22552 . + . gene_id "W7K_18545"; transcript_id "KOE97486"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 21587 22552 . + . gene_id "W7K_18545"; transcript_id "KOE97486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97486-1"; +contig08 ena CDS 21587 22549 . + 0 gene_id "W7K_18545"; transcript_id "KOE97486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97486"; +contig08 ena start_codon 21587 21589 . + 0 gene_id "W7K_18545"; transcript_id "KOE97486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 22550 22552 . + 0 gene_id "W7K_18545"; transcript_id "KOE97486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 22545 23093 . + . gene_id "W7K_18550"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 22545 23093 . + . gene_id "W7K_18550"; transcript_id "KOE97487"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 22545 23093 . + . gene_id "W7K_18550"; transcript_id "KOE97487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97487-1"; +contig08 ena CDS 22545 23090 . + 0 gene_id "W7K_18550"; transcript_id "KOE97487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97487"; +contig08 ena start_codon 22545 22547 . + 0 gene_id "W7K_18550"; transcript_id "KOE97487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 23091 23093 . + 0 gene_id "W7K_18550"; transcript_id "KOE97487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 23086 23502 . + . gene_id "W7K_18555"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 23086 23502 . + . gene_id "W7K_18555"; transcript_id "KOE97488"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 23086 23502 . + . gene_id "W7K_18555"; transcript_id "KOE97488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97488-1"; +contig08 ena CDS 23086 23499 . + 0 gene_id "W7K_18555"; transcript_id "KOE97488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97488"; +contig08 ena start_codon 23086 23088 . + 0 gene_id "W7K_18555"; transcript_id "KOE97488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 23500 23502 . + 0 gene_id "W7K_18555"; transcript_id "KOE97488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 23556 23915 . + . gene_id "W7K_18560"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 23556 23915 . + . gene_id "W7K_18560"; transcript_id "KOE97489"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 23556 23915 . + . gene_id "W7K_18560"; transcript_id "KOE97489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97489-1"; +contig08 ena CDS 23556 23912 . + 0 gene_id "W7K_18560"; transcript_id "KOE97489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97489"; +contig08 ena start_codon 23556 23558 . + 0 gene_id "W7K_18560"; transcript_id "KOE97489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 23913 23915 . + 0 gene_id "W7K_18560"; transcript_id "KOE97489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 24080 25810 . + . gene_id "W7K_18565"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 24080 25810 . + . gene_id "W7K_18565"; transcript_id "KOE97490"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 24080 25810 . + . gene_id "W7K_18565"; transcript_id "KOE97490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97490-1"; +contig08 ena CDS 24080 25807 . + 0 gene_id "W7K_18565"; transcript_id "KOE97490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97490"; +contig08 ena start_codon 24080 24082 . + 0 gene_id "W7K_18565"; transcript_id "KOE97490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 25808 25810 . + 0 gene_id "W7K_18565"; transcript_id "KOE97490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 25872 26762 . + . gene_id "W7K_18570"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 25872 26762 . + . gene_id "W7K_18570"; transcript_id "KOE97712"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 25872 26762 . + . gene_id "W7K_18570"; transcript_id "KOE97712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97712-1"; +contig08 ena CDS 25872 26759 . + 0 gene_id "W7K_18570"; transcript_id "KOE97712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97712"; +contig08 ena start_codon 25872 25874 . + 0 gene_id "W7K_18570"; transcript_id "KOE97712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 26760 26762 . + 0 gene_id "W7K_18570"; transcript_id "KOE97712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 26797 28371 . - . gene_id "W7K_18575"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 26797 28371 . - . gene_id "W7K_18575"; transcript_id "KOE97491"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 26797 28371 . - . gene_id "W7K_18575"; transcript_id "KOE97491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97491-1"; +contig08 ena CDS 26800 28371 . - 0 gene_id "W7K_18575"; transcript_id "KOE97491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97491"; +contig08 ena start_codon 28369 28371 . - 0 gene_id "W7K_18575"; transcript_id "KOE97491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 26797 26799 . - 0 gene_id "W7K_18575"; transcript_id "KOE97491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 28578 30320 . - . gene_id "W7K_18580"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 28578 30320 . - . gene_id "W7K_18580"; transcript_id "KOE97492"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 28578 30320 . - . gene_id "W7K_18580"; transcript_id "KOE97492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97492-1"; +contig08 ena CDS 28581 30320 . - 0 gene_id "W7K_18580"; transcript_id "KOE97492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97492"; +contig08 ena start_codon 30318 30320 . - 0 gene_id "W7K_18580"; transcript_id "KOE97492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 28578 28580 . - 0 gene_id "W7K_18580"; transcript_id "KOE97492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 30549 30878 . - . gene_id "W7K_18585"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 30549 30878 . - . gene_id "W7K_18585"; transcript_id "KOE97493"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 30549 30878 . - . gene_id "W7K_18585"; transcript_id "KOE97493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97493-1"; +contig08 ena CDS 30552 30878 . - 0 gene_id "W7K_18585"; transcript_id "KOE97493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97493"; +contig08 ena start_codon 30876 30878 . - 0 gene_id "W7K_18585"; transcript_id "KOE97493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 30549 30551 . - 0 gene_id "W7K_18585"; transcript_id "KOE97493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 31389 33110 . + . gene_id "W7K_18590"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 31389 33110 . + . gene_id "W7K_18590"; transcript_id "KOE97494"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 31389 33110 . + . gene_id "W7K_18590"; transcript_id "KOE97494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97494-1"; +contig08 ena CDS 31389 33107 . + 0 gene_id "W7K_18590"; transcript_id "KOE97494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97494"; +contig08 ena start_codon 31389 31391 . + 0 gene_id "W7K_18590"; transcript_id "KOE97494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 33108 33110 . + 0 gene_id "W7K_18590"; transcript_id "KOE97494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 33280 33966 . + . gene_id "W7K_18595"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 33280 33966 . + . gene_id "W7K_18595"; transcript_id "KOE97495"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 33280 33966 . + . gene_id "W7K_18595"; transcript_id "KOE97495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97495-1"; +contig08 ena CDS 33280 33963 . + 0 gene_id "W7K_18595"; transcript_id "KOE97495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97495"; +contig08 ena start_codon 33280 33282 . + 0 gene_id "W7K_18595"; transcript_id "KOE97495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 33964 33966 . + 0 gene_id "W7K_18595"; transcript_id "KOE97495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 33970 34917 . + . gene_id "W7K_18600"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 33970 34917 . + . gene_id "W7K_18600"; transcript_id "KOE97496"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 33970 34917 . + . gene_id "W7K_18600"; transcript_id "KOE97496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97496-1"; +contig08 ena CDS 33970 34914 . + 0 gene_id "W7K_18600"; transcript_id "KOE97496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97496"; +contig08 ena start_codon 33970 33972 . + 0 gene_id "W7K_18600"; transcript_id "KOE97496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 34915 34917 . + 0 gene_id "W7K_18600"; transcript_id "KOE97496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 34925 35767 . + . gene_id "W7K_18605"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 34925 35767 . + . gene_id "W7K_18605"; transcript_id "KOE97497"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 34925 35767 . + . gene_id "W7K_18605"; transcript_id "KOE97497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97497-1"; +contig08 ena CDS 34925 35764 . + 0 gene_id "W7K_18605"; transcript_id "KOE97497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97497"; +contig08 ena start_codon 34925 34927 . + 0 gene_id "W7K_18605"; transcript_id "KOE97497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 35765 35767 . + 0 gene_id "W7K_18605"; transcript_id "KOE97497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 35764 36477 . + . gene_id "W7K_18610"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 35764 36477 . + . gene_id "W7K_18610"; transcript_id "KOE97498"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 35764 36477 . + . gene_id "W7K_18610"; transcript_id "KOE97498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97498-1"; +contig08 ena CDS 35764 36474 . + 0 gene_id "W7K_18610"; transcript_id "KOE97498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97498"; +contig08 ena start_codon 35764 35766 . + 0 gene_id "W7K_18610"; transcript_id "KOE97498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 36475 36477 . + 0 gene_id "W7K_18610"; transcript_id "KOE97498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 36757 37632 . + . gene_id "W7K_18615"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 36757 37632 . + . gene_id "W7K_18615"; transcript_id "KOE97499"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 36757 37632 . + . gene_id "W7K_18615"; transcript_id "KOE97499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97499-1"; +contig08 ena CDS 36757 37629 . + 0 gene_id "W7K_18615"; transcript_id "KOE97499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97499"; +contig08 ena start_codon 36757 36759 . + 0 gene_id "W7K_18615"; transcript_id "KOE97499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 37630 37632 . + 0 gene_id "W7K_18615"; transcript_id "KOE97499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 38175 38507 . + . gene_id "W7K_18625"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 38175 38507 . + . gene_id "W7K_18625"; transcript_id "KOE97500"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 38175 38507 . + . gene_id "W7K_18625"; transcript_id "KOE97500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97500-1"; +contig08 ena CDS 38175 38504 . + 0 gene_id "W7K_18625"; transcript_id "KOE97500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97500"; +contig08 ena start_codon 38175 38177 . + 0 gene_id "W7K_18625"; transcript_id "KOE97500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 38505 38507 . + 0 gene_id "W7K_18625"; transcript_id "KOE97500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 38584 39867 . - . gene_id "W7K_18630"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 38584 39867 . - . gene_id "W7K_18630"; transcript_id "KOE97501"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 38584 39867 . - . gene_id "W7K_18630"; transcript_id "KOE97501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97501-1"; +contig08 ena CDS 38587 39867 . - 0 gene_id "W7K_18630"; transcript_id "KOE97501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97501"; +contig08 ena start_codon 39865 39867 . - 0 gene_id "W7K_18630"; transcript_id "KOE97501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 38584 38586 . - 0 gene_id "W7K_18630"; transcript_id "KOE97501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 39926 40804 . - . gene_id "W7K_18635"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 39926 40804 . - . gene_id "W7K_18635"; transcript_id "KOE97502"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 39926 40804 . - . gene_id "W7K_18635"; transcript_id "KOE97502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97502-1"; +contig08 ena CDS 39929 40804 . - 0 gene_id "W7K_18635"; transcript_id "KOE97502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97502"; +contig08 ena start_codon 40802 40804 . - 0 gene_id "W7K_18635"; transcript_id "KOE97502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 39926 39928 . - 0 gene_id "W7K_18635"; transcript_id "KOE97502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 40821 42404 . - . gene_id "W7K_18640"; gene_name "purH"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 40821 42404 . - . gene_id "W7K_18640"; transcript_id "KOE97503"; gene_name "purH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "purH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 40821 42404 . - . gene_id "W7K_18640"; transcript_id "KOE97503"; exon_number "1"; gene_name "purH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "purH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97503-1"; +contig08 ena CDS 40824 42404 . - 0 gene_id "W7K_18640"; transcript_id "KOE97503"; exon_number "1"; gene_name "purH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "purH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97503"; +contig08 ena start_codon 42402 42404 . - 0 gene_id "W7K_18640"; transcript_id "KOE97503"; exon_number "1"; gene_name "purH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "purH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 40821 40823 . - 0 gene_id "W7K_18640"; transcript_id "KOE97503"; exon_number "1"; gene_name "purH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "purH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 42628 43245 . + . gene_id "W7K_18645"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 42628 43245 . + . gene_id "W7K_18645"; transcript_id "KOE97504"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 42628 43245 . + . gene_id "W7K_18645"; transcript_id "KOE97504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97504-1"; +contig08 ena CDS 42628 43242 . + 0 gene_id "W7K_18645"; transcript_id "KOE97504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97504"; +contig08 ena start_codon 42628 42630 . + 0 gene_id "W7K_18645"; transcript_id "KOE97504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 43243 43245 . + 0 gene_id "W7K_18645"; transcript_id "KOE97504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 43280 45031 . + . gene_id "W7K_18650"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 43280 45031 . + . gene_id "W7K_18650"; transcript_id "KOE97505"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 43280 45031 . + . gene_id "W7K_18650"; transcript_id "KOE97505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97505-1"; +contig08 ena CDS 43280 45028 . + 0 gene_id "W7K_18650"; transcript_id "KOE97505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97505"; +contig08 ena start_codon 43280 43282 . + 0 gene_id "W7K_18650"; transcript_id "KOE97505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 45029 45031 . + 0 gene_id "W7K_18650"; transcript_id "KOE97505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 45031 46359 . + . gene_id "W7K_18655"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 45031 46359 . + . gene_id "W7K_18655"; transcript_id "KOE97506"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 45031 46359 . + . gene_id "W7K_18655"; transcript_id "KOE97506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97506-1"; +contig08 ena CDS 45031 46356 . + 0 gene_id "W7K_18655"; transcript_id "KOE97506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97506"; +contig08 ena start_codon 45031 45033 . + 0 gene_id "W7K_18655"; transcript_id "KOE97506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 46357 46359 . + 0 gene_id "W7K_18655"; transcript_id "KOE97506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 46356 46793 . + . gene_id "W7K_18660"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 46356 46793 . + . gene_id "W7K_18660"; transcript_id "KOE97507"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 46356 46793 . + . gene_id "W7K_18660"; transcript_id "KOE97507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97507-1"; +contig08 ena CDS 46356 46790 . + 0 gene_id "W7K_18660"; transcript_id "KOE97507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97507"; +contig08 ena start_codon 46356 46358 . + 0 gene_id "W7K_18660"; transcript_id "KOE97507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 46791 46793 . + 0 gene_id "W7K_18660"; transcript_id "KOE97507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 46807 47436 . + . gene_id "W7K_18665"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 46807 47436 . + . gene_id "W7K_18665"; transcript_id "KOE97508"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 46807 47436 . + . gene_id "W7K_18665"; transcript_id "KOE97508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97508-1"; +contig08 ena CDS 46807 47433 . + 0 gene_id "W7K_18665"; transcript_id "KOE97508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97508"; +contig08 ena start_codon 46807 46809 . + 0 gene_id "W7K_18665"; transcript_id "KOE97508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 47434 47436 . + 0 gene_id "W7K_18665"; transcript_id "KOE97508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 47433 48428 . + . gene_id "W7K_18670"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 47433 48428 . + . gene_id "W7K_18670"; transcript_id "KOE97509"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 47433 48428 . + . gene_id "W7K_18670"; transcript_id "KOE97509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97509-1"; +contig08 ena CDS 47433 48425 . + 0 gene_id "W7K_18670"; transcript_id "KOE97509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97509"; +contig08 ena start_codon 47433 47435 . + 0 gene_id "W7K_18670"; transcript_id "KOE97509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 48426 48428 . + 0 gene_id "W7K_18670"; transcript_id "KOE97509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 48522 48797 . - . gene_id "W7K_18675"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 48522 48797 . - . gene_id "W7K_18675"; transcript_id "KOE97510"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 48522 48797 . - . gene_id "W7K_18675"; transcript_id "KOE97510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97510-1"; +contig08 ena CDS 48525 48797 . - 0 gene_id "W7K_18675"; transcript_id "KOE97510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97510"; +contig08 ena start_codon 48795 48797 . - 0 gene_id "W7K_18675"; transcript_id "KOE97510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 48522 48524 . - 0 gene_id "W7K_18675"; transcript_id "KOE97510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 48912 49682 . - . gene_id "W7K_18680"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 48912 49682 . - . gene_id "W7K_18680"; transcript_id "KOE97511"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 48912 49682 . - . gene_id "W7K_18680"; transcript_id "KOE97511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97511-1"; +contig08 ena CDS 48915 49682 . - 0 gene_id "W7K_18680"; transcript_id "KOE97511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97511"; +contig08 ena start_codon 49680 49682 . - 0 gene_id "W7K_18680"; transcript_id "KOE97511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 48912 48914 . - 0 gene_id "W7K_18680"; transcript_id "KOE97511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 49725 50645 . - . gene_id "W7K_18685"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 49725 50645 . - . gene_id "W7K_18685"; transcript_id "KOE97713"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 49725 50645 . - . gene_id "W7K_18685"; transcript_id "KOE97713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97713-1"; +contig08 ena CDS 49728 50645 . - 0 gene_id "W7K_18685"; transcript_id "KOE97713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97713"; +contig08 ena start_codon 50643 50645 . - 0 gene_id "W7K_18685"; transcript_id "KOE97713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 49725 49727 . - 0 gene_id "W7K_18685"; transcript_id "KOE97713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 50809 51774 . + . gene_id "W7K_18690"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 50809 51774 . + . gene_id "W7K_18690"; transcript_id "KOE97512"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 50809 51774 . + . gene_id "W7K_18690"; transcript_id "KOE97512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97512-1"; +contig08 ena CDS 50809 51771 . + 0 gene_id "W7K_18690"; transcript_id "KOE97512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97512"; +contig08 ena start_codon 50809 50811 . + 0 gene_id "W7K_18690"; transcript_id "KOE97512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 51772 51774 . + 0 gene_id "W7K_18690"; transcript_id "KOE97512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 51771 52145 . + . gene_id "W7K_18695"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 51771 52145 . + . gene_id "W7K_18695"; transcript_id "KOE97513"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 51771 52145 . + . gene_id "W7K_18695"; transcript_id "KOE97513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97513-1"; +contig08 ena CDS 51771 52142 . + 0 gene_id "W7K_18695"; transcript_id "KOE97513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97513"; +contig08 ena start_codon 51771 51773 . + 0 gene_id "W7K_18695"; transcript_id "KOE97513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 52143 52145 . + 0 gene_id "W7K_18695"; transcript_id "KOE97513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 52287 53654 . - . gene_id "W7K_18700"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 52287 53654 . - . gene_id "W7K_18700"; transcript_id "KOE97514"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 52287 53654 . - . gene_id "W7K_18700"; transcript_id "KOE97514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97514-1"; +contig08 ena CDS 52290 53654 . - 0 gene_id "W7K_18700"; transcript_id "KOE97514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97514"; +contig08 ena start_codon 53652 53654 . - 0 gene_id "W7K_18700"; transcript_id "KOE97514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 52287 52289 . - 0 gene_id "W7K_18700"; transcript_id "KOE97514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 53665 54144 . - . gene_id "W7K_18705"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 53665 54144 . - . gene_id "W7K_18705"; transcript_id "KOE97515"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 53665 54144 . - . gene_id "W7K_18705"; transcript_id "KOE97515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97515-1"; +contig08 ena CDS 53668 54144 . - 0 gene_id "W7K_18705"; transcript_id "KOE97515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97515"; +contig08 ena start_codon 54142 54144 . - 0 gene_id "W7K_18705"; transcript_id "KOE97515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 53665 53667 . - 0 gene_id "W7K_18705"; transcript_id "KOE97515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 54198 54623 . - . gene_id "W7K_18710"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 54198 54623 . - . gene_id "W7K_18710"; transcript_id "KOE97516"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 54198 54623 . - . gene_id "W7K_18710"; transcript_id "KOE97516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97516-1"; +contig08 ena CDS 54201 54623 . - 0 gene_id "W7K_18710"; transcript_id "KOE97516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97516"; +contig08 ena start_codon 54621 54623 . - 0 gene_id "W7K_18710"; transcript_id "KOE97516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 54198 54200 . - 0 gene_id "W7K_18710"; transcript_id "KOE97516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 54620 55069 . - . gene_id "W7K_18715"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 54620 55069 . - . gene_id "W7K_18715"; transcript_id "KOE97517"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 54620 55069 . - . gene_id "W7K_18715"; transcript_id "KOE97517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97517-1"; +contig08 ena CDS 54623 55069 . - 0 gene_id "W7K_18715"; transcript_id "KOE97517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97517"; +contig08 ena start_codon 55067 55069 . - 0 gene_id "W7K_18715"; transcript_id "KOE97517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 54620 54622 . - 0 gene_id "W7K_18715"; transcript_id "KOE97517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 55429 56157 . - . gene_id "W7K_18720"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 55429 56157 . - . gene_id "W7K_18720"; transcript_id "KOE97518"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 55429 56157 . - . gene_id "W7K_18720"; transcript_id "KOE97518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97518-1"; +contig08 ena CDS 55432 56157 . - 0 gene_id "W7K_18720"; transcript_id "KOE97518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97518"; +contig08 ena start_codon 56155 56157 . - 0 gene_id "W7K_18720"; transcript_id "KOE97518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 55429 55431 . - 0 gene_id "W7K_18720"; transcript_id "KOE97518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 56326 57153 . + . gene_id "W7K_18725"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 56326 57153 . + . gene_id "W7K_18725"; transcript_id "KOE97519"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 56326 57153 . + . gene_id "W7K_18725"; transcript_id "KOE97519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97519-1"; +contig08 ena CDS 56326 57150 . + 0 gene_id "W7K_18725"; transcript_id "KOE97519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97519"; +contig08 ena start_codon 56326 56328 . + 0 gene_id "W7K_18725"; transcript_id "KOE97519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 57151 57153 . + 0 gene_id "W7K_18725"; transcript_id "KOE97519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 57223 57756 . - . gene_id "W7K_18730"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 57223 57756 . - . gene_id "W7K_18730"; transcript_id "KOE97520"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 57223 57756 . - . gene_id "W7K_18730"; transcript_id "KOE97520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97520-1"; +contig08 ena CDS 57226 57756 . - 0 gene_id "W7K_18730"; transcript_id "KOE97520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97520"; +contig08 ena start_codon 57754 57756 . - 0 gene_id "W7K_18730"; transcript_id "KOE97520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 57223 57225 . - 0 gene_id "W7K_18730"; transcript_id "KOE97520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 57884 58480 . + . gene_id "W7K_18735"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 57884 58480 . + . gene_id "W7K_18735"; transcript_id "KOE97521"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 57884 58480 . + . gene_id "W7K_18735"; transcript_id "KOE97521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97521-1"; +contig08 ena CDS 57884 58477 . + 0 gene_id "W7K_18735"; transcript_id "KOE97521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97521"; +contig08 ena start_codon 57884 57886 . + 0 gene_id "W7K_18735"; transcript_id "KOE97521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 58478 58480 . + 0 gene_id "W7K_18735"; transcript_id "KOE97521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 58497 59090 . + . gene_id "W7K_18740"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 58497 59090 . + . gene_id "W7K_18740"; transcript_id "KOE97522"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 58497 59090 . + . gene_id "W7K_18740"; transcript_id "KOE97522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97522-1"; +contig08 ena CDS 58497 59087 . + 0 gene_id "W7K_18740"; transcript_id "KOE97522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97522"; +contig08 ena start_codon 58497 58499 . + 0 gene_id "W7K_18740"; transcript_id "KOE97522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 59088 59090 . + 0 gene_id "W7K_18740"; transcript_id "KOE97522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 59104 59898 . - . gene_id "W7K_18745"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 59104 59898 . - . gene_id "W7K_18745"; transcript_id "KOE97523"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 59104 59898 . - . gene_id "W7K_18745"; transcript_id "KOE97523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97523-1"; +contig08 ena CDS 59107 59898 . - 0 gene_id "W7K_18745"; transcript_id "KOE97523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97523"; +contig08 ena start_codon 59896 59898 . - 0 gene_id "W7K_18745"; transcript_id "KOE97523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 59104 59106 . - 0 gene_id "W7K_18745"; transcript_id "KOE97523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 60020 61573 . + . gene_id "W7K_18750"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 60020 61573 . + . gene_id "W7K_18750"; transcript_id "KOE97524"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 60020 61573 . + . gene_id "W7K_18750"; transcript_id "KOE97524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97524-1"; +contig08 ena CDS 60020 61570 . + 0 gene_id "W7K_18750"; transcript_id "KOE97524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97524"; +contig08 ena start_codon 60020 60022 . + 0 gene_id "W7K_18750"; transcript_id "KOE97524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 61571 61573 . + 0 gene_id "W7K_18750"; transcript_id "KOE97524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 61616 62182 . + . gene_id "W7K_18755"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 61616 62182 . + . gene_id "W7K_18755"; transcript_id "KOE97525"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 61616 62182 . + . gene_id "W7K_18755"; transcript_id "KOE97525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97525-1"; +contig08 ena CDS 61616 62179 . + 0 gene_id "W7K_18755"; transcript_id "KOE97525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97525"; +contig08 ena start_codon 61616 61618 . + 0 gene_id "W7K_18755"; transcript_id "KOE97525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 62180 62182 . + 0 gene_id "W7K_18755"; transcript_id "KOE97525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 62432 63331 . + . gene_id "W7K_18760"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 62432 63331 . + . gene_id "W7K_18760"; transcript_id "KOE97526"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 62432 63331 . + . gene_id "W7K_18760"; transcript_id "KOE97526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97526-1"; +contig08 ena CDS 62432 63328 . + 0 gene_id "W7K_18760"; transcript_id "KOE97526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97526"; +contig08 ena start_codon 62432 62434 . + 0 gene_id "W7K_18760"; transcript_id "KOE97526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 63329 63331 . + 0 gene_id "W7K_18760"; transcript_id "KOE97526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 63423 64139 . - . gene_id "W7K_18765"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 63423 64139 . - . gene_id "W7K_18765"; transcript_id "KOE97527"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 63423 64139 . - . gene_id "W7K_18765"; transcript_id "KOE97527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97527-1"; +contig08 ena CDS 63426 64139 . - 0 gene_id "W7K_18765"; transcript_id "KOE97527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97527"; +contig08 ena start_codon 64137 64139 . - 0 gene_id "W7K_18765"; transcript_id "KOE97527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 63423 63425 . - 0 gene_id "W7K_18765"; transcript_id "KOE97527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 64202 65725 . - . gene_id "W7K_18770"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 64202 65725 . - . gene_id "W7K_18770"; transcript_id "KOE97528"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 64202 65725 . - . gene_id "W7K_18770"; transcript_id "KOE97528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97528-1"; +contig08 ena CDS 64205 65725 . - 0 gene_id "W7K_18770"; transcript_id "KOE97528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97528"; +contig08 ena start_codon 65723 65725 . - 0 gene_id "W7K_18770"; transcript_id "KOE97528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 64202 64204 . - 0 gene_id "W7K_18770"; transcript_id "KOE97528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 65751 66173 . - . gene_id "W7K_18775"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 65751 66173 . - . gene_id "W7K_18775"; transcript_id "KOE97529"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 65751 66173 . - . gene_id "W7K_18775"; transcript_id "KOE97529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97529-1"; +contig08 ena CDS 65754 66173 . - 0 gene_id "W7K_18775"; transcript_id "KOE97529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97529"; +contig08 ena start_codon 66171 66173 . - 0 gene_id "W7K_18775"; transcript_id "KOE97529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 65751 65753 . - 0 gene_id "W7K_18775"; transcript_id "KOE97529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 66330 67430 . + . gene_id "W7K_18780"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 66330 67430 . + . gene_id "W7K_18780"; transcript_id "KOE97530"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 66330 67430 . + . gene_id "W7K_18780"; transcript_id "KOE97530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97530-1"; +contig08 ena CDS 66330 67427 . + 0 gene_id "W7K_18780"; transcript_id "KOE97530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97530"; +contig08 ena start_codon 66330 66332 . + 0 gene_id "W7K_18780"; transcript_id "KOE97530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 67428 67430 . + 0 gene_id "W7K_18780"; transcript_id "KOE97530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 67415 68065 . + . gene_id "W7K_18785"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 67415 68065 . + . gene_id "W7K_18785"; transcript_id "KOE97531"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 67415 68065 . + . gene_id "W7K_18785"; transcript_id "KOE97531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97531-1"; +contig08 ena CDS 67415 68062 . + 0 gene_id "W7K_18785"; transcript_id "KOE97531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97531"; +contig08 ena start_codon 67415 67417 . + 0 gene_id "W7K_18785"; transcript_id "KOE97531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 68063 68065 . + 0 gene_id "W7K_18785"; transcript_id "KOE97531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 68088 68459 . + . gene_id "W7K_18790"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 68088 68459 . + . gene_id "W7K_18790"; transcript_id "KOE97532"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 68088 68459 . + . gene_id "W7K_18790"; transcript_id "KOE97532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97532-1"; +contig08 ena CDS 68088 68456 . + 0 gene_id "W7K_18790"; transcript_id "KOE97532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97532"; +contig08 ena start_codon 68088 68090 . + 0 gene_id "W7K_18790"; transcript_id "KOE97532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 68457 68459 . + 0 gene_id "W7K_18790"; transcript_id "KOE97532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 68525 69364 . - . gene_id "W7K_18795"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 68525 69364 . - . gene_id "W7K_18795"; transcript_id "KOE97533"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 68525 69364 . - . gene_id "W7K_18795"; transcript_id "KOE97533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97533-1"; +contig08 ena CDS 68528 69364 . - 0 gene_id "W7K_18795"; transcript_id "KOE97533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97533"; +contig08 ena start_codon 69362 69364 . - 0 gene_id "W7K_18795"; transcript_id "KOE97533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 68525 68527 . - 0 gene_id "W7K_18795"; transcript_id "KOE97533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 69567 72107 . + . gene_id "W7K_18800"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 69567 72107 . + . gene_id "W7K_18800"; transcript_id "KOE97534"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 69567 72107 . + . gene_id "W7K_18800"; transcript_id "KOE97534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97534-1"; +contig08 ena CDS 69567 72104 . + 0 gene_id "W7K_18800"; transcript_id "KOE97534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97534"; +contig08 ena start_codon 69567 69569 . + 0 gene_id "W7K_18800"; transcript_id "KOE97534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 72105 72107 . + 0 gene_id "W7K_18800"; transcript_id "KOE97534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 72229 74751 . - . gene_id "W7K_18805"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 72229 74751 . - . gene_id "W7K_18805"; transcript_id "KOE97535"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 72229 74751 . - . gene_id "W7K_18805"; transcript_id "KOE97535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97535-1"; +contig08 ena CDS 72232 74751 . - 0 gene_id "W7K_18805"; transcript_id "KOE97535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97535"; +contig08 ena start_codon 74749 74751 . - 0 gene_id "W7K_18805"; transcript_id "KOE97535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 72229 72231 . - 0 gene_id "W7K_18805"; transcript_id "KOE97535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 75372 75935 . - . gene_id "W7K_18810"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 75372 75935 . - . gene_id "W7K_18810"; transcript_id "KOE97536"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 75372 75935 . - . gene_id "W7K_18810"; transcript_id "KOE97536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97536-1"; +contig08 ena CDS 75375 75935 . - 0 gene_id "W7K_18810"; transcript_id "KOE97536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97536"; +contig08 ena start_codon 75933 75935 . - 0 gene_id "W7K_18810"; transcript_id "KOE97536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 75372 75374 . - 0 gene_id "W7K_18810"; transcript_id "KOE97536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 75932 78313 . - . gene_id "W7K_18815"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 75932 78313 . - . gene_id "W7K_18815"; transcript_id "KOE97537"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 75932 78313 . - . gene_id "W7K_18815"; transcript_id "KOE97537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97537-1"; +contig08 ena CDS 75935 78313 . - 0 gene_id "W7K_18815"; transcript_id "KOE97537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97537"; +contig08 ena start_codon 78311 78313 . - 0 gene_id "W7K_18815"; transcript_id "KOE97537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 75932 75934 . - 0 gene_id "W7K_18815"; transcript_id "KOE97537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 78310 78648 . - . gene_id "W7K_18820"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 78310 78648 . - . gene_id "W7K_18820"; transcript_id "KOE97538"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 78310 78648 . - . gene_id "W7K_18820"; transcript_id "KOE97538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97538-1"; +contig08 ena CDS 78313 78648 . - 0 gene_id "W7K_18820"; transcript_id "KOE97538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97538"; +contig08 ena start_codon 78646 78648 . - 0 gene_id "W7K_18820"; transcript_id "KOE97538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 78310 78312 . - 0 gene_id "W7K_18820"; transcript_id "KOE97538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 78717 80507 . - . gene_id "W7K_18825"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 78717 80507 . - . gene_id "W7K_18825"; transcript_id "KOE97539"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 78717 80507 . - . gene_id "W7K_18825"; transcript_id "KOE97539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97539-1"; +contig08 ena CDS 78720 80507 . - 0 gene_id "W7K_18825"; transcript_id "KOE97539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97539"; +contig08 ena start_codon 80505 80507 . - 0 gene_id "W7K_18825"; transcript_id "KOE97539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 78717 78719 . - 0 gene_id "W7K_18825"; transcript_id "KOE97539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 80859 81146 . + . gene_id "W7K_18830"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 80859 81146 . + . gene_id "W7K_18830"; transcript_id "KOE97540"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 80859 81146 . + . gene_id "W7K_18830"; transcript_id "KOE97540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97540-1"; +contig08 ena CDS 80859 81143 . + 0 gene_id "W7K_18830"; transcript_id "KOE97540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97540"; +contig08 ena start_codon 80859 80861 . + 0 gene_id "W7K_18830"; transcript_id "KOE97540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 81144 81146 . + 0 gene_id "W7K_18830"; transcript_id "KOE97540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 81230 82879 . + . gene_id "W7K_18835"; gene_name "groEL"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 81230 82879 . + . gene_id "W7K_18835"; transcript_id "KOE97541"; gene_name "groEL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "groEL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 81230 82879 . + . gene_id "W7K_18835"; transcript_id "KOE97541"; exon_number "1"; gene_name "groEL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "groEL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97541-1"; +contig08 ena CDS 81230 82876 . + 0 gene_id "W7K_18835"; transcript_id "KOE97541"; exon_number "1"; gene_name "groEL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "groEL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97541"; +contig08 ena start_codon 81230 81232 . + 0 gene_id "W7K_18835"; transcript_id "KOE97541"; exon_number "1"; gene_name "groEL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "groEL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 82877 82879 . + 0 gene_id "W7K_18835"; transcript_id "KOE97541"; exon_number "1"; gene_name "groEL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "groEL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 82994 83260 . - . gene_id "W7K_18840"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 82994 83260 . - . gene_id "W7K_18840"; transcript_id "KOE97542"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 82994 83260 . - . gene_id "W7K_18840"; transcript_id "KOE97542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97542-1"; +contig08 ena CDS 82997 83260 . - 0 gene_id "W7K_18840"; transcript_id "KOE97542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97542"; +contig08 ena start_codon 83258 83260 . - 0 gene_id "W7K_18840"; transcript_id "KOE97542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 82994 82996 . - 0 gene_id "W7K_18840"; transcript_id "KOE97542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 83334 84497 . - . gene_id "W7K_18845"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 83334 84497 . - . gene_id "W7K_18845"; transcript_id "KOE97543"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 83334 84497 . - . gene_id "W7K_18845"; transcript_id "KOE97543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97543-1"; +contig08 ena CDS 83337 84497 . - 0 gene_id "W7K_18845"; transcript_id "KOE97543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97543"; +contig08 ena start_codon 84495 84497 . - 0 gene_id "W7K_18845"; transcript_id "KOE97543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 83334 83336 . - 0 gene_id "W7K_18845"; transcript_id "KOE97543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 84565 85494 . - . gene_id "W7K_18850"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 84565 85494 . - . gene_id "W7K_18850"; transcript_id "KOE97544"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 84565 85494 . - . gene_id "W7K_18850"; transcript_id "KOE97544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97544-1"; +contig08 ena CDS 84568 85494 . - 0 gene_id "W7K_18850"; transcript_id "KOE97544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97544"; +contig08 ena start_codon 85492 85494 . - 0 gene_id "W7K_18850"; transcript_id "KOE97544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 84565 84567 . - 0 gene_id "W7K_18850"; transcript_id "KOE97544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 85601 86308 . + . gene_id "W7K_18855"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 85601 86308 . + . gene_id "W7K_18855"; transcript_id "KOE97545"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 85601 86308 . + . gene_id "W7K_18855"; transcript_id "KOE97545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97545-1"; +contig08 ena CDS 85601 86305 . + 0 gene_id "W7K_18855"; transcript_id "KOE97545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97545"; +contig08 ena start_codon 85601 85603 . + 0 gene_id "W7K_18855"; transcript_id "KOE97545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 86306 86308 . + 0 gene_id "W7K_18855"; transcript_id "KOE97545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 86341 87639 . + . gene_id "W7K_18860"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 86341 87639 . + . gene_id "W7K_18860"; transcript_id "KOE97714"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 86341 87639 . + . gene_id "W7K_18860"; transcript_id "KOE97714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97714-1"; +contig08 ena CDS 86341 87636 . + 0 gene_id "W7K_18860"; transcript_id "KOE97714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97714"; +contig08 ena start_codon 86341 86343 . + 0 gene_id "W7K_18860"; transcript_id "KOE97714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 87637 87639 . + 0 gene_id "W7K_18860"; transcript_id "KOE97714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 87712 88212 . + . gene_id "W7K_18865"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 87712 88212 . + . gene_id "W7K_18865"; transcript_id "KOE97546"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 87712 88212 . + . gene_id "W7K_18865"; transcript_id "KOE97546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97546-1"; +contig08 ena CDS 87712 88209 . + 0 gene_id "W7K_18865"; transcript_id "KOE97546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97546"; +contig08 ena start_codon 87712 87714 . + 0 gene_id "W7K_18865"; transcript_id "KOE97546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 88210 88212 . + 0 gene_id "W7K_18865"; transcript_id "KOE97546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 88209 88949 . + . gene_id "W7K_18870"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 88209 88949 . + . gene_id "W7K_18870"; transcript_id "KOE97547"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 88209 88949 . + . gene_id "W7K_18870"; transcript_id "KOE97547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97547-1"; +contig08 ena CDS 88209 88946 . + 0 gene_id "W7K_18870"; transcript_id "KOE97547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97547"; +contig08 ena start_codon 88209 88211 . + 0 gene_id "W7K_18870"; transcript_id "KOE97547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 88947 88949 . + 0 gene_id "W7K_18870"; transcript_id "KOE97547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 89005 89343 . + . gene_id "W7K_18875"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 89005 89343 . + . gene_id "W7K_18875"; transcript_id "KOE97548"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 89005 89343 . + . gene_id "W7K_18875"; transcript_id "KOE97548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97548-1"; +contig08 ena CDS 89005 89340 . + 0 gene_id "W7K_18875"; transcript_id "KOE97548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97548"; +contig08 ena start_codon 89005 89007 . + 0 gene_id "W7K_18875"; transcript_id "KOE97548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 89341 89343 . + 0 gene_id "W7K_18875"; transcript_id "KOE97548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 89456 89713 . + . gene_id "W7K_18880"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 89456 89713 . + . gene_id "W7K_18880"; transcript_id "KOE97549"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 89456 89713 . + . gene_id "W7K_18880"; transcript_id "KOE97549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97549-1"; +contig08 ena CDS 89456 89710 . + 0 gene_id "W7K_18880"; transcript_id "KOE97549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97549"; +contig08 ena start_codon 89456 89458 . + 0 gene_id "W7K_18880"; transcript_id "KOE97549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 89711 89713 . + 0 gene_id "W7K_18880"; transcript_id "KOE97549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 90009 91082 . + . gene_id "W7K_18885"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 90009 91082 . + . gene_id "W7K_18885"; transcript_id "KOE97550"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 90009 91082 . + . gene_id "W7K_18885"; transcript_id "KOE97550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97550-1"; +contig08 ena CDS 90009 91079 . + 0 gene_id "W7K_18885"; transcript_id "KOE97550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97550"; +contig08 ena start_codon 90009 90011 . + 0 gene_id "W7K_18885"; transcript_id "KOE97550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 91080 91082 . + 0 gene_id "W7K_18885"; transcript_id "KOE97550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 91354 91665 . + . gene_id "W7K_18890"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 91354 91665 . + . gene_id "W7K_18890"; transcript_id "KOE97551"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 91354 91665 . + . gene_id "W7K_18890"; transcript_id "KOE97551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97551-1"; +contig08 ena CDS 91354 91662 . + 0 gene_id "W7K_18890"; transcript_id "KOE97551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97551"; +contig08 ena start_codon 91354 91356 . + 0 gene_id "W7K_18890"; transcript_id "KOE97551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 91663 91665 . + 0 gene_id "W7K_18890"; transcript_id "KOE97551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 91750 92367 . - . gene_id "W7K_18895"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 91750 92367 . - . gene_id "W7K_18895"; transcript_id "KOE97552"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 91750 92367 . - . gene_id "W7K_18895"; transcript_id "KOE97552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97552-1"; +contig08 ena CDS 91753 92367 . - 0 gene_id "W7K_18895"; transcript_id "KOE97552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97552"; +contig08 ena start_codon 92365 92367 . - 0 gene_id "W7K_18895"; transcript_id "KOE97552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 91750 91752 . - 0 gene_id "W7K_18895"; transcript_id "KOE97552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 92699 92974 . + . gene_id "W7K_18900"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 92699 92974 . + . gene_id "W7K_18900"; transcript_id "KOE97553"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 92699 92974 . + . gene_id "W7K_18900"; transcript_id "KOE97553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97553-1"; +contig08 ena CDS 92699 92971 . + 0 gene_id "W7K_18900"; transcript_id "KOE97553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97553"; +contig08 ena start_codon 92699 92701 . + 0 gene_id "W7K_18900"; transcript_id "KOE97553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 92972 92974 . + 0 gene_id "W7K_18900"; transcript_id "KOE97553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 93116 93547 . + . gene_id "W7K_18905"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 93116 93547 . + . gene_id "W7K_18905"; transcript_id "KOE97554"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 93116 93547 . + . gene_id "W7K_18905"; transcript_id "KOE97554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97554-1"; +contig08 ena CDS 93116 93544 . + 0 gene_id "W7K_18905"; transcript_id "KOE97554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97554"; +contig08 ena start_codon 93116 93118 . + 0 gene_id "W7K_18905"; transcript_id "KOE97554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 93545 93547 . + 0 gene_id "W7K_18905"; transcript_id "KOE97554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 93630 94910 . - . gene_id "W7K_18910"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 93630 94910 . - . gene_id "W7K_18910"; transcript_id "KOE97555"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 93630 94910 . - . gene_id "W7K_18910"; transcript_id "KOE97555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97555-1"; +contig08 ena CDS 93633 94910 . - 0 gene_id "W7K_18910"; transcript_id "KOE97555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97555"; +contig08 ena start_codon 94908 94910 . - 0 gene_id "W7K_18910"; transcript_id "KOE97555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 93630 93632 . - 0 gene_id "W7K_18910"; transcript_id "KOE97555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 95034 95813 . + . gene_id "W7K_18915"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 95034 95813 . + . gene_id "W7K_18915"; transcript_id "KOE97556"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 95034 95813 . + . gene_id "W7K_18915"; transcript_id "KOE97556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97556-1"; +contig08 ena CDS 95034 95810 . + 0 gene_id "W7K_18915"; transcript_id "KOE97556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97556"; +contig08 ena start_codon 95034 95036 . + 0 gene_id "W7K_18915"; transcript_id "KOE97556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 95811 95813 . + 0 gene_id "W7K_18915"; transcript_id "KOE97556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 95926 96546 . + . gene_id "W7K_18920"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 95926 96546 . + . gene_id "W7K_18920"; transcript_id "KOE97557"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 95926 96546 . + . gene_id "W7K_18920"; transcript_id "KOE97557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97557-1"; +contig08 ena CDS 95926 96543 . + 0 gene_id "W7K_18920"; transcript_id "KOE97557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97557"; +contig08 ena start_codon 95926 95928 . + 0 gene_id "W7K_18920"; transcript_id "KOE97557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 96544 96546 . + 0 gene_id "W7K_18920"; transcript_id "KOE97557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 96638 98815 . - . gene_id "W7K_18925"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 96638 98815 . - . gene_id "W7K_18925"; transcript_id "KOE97558"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 96638 98815 . - . gene_id "W7K_18925"; transcript_id "KOE97558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97558-1"; +contig08 ena CDS 96641 98815 . - 0 gene_id "W7K_18925"; transcript_id "KOE97558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97558"; +contig08 ena start_codon 98813 98815 . - 0 gene_id "W7K_18925"; transcript_id "KOE97558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 96638 96640 . - 0 gene_id "W7K_18925"; transcript_id "KOE97558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 99228 100232 . + . gene_id "W7K_18930"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 99228 100232 . + . gene_id "W7K_18930"; transcript_id "KOE97559"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 99228 100232 . + . gene_id "W7K_18930"; transcript_id "KOE97559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97559-1"; +contig08 ena CDS 99228 100229 . + 0 gene_id "W7K_18930"; transcript_id "KOE97559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97559"; +contig08 ena start_codon 99228 99230 . + 0 gene_id "W7K_18930"; transcript_id "KOE97559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 100230 100232 . + 0 gene_id "W7K_18930"; transcript_id "KOE97559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 100225 100809 . + . gene_id "W7K_18935"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 100225 100809 . + . gene_id "W7K_18935"; transcript_id "KOE97560"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 100225 100809 . + . gene_id "W7K_18935"; transcript_id "KOE97560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97560-1"; +contig08 ena CDS 100225 100806 . + 0 gene_id "W7K_18935"; transcript_id "KOE97560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97560"; +contig08 ena start_codon 100225 100227 . + 0 gene_id "W7K_18935"; transcript_id "KOE97560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 100807 100809 . + 0 gene_id "W7K_18935"; transcript_id "KOE97560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 101045 102409 . + . gene_id "W7K_18940"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 101045 102409 . + . gene_id "W7K_18940"; transcript_id "KOE97561"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 101045 102409 . + . gene_id "W7K_18940"; transcript_id "KOE97561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97561-1"; +contig08 ena CDS 101045 102406 . + 0 gene_id "W7K_18940"; transcript_id "KOE97561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97561"; +contig08 ena start_codon 101045 101047 . + 0 gene_id "W7K_18940"; transcript_id "KOE97561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 102407 102409 . + 0 gene_id "W7K_18940"; transcript_id "KOE97561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 102526 104448 . + . gene_id "W7K_18945"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 102526 104448 . + . gene_id "W7K_18945"; transcript_id "KOE97562"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 102526 104448 . + . gene_id "W7K_18945"; transcript_id "KOE97562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97562-1"; +contig08 ena CDS 102526 104445 . + 0 gene_id "W7K_18945"; transcript_id "KOE97562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97562"; +contig08 ena start_codon 102526 102528 . + 0 gene_id "W7K_18945"; transcript_id "KOE97562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 104446 104448 . + 0 gene_id "W7K_18945"; transcript_id "KOE97562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 104522 104734 . - . gene_id "W7K_18950"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 104522 104734 . - . gene_id "W7K_18950"; transcript_id "KOE97563"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 104522 104734 . - . gene_id "W7K_18950"; transcript_id "KOE97563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97563-1"; +contig08 ena CDS 104525 104734 . - 0 gene_id "W7K_18950"; transcript_id "KOE97563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97563"; +contig08 ena start_codon 104732 104734 . - 0 gene_id "W7K_18950"; transcript_id "KOE97563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 104522 104524 . - 0 gene_id "W7K_18950"; transcript_id "KOE97563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 104846 105622 . + . gene_id "W7K_18955"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 104846 105622 . + . gene_id "W7K_18955"; transcript_id "KOE97564"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 104846 105622 . + . gene_id "W7K_18955"; transcript_id "KOE97564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97564-1"; +contig08 ena CDS 104846 105619 . + 0 gene_id "W7K_18955"; transcript_id "KOE97564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97564"; +contig08 ena start_codon 104846 104848 . + 0 gene_id "W7K_18955"; transcript_id "KOE97564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 105620 105622 . + 0 gene_id "W7K_18955"; transcript_id "KOE97564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 105738 106484 . - . gene_id "W7K_18960"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 105738 106484 . - . gene_id "W7K_18960"; transcript_id "KOE97565"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 105738 106484 . - . gene_id "W7K_18960"; transcript_id "KOE97565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97565-1"; +contig08 ena CDS 105741 106484 . - 0 gene_id "W7K_18960"; transcript_id "KOE97565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97565"; +contig08 ena start_codon 106482 106484 . - 0 gene_id "W7K_18960"; transcript_id "KOE97565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 105738 105740 . - 0 gene_id "W7K_18960"; transcript_id "KOE97565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 106520 107203 . - . gene_id "W7K_18965"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 106520 107203 . - . gene_id "W7K_18965"; transcript_id "KOE97566"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 106520 107203 . - . gene_id "W7K_18965"; transcript_id "KOE97566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97566-1"; +contig08 ena CDS 106523 107203 . - 0 gene_id "W7K_18965"; transcript_id "KOE97566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97566"; +contig08 ena start_codon 107201 107203 . - 0 gene_id "W7K_18965"; transcript_id "KOE97566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 106520 106522 . - 0 gene_id "W7K_18965"; transcript_id "KOE97566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 107247 107807 . - . gene_id "W7K_18970"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 107247 107807 . - . gene_id "W7K_18970"; transcript_id "KOE97567"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 107247 107807 . - . gene_id "W7K_18970"; transcript_id "KOE97567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97567-1"; +contig08 ena CDS 107250 107807 . - 0 gene_id "W7K_18970"; transcript_id "KOE97567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97567"; +contig08 ena start_codon 107805 107807 . - 0 gene_id "W7K_18970"; transcript_id "KOE97567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 107247 107249 . - 0 gene_id "W7K_18970"; transcript_id "KOE97567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 107935 110421 . - . gene_id "W7K_18975"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 107935 110421 . - . gene_id "W7K_18975"; transcript_id "KOE97568"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 107935 110421 . - . gene_id "W7K_18975"; transcript_id "KOE97568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97568-1"; +contig08 ena CDS 107938 110421 . - 0 gene_id "W7K_18975"; transcript_id "KOE97568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97568"; +contig08 ena start_codon 110419 110421 . - 0 gene_id "W7K_18975"; transcript_id "KOE97568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 107935 107937 . - 0 gene_id "W7K_18975"; transcript_id "KOE97568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 110615 111547 . - . gene_id "W7K_18980"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 110615 111547 . - . gene_id "W7K_18980"; transcript_id "KOE97569"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 110615 111547 . - . gene_id "W7K_18980"; transcript_id "KOE97569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97569-1"; +contig08 ena CDS 110618 111547 . - 0 gene_id "W7K_18980"; transcript_id "KOE97569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97569"; +contig08 ena start_codon 111545 111547 . - 0 gene_id "W7K_18980"; transcript_id "KOE97569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 110615 110617 . - 0 gene_id "W7K_18980"; transcript_id "KOE97569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 111597 112355 . - . gene_id "W7K_18985"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 111597 112355 . - . gene_id "W7K_18985"; transcript_id "KOE97570"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 111597 112355 . - . gene_id "W7K_18985"; transcript_id "KOE97570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97570-1"; +contig08 ena CDS 111600 112355 . - 0 gene_id "W7K_18985"; transcript_id "KOE97570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97570"; +contig08 ena start_codon 112353 112355 . - 0 gene_id "W7K_18985"; transcript_id "KOE97570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 111597 111599 . - 0 gene_id "W7K_18985"; transcript_id "KOE97570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 112395 112868 . - . gene_id "W7K_18990"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 112395 112868 . - . gene_id "W7K_18990"; transcript_id "KOE97571"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 112395 112868 . - . gene_id "W7K_18990"; transcript_id "KOE97571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97571-1"; +contig08 ena CDS 112398 112868 . - 0 gene_id "W7K_18990"; transcript_id "KOE97571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97571"; +contig08 ena start_codon 112866 112868 . - 0 gene_id "W7K_18990"; transcript_id "KOE97571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 112395 112397 . - 0 gene_id "W7K_18990"; transcript_id "KOE97571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 112912 114039 . - . gene_id "W7K_18995"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 112912 114039 . - . gene_id "W7K_18995"; transcript_id "KOE97572"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 112912 114039 . - . gene_id "W7K_18995"; transcript_id "KOE97572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97572-1"; +contig08 ena CDS 112915 114039 . - 0 gene_id "W7K_18995"; transcript_id "KOE97572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97572"; +contig08 ena start_codon 114037 114039 . - 0 gene_id "W7K_18995"; transcript_id "KOE97572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 112912 112914 . - 0 gene_id "W7K_18995"; transcript_id "KOE97572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 114170 115303 . - . gene_id "W7K_19000"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 114170 115303 . - . gene_id "W7K_19000"; transcript_id "KOE97573"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 114170 115303 . - . gene_id "W7K_19000"; transcript_id "KOE97573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97573-1"; +contig08 ena CDS 114173 115303 . - 0 gene_id "W7K_19000"; transcript_id "KOE97573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97573"; +contig08 ena start_codon 115301 115303 . - 0 gene_id "W7K_19000"; transcript_id "KOE97573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 114170 114172 . - 0 gene_id "W7K_19000"; transcript_id "KOE97573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 115430 115942 . + . gene_id "W7K_19005"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 115430 115942 . + . gene_id "W7K_19005"; transcript_id "KOE97574"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 115430 115942 . + . gene_id "W7K_19005"; transcript_id "KOE97574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97574-1"; +contig08 ena CDS 115430 115939 . + 0 gene_id "W7K_19005"; transcript_id "KOE97574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97574"; +contig08 ena start_codon 115430 115432 . + 0 gene_id "W7K_19005"; transcript_id "KOE97574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 115940 115942 . + 0 gene_id "W7K_19005"; transcript_id "KOE97574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 116063 116986 . + . gene_id "W7K_19010"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 116063 116986 . + . gene_id "W7K_19010"; transcript_id "KOE97575"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 116063 116986 . + . gene_id "W7K_19010"; transcript_id "KOE97575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97575-1"; +contig08 ena CDS 116063 116983 . + 0 gene_id "W7K_19010"; transcript_id "KOE97575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97575"; +contig08 ena start_codon 116063 116065 . + 0 gene_id "W7K_19010"; transcript_id "KOE97575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 116984 116986 . + 0 gene_id "W7K_19010"; transcript_id "KOE97575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 116990 118321 . + . gene_id "W7K_19015"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 116990 118321 . + . gene_id "W7K_19015"; transcript_id "KOE97576"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 116990 118321 . + . gene_id "W7K_19015"; transcript_id "KOE97576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97576-1"; +contig08 ena CDS 116990 118318 . + 0 gene_id "W7K_19015"; transcript_id "KOE97576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97576"; +contig08 ena start_codon 116990 116992 . + 0 gene_id "W7K_19015"; transcript_id "KOE97576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 118319 118321 . + 0 gene_id "W7K_19015"; transcript_id "KOE97576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 118345 120066 . + . gene_id "W7K_19020"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 118345 120066 . + . gene_id "W7K_19020"; transcript_id "KOE97577"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 118345 120066 . + . gene_id "W7K_19020"; transcript_id "KOE97577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97577-1"; +contig08 ena CDS 118345 120063 . + 0 gene_id "W7K_19020"; transcript_id "KOE97577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97577"; +contig08 ena start_codon 118345 118347 . + 0 gene_id "W7K_19020"; transcript_id "KOE97577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 120064 120066 . + 0 gene_id "W7K_19020"; transcript_id "KOE97577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 120085 121206 . - . gene_id "W7K_19025"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 120085 121206 . - . gene_id "W7K_19025"; transcript_id "KOE97578"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 120085 121206 . - . gene_id "W7K_19025"; transcript_id "KOE97578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97578-1"; +contig08 ena CDS 120088 121206 . - 0 gene_id "W7K_19025"; transcript_id "KOE97578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97578"; +contig08 ena start_codon 121204 121206 . - 0 gene_id "W7K_19025"; transcript_id "KOE97578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 120085 120087 . - 0 gene_id "W7K_19025"; transcript_id "KOE97578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 121250 122068 . - . gene_id "W7K_19030"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 121250 122068 . - . gene_id "W7K_19030"; transcript_id "KOE97579"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 121250 122068 . - . gene_id "W7K_19030"; transcript_id "KOE97579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97579-1"; +contig08 ena CDS 121253 122068 . - 0 gene_id "W7K_19030"; transcript_id "KOE97579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97579"; +contig08 ena start_codon 122066 122068 . - 0 gene_id "W7K_19030"; transcript_id "KOE97579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 121250 121252 . - 0 gene_id "W7K_19030"; transcript_id "KOE97579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 122067 123125 . + . gene_id "W7K_19035"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 122067 123125 . + . gene_id "W7K_19035"; transcript_id "KOE97580"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 122067 123125 . + . gene_id "W7K_19035"; transcript_id "KOE97580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97580-1"; +contig08 ena CDS 122067 123122 . + 0 gene_id "W7K_19035"; transcript_id "KOE97580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97580"; +contig08 ena start_codon 122067 122069 . + 0 gene_id "W7K_19035"; transcript_id "KOE97580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 123123 123125 . + 0 gene_id "W7K_19035"; transcript_id "KOE97580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 123239 124777 . - . gene_id "W7K_19040"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 123239 124777 . - . gene_id "W7K_19040"; transcript_id "KOE97581"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 123239 124777 . - . gene_id "W7K_19040"; transcript_id "KOE97581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97581-1"; +contig08 ena CDS 123242 124777 . - 0 gene_id "W7K_19040"; transcript_id "KOE97581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97581"; +contig08 ena start_codon 124775 124777 . - 0 gene_id "W7K_19040"; transcript_id "KOE97581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 123239 123241 . - 0 gene_id "W7K_19040"; transcript_id "KOE97581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 124774 125274 . - . gene_id "W7K_19045"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 124774 125274 . - . gene_id "W7K_19045"; transcript_id "KOE97582"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 124774 125274 . - . gene_id "W7K_19045"; transcript_id "KOE97582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97582-1"; +contig08 ena CDS 124777 125274 . - 0 gene_id "W7K_19045"; transcript_id "KOE97582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97582"; +contig08 ena start_codon 125272 125274 . - 0 gene_id "W7K_19045"; transcript_id "KOE97582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 124774 124776 . - 0 gene_id "W7K_19045"; transcript_id "KOE97582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 125350 126486 . - . gene_id "W7K_19050"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 125350 126486 . - . gene_id "W7K_19050"; transcript_id "KOE97583"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 125350 126486 . - . gene_id "W7K_19050"; transcript_id "KOE97583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97583-1"; +contig08 ena CDS 125353 126486 . - 0 gene_id "W7K_19050"; transcript_id "KOE97583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97583"; +contig08 ena start_codon 126484 126486 . - 0 gene_id "W7K_19050"; transcript_id "KOE97583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 125350 125352 . - 0 gene_id "W7K_19050"; transcript_id "KOE97583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 126572 127492 . - . gene_id "W7K_19055"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 126572 127492 . - . gene_id "W7K_19055"; transcript_id "KOE97584"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 126572 127492 . - . gene_id "W7K_19055"; transcript_id "KOE97584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97584-1"; +contig08 ena CDS 126575 127492 . - 0 gene_id "W7K_19055"; transcript_id "KOE97584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97584"; +contig08 ena start_codon 127490 127492 . - 0 gene_id "W7K_19055"; transcript_id "KOE97584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 126572 126574 . - 0 gene_id "W7K_19055"; transcript_id "KOE97584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 127555 127995 . + . gene_id "W7K_19060"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 127555 127995 . + . gene_id "W7K_19060"; transcript_id "KOE97585"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 127555 127995 . + . gene_id "W7K_19060"; transcript_id "KOE97585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97585-1"; +contig08 ena CDS 127555 127992 . + 0 gene_id "W7K_19060"; transcript_id "KOE97585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97585"; +contig08 ena start_codon 127555 127557 . + 0 gene_id "W7K_19060"; transcript_id "KOE97585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 127993 127995 . + 0 gene_id "W7K_19060"; transcript_id "KOE97585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 128086 129939 . + . gene_id "W7K_19065"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 128086 129939 . + . gene_id "W7K_19065"; transcript_id "KOE97586"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 128086 129939 . + . gene_id "W7K_19065"; transcript_id "KOE97586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97586-1"; +contig08 ena CDS 128086 129936 . + 0 gene_id "W7K_19065"; transcript_id "KOE97586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97586"; +contig08 ena start_codon 128086 128088 . + 0 gene_id "W7K_19065"; transcript_id "KOE97586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 129937 129939 . + 0 gene_id "W7K_19065"; transcript_id "KOE97586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 130101 130176 . + . gene_id "W7K_19070"; gene_source "ena"; gene_biotype "tRNA"; +contig08 ena transcript 130101 130176 . + . gene_id "W7K_19070"; transcript_id "EBT00051077608"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_19070"; transcript_source "ena"; transcript_biotype "tRNA"; +contig08 ena exon 130101 130176 . + . gene_id "W7K_19070"; transcript_id "EBT00051077608"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_19070"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_19070-1"; +contig08 ena gene 130354 131568 . + . gene_id "W7K_19075"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 130354 131568 . + . gene_id "W7K_19075"; transcript_id "KOE97587"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 130354 131568 . + . gene_id "W7K_19075"; transcript_id "KOE97587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97587-1"; +contig08 ena CDS 130354 131565 . + 0 gene_id "W7K_19075"; transcript_id "KOE97587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97587"; +contig08 ena start_codon 130354 130356 . + 0 gene_id "W7K_19075"; transcript_id "KOE97587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 131566 131568 . + 0 gene_id "W7K_19075"; transcript_id "KOE97587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 131692 132360 . + . gene_id "W7K_19080"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 131692 132360 . + . gene_id "W7K_19080"; transcript_id "KOE97588"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 131692 132360 . + . gene_id "W7K_19080"; transcript_id "KOE97588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97588-1"; +contig08 ena CDS 131692 132357 . + 0 gene_id "W7K_19080"; transcript_id "KOE97588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97588"; +contig08 ena start_codon 131692 131694 . + 0 gene_id "W7K_19080"; transcript_id "KOE97588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 132358 132360 . + 0 gene_id "W7K_19080"; transcript_id "KOE97588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 132412 133122 . + . gene_id "W7K_19085"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 132412 133122 . + . gene_id "W7K_19085"; transcript_id "KOE97589"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 132412 133122 . + . gene_id "W7K_19085"; transcript_id "KOE97589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97589-1"; +contig08 ena CDS 132412 133119 . + 0 gene_id "W7K_19085"; transcript_id "KOE97589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97589"; +contig08 ena start_codon 132412 132414 . + 0 gene_id "W7K_19085"; transcript_id "KOE97589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 133120 133122 . + 0 gene_id "W7K_19085"; transcript_id "KOE97589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 133273 133476 . + . gene_id "W7K_19090"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 133273 133476 . + . gene_id "W7K_19090"; transcript_id "KOE97590"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 133273 133476 . + . gene_id "W7K_19090"; transcript_id "KOE97590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97590-1"; +contig08 ena CDS 133273 133473 . + 0 gene_id "W7K_19090"; transcript_id "KOE97590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97590"; +contig08 ena start_codon 133273 133275 . + 0 gene_id "W7K_19090"; transcript_id "KOE97590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 133474 133476 . + 0 gene_id "W7K_19090"; transcript_id "KOE97590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 133757 134293 . + . gene_id "W7K_19095"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 133757 134293 . + . gene_id "W7K_19095"; transcript_id "KOE97591"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 133757 134293 . + . gene_id "W7K_19095"; transcript_id "KOE97591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97591-1"; +contig08 ena CDS 133757 134290 . + 0 gene_id "W7K_19095"; transcript_id "KOE97591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97591"; +contig08 ena start_codon 133757 133759 . + 0 gene_id "W7K_19095"; transcript_id "KOE97591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 134291 134293 . + 0 gene_id "W7K_19095"; transcript_id "KOE97591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 134460 134801 . + . gene_id "W7K_19100"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 134460 134801 . + . gene_id "W7K_19100"; transcript_id "KOE97592"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 134460 134801 . + . gene_id "W7K_19100"; transcript_id "KOE97592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97592-1"; +contig08 ena CDS 134460 134798 . + 0 gene_id "W7K_19100"; transcript_id "KOE97592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97592"; +contig08 ena start_codon 134460 134462 . + 0 gene_id "W7K_19100"; transcript_id "KOE97592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 134799 134801 . + 0 gene_id "W7K_19100"; transcript_id "KOE97592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 135534 135842 . + . gene_id "W7K_19105"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 135534 135842 . + . gene_id "W7K_19105"; transcript_id "KOE97593"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 135534 135842 . + . gene_id "W7K_19105"; transcript_id "KOE97593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97593-1"; +contig08 ena CDS 135534 135839 . + 0 gene_id "W7K_19105"; transcript_id "KOE97593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97593"; +contig08 ena start_codon 135534 135536 . + 0 gene_id "W7K_19105"; transcript_id "KOE97593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 135840 135842 . + 0 gene_id "W7K_19105"; transcript_id "KOE97593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 140104 140283 . - . gene_id "W7K_19120"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 140104 140283 . - . gene_id "W7K_19120"; transcript_id "KOE97594"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 140104 140283 . - . gene_id "W7K_19120"; transcript_id "KOE97594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97594-1"; +contig08 ena CDS 140107 140283 . - 0 gene_id "W7K_19120"; transcript_id "KOE97594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97594"; +contig08 ena start_codon 140281 140283 . - 0 gene_id "W7K_19120"; transcript_id "KOE97594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 140104 140106 . - 0 gene_id "W7K_19120"; transcript_id "KOE97594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 141218 141433 . + . gene_id "W7K_19125"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 141218 141433 . + . gene_id "W7K_19125"; transcript_id "KOE97595"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 141218 141433 . + . gene_id "W7K_19125"; transcript_id "KOE97595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97595-1"; +contig08 ena CDS 141218 141430 . + 0 gene_id "W7K_19125"; transcript_id "KOE97595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97595"; +contig08 ena start_codon 141218 141220 . + 0 gene_id "W7K_19125"; transcript_id "KOE97595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 141431 141433 . + 0 gene_id "W7K_19125"; transcript_id "KOE97595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 141439 141732 . + . gene_id "W7K_19130"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 141439 141732 . + . gene_id "W7K_19130"; transcript_id "KOE97596"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 141439 141732 . + . gene_id "W7K_19130"; transcript_id "KOE97596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97596-1"; +contig08 ena CDS 141439 141729 . + 0 gene_id "W7K_19130"; transcript_id "KOE97596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97596"; +contig08 ena start_codon 141439 141441 . + 0 gene_id "W7K_19130"; transcript_id "KOE97596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 141730 141732 . + 0 gene_id "W7K_19130"; transcript_id "KOE97596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 141725 142033 . + . gene_id "W7K_19135"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 141725 142033 . + . gene_id "W7K_19135"; transcript_id "KOE97597"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 141725 142033 . + . gene_id "W7K_19135"; transcript_id "KOE97597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97597-1"; +contig08 ena CDS 141725 142030 . + 0 gene_id "W7K_19135"; transcript_id "KOE97597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97597"; +contig08 ena start_codon 141725 141727 . + 0 gene_id "W7K_19135"; transcript_id "KOE97597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 142031 142033 . + 0 gene_id "W7K_19135"; transcript_id "KOE97597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 142036 142338 . - . gene_id "W7K_19140"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 142036 142338 . - . gene_id "W7K_19140"; transcript_id "KOE97598"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 142036 142338 . - . gene_id "W7K_19140"; transcript_id "KOE97598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97598-1"; +contig08 ena CDS 142039 142338 . - 0 gene_id "W7K_19140"; transcript_id "KOE97598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97598"; +contig08 ena start_codon 142336 142338 . - 0 gene_id "W7K_19140"; transcript_id "KOE97598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 142036 142038 . - 0 gene_id "W7K_19140"; transcript_id "KOE97598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 142641 143366 . + . gene_id "W7K_19145"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 142641 143366 . + . gene_id "W7K_19145"; transcript_id "KOE97599"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 142641 143366 . + . gene_id "W7K_19145"; transcript_id "KOE97599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97599-1"; +contig08 ena CDS 142641 143363 . + 0 gene_id "W7K_19145"; transcript_id "KOE97599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97599"; +contig08 ena start_codon 142641 142643 . + 0 gene_id "W7K_19145"; transcript_id "KOE97599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 143364 143366 . + 0 gene_id "W7K_19145"; transcript_id "KOE97599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 146212 146721 . + . gene_id "W7K_19155"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 146212 146721 . + . gene_id "W7K_19155"; transcript_id "KOE97600"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 146212 146721 . + . gene_id "W7K_19155"; transcript_id "KOE97600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97600-1"; +contig08 ena CDS 146212 146718 . + 0 gene_id "W7K_19155"; transcript_id "KOE97600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97600"; +contig08 ena start_codon 146212 146214 . + 0 gene_id "W7K_19155"; transcript_id "KOE97600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 146719 146721 . + 0 gene_id "W7K_19155"; transcript_id "KOE97600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 146821 147750 . - . gene_id "W7K_19160"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 146821 147750 . - . gene_id "W7K_19160"; transcript_id "KOE97601"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 146821 147750 . - . gene_id "W7K_19160"; transcript_id "KOE97601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97601-1"; +contig08 ena CDS 146824 147750 . - 0 gene_id "W7K_19160"; transcript_id "KOE97601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97601"; +contig08 ena start_codon 147748 147750 . - 0 gene_id "W7K_19160"; transcript_id "KOE97601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 146821 146823 . - 0 gene_id "W7K_19160"; transcript_id "KOE97601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 147941 148300 . - . gene_id "W7K_19165"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 147941 148300 . - . gene_id "W7K_19165"; transcript_id "KOE97602"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 147941 148300 . - . gene_id "W7K_19165"; transcript_id "KOE97602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97602-1"; +contig08 ena CDS 147944 148300 . - 0 gene_id "W7K_19165"; transcript_id "KOE97602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97602"; +contig08 ena start_codon 148298 148300 . - 0 gene_id "W7K_19165"; transcript_id "KOE97602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 147941 147943 . - 0 gene_id "W7K_19165"; transcript_id "KOE97602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 149011 149658 . + . gene_id "W7K_19170"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 149011 149658 . + . gene_id "W7K_19170"; transcript_id "KOE97603"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 149011 149658 . + . gene_id "W7K_19170"; transcript_id "KOE97603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97603-1"; +contig08 ena CDS 149011 149655 . + 0 gene_id "W7K_19170"; transcript_id "KOE97603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97603"; +contig08 ena start_codon 149011 149013 . + 0 gene_id "W7K_19170"; transcript_id "KOE97603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 149656 149658 . + 0 gene_id "W7K_19170"; transcript_id "KOE97603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 149682 150512 . - . gene_id "W7K_19175"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 149682 150512 . - . gene_id "W7K_19175"; transcript_id "KOE97604"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 149682 150512 . - . gene_id "W7K_19175"; transcript_id "KOE97604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97604-1"; +contig08 ena CDS 149685 150512 . - 0 gene_id "W7K_19175"; transcript_id "KOE97604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97604"; +contig08 ena start_codon 150510 150512 . - 0 gene_id "W7K_19175"; transcript_id "KOE97604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 149682 149684 . - 0 gene_id "W7K_19175"; transcript_id "KOE97604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 150689 151711 . + . gene_id "W7K_19180"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 150689 151711 . + . gene_id "W7K_19180"; transcript_id "KOE97605"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 150689 151711 . + . gene_id "W7K_19180"; transcript_id "KOE97605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97605-1"; +contig08 ena CDS 150689 151708 . + 0 gene_id "W7K_19180"; transcript_id "KOE97605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97605"; +contig08 ena start_codon 150689 150691 . + 0 gene_id "W7K_19180"; transcript_id "KOE97605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 151709 151711 . + 0 gene_id "W7K_19180"; transcript_id "KOE97605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 151916 152185 . + . gene_id "W7K_19185"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 151916 152185 . + . gene_id "W7K_19185"; transcript_id "KOE97606"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 151916 152185 . + . gene_id "W7K_19185"; transcript_id "KOE97606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97606-1"; +contig08 ena CDS 151916 152182 . + 0 gene_id "W7K_19185"; transcript_id "KOE97606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97606"; +contig08 ena start_codon 151916 151918 . + 0 gene_id "W7K_19185"; transcript_id "KOE97606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 152183 152185 . + 0 gene_id "W7K_19185"; transcript_id "KOE97606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 152254 152673 . + . gene_id "W7K_19190"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 152254 152673 . + . gene_id "W7K_19190"; transcript_id "KOE97607"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 152254 152673 . + . gene_id "W7K_19190"; transcript_id "KOE97607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97607-1"; +contig08 ena CDS 152254 152670 . + 0 gene_id "W7K_19190"; transcript_id "KOE97607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97607"; +contig08 ena start_codon 152254 152256 . + 0 gene_id "W7K_19190"; transcript_id "KOE97607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 152671 152673 . + 0 gene_id "W7K_19190"; transcript_id "KOE97607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 152753 153178 . + . gene_id "W7K_19195"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 152753 153178 . + . gene_id "W7K_19195"; transcript_id "KOE97608"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 152753 153178 . + . gene_id "W7K_19195"; transcript_id "KOE97608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97608-1"; +contig08 ena CDS 152753 153175 . + 0 gene_id "W7K_19195"; transcript_id "KOE97608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97608"; +contig08 ena start_codon 152753 152755 . + 0 gene_id "W7K_19195"; transcript_id "KOE97608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 153176 153178 . + 0 gene_id "W7K_19195"; transcript_id "KOE97608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 153175 153864 . + . gene_id "W7K_19200"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 153175 153864 . + . gene_id "W7K_19200"; transcript_id "KOE97609"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 153175 153864 . + . gene_id "W7K_19200"; transcript_id "KOE97609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97609-1"; +contig08 ena CDS 153175 153861 . + 0 gene_id "W7K_19200"; transcript_id "KOE97609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97609"; +contig08 ena start_codon 153175 153177 . + 0 gene_id "W7K_19200"; transcript_id "KOE97609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 153862 153864 . + 0 gene_id "W7K_19200"; transcript_id "KOE97609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 153889 154281 . - . gene_id "W7K_19205"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 153889 154281 . - . gene_id "W7K_19205"; transcript_id "KOE97610"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 153889 154281 . - . gene_id "W7K_19205"; transcript_id "KOE97610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97610-1"; +contig08 ena CDS 153892 154281 . - 0 gene_id "W7K_19205"; transcript_id "KOE97610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97610"; +contig08 ena start_codon 154279 154281 . - 0 gene_id "W7K_19205"; transcript_id "KOE97610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 153889 153891 . - 0 gene_id "W7K_19205"; transcript_id "KOE97610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 154412 155080 . - . gene_id "W7K_19210"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 154412 155080 . - . gene_id "W7K_19210"; transcript_id "KOE97611"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 154412 155080 . - . gene_id "W7K_19210"; transcript_id "KOE97611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97611-1"; +contig08 ena CDS 154415 155080 . - 0 gene_id "W7K_19210"; transcript_id "KOE97611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97611"; +contig08 ena start_codon 155078 155080 . - 0 gene_id "W7K_19210"; transcript_id "KOE97611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 154412 154414 . - 0 gene_id "W7K_19210"; transcript_id "KOE97611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 155208 155624 . + . gene_id "W7K_19215"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 155208 155624 . + . gene_id "W7K_19215"; transcript_id "KOE97612"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 155208 155624 . + . gene_id "W7K_19215"; transcript_id "KOE97612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97612-1"; +contig08 ena CDS 155208 155621 . + 0 gene_id "W7K_19215"; transcript_id "KOE97612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97612"; +contig08 ena start_codon 155208 155210 . + 0 gene_id "W7K_19215"; transcript_id "KOE97612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 155622 155624 . + 0 gene_id "W7K_19215"; transcript_id "KOE97612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 155632 156435 . - . gene_id "W7K_19220"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 155632 156435 . - . gene_id "W7K_19220"; transcript_id "KOE97715"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 155632 156435 . - . gene_id "W7K_19220"; transcript_id "KOE97715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97715-1"; +contig08 ena CDS 155635 156435 . - 0 gene_id "W7K_19220"; transcript_id "KOE97715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97715"; +contig08 ena start_codon 156433 156435 . - 0 gene_id "W7K_19220"; transcript_id "KOE97715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 155632 155634 . - 0 gene_id "W7K_19220"; transcript_id "KOE97715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 156500 157393 . + . gene_id "W7K_19225"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 156500 157393 . + . gene_id "W7K_19225"; transcript_id "KOE97613"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 156500 157393 . + . gene_id "W7K_19225"; transcript_id "KOE97613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97613-1"; +contig08 ena CDS 156500 157390 . + 0 gene_id "W7K_19225"; transcript_id "KOE97613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97613"; +contig08 ena start_codon 156500 156502 . + 0 gene_id "W7K_19225"; transcript_id "KOE97613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 157391 157393 . + 0 gene_id "W7K_19225"; transcript_id "KOE97613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 157402 158430 . - . gene_id "W7K_19230"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 157402 158430 . - . gene_id "W7K_19230"; transcript_id "KOE97716"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 157402 158430 . - . gene_id "W7K_19230"; transcript_id "KOE97716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97716-1"; +contig08 ena CDS 157405 158430 . - 0 gene_id "W7K_19230"; transcript_id "KOE97716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97716"; +contig08 ena start_codon 158428 158430 . - 0 gene_id "W7K_19230"; transcript_id "KOE97716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 157402 157404 . - 0 gene_id "W7K_19230"; transcript_id "KOE97716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 158689 161523 . - . gene_id "W7K_19235"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 158689 161523 . - . gene_id "W7K_19235"; transcript_id "KOE97614"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 158689 161523 . - . gene_id "W7K_19235"; transcript_id "KOE97614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97614-1"; +contig08 ena CDS 158692 161523 . - 0 gene_id "W7K_19235"; transcript_id "KOE97614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97614"; +contig08 ena start_codon 161521 161523 . - 0 gene_id "W7K_19235"; transcript_id "KOE97614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 158689 158691 . - 0 gene_id "W7K_19235"; transcript_id "KOE97614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 162078 162530 . + . gene_id "W7K_19240"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 162078 162530 . + . gene_id "W7K_19240"; transcript_id "KOE97615"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 162078 162530 . + . gene_id "W7K_19240"; transcript_id "KOE97615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97615-1"; +contig08 ena CDS 162078 162527 . + 0 gene_id "W7K_19240"; transcript_id "KOE97615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97615"; +contig08 ena start_codon 162078 162080 . + 0 gene_id "W7K_19240"; transcript_id "KOE97615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 162528 162530 . + 0 gene_id "W7K_19240"; transcript_id "KOE97615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 162616 164106 . - . gene_id "W7K_19245"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 162616 164106 . - . gene_id "W7K_19245"; transcript_id "KOE97616"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 162616 164106 . - . gene_id "W7K_19245"; transcript_id "KOE97616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97616-1"; +contig08 ena CDS 162619 164106 . - 0 gene_id "W7K_19245"; transcript_id "KOE97616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97616"; +contig08 ena start_codon 164104 164106 . - 0 gene_id "W7K_19245"; transcript_id "KOE97616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 162616 162618 . - 0 gene_id "W7K_19245"; transcript_id "KOE97616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 164213 165118 . + . gene_id "W7K_19250"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 164213 165118 . + . gene_id "W7K_19250"; transcript_id "KOE97717"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 164213 165118 . + . gene_id "W7K_19250"; transcript_id "KOE97717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97717-1"; +contig08 ena CDS 164213 165115 . + 0 gene_id "W7K_19250"; transcript_id "KOE97717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97717"; +contig08 ena start_codon 164213 164215 . + 0 gene_id "W7K_19250"; transcript_id "KOE97717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 165116 165118 . + 0 gene_id "W7K_19250"; transcript_id "KOE97717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 165317 166504 . + . gene_id "W7K_19255"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 165317 166504 . + . gene_id "W7K_19255"; transcript_id "KOE97617"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 165317 166504 . + . gene_id "W7K_19255"; transcript_id "KOE97617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97617-1"; +contig08 ena CDS 165317 166501 . + 0 gene_id "W7K_19255"; transcript_id "KOE97617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97617"; +contig08 ena start_codon 165317 165319 . + 0 gene_id "W7K_19255"; transcript_id "KOE97617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 166502 166504 . + 0 gene_id "W7K_19255"; transcript_id "KOE97617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 166571 169927 . - . gene_id "W7K_19260"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 166571 169927 . - . gene_id "W7K_19260"; transcript_id "KOE97618"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 166571 169927 . - . gene_id "W7K_19260"; transcript_id "KOE97618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97618-1"; +contig08 ena CDS 166574 169927 . - 0 gene_id "W7K_19260"; transcript_id "KOE97618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97618"; +contig08 ena start_codon 169925 169927 . - 0 gene_id "W7K_19260"; transcript_id "KOE97618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 166571 166573 . - 0 gene_id "W7K_19260"; transcript_id "KOE97618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 170441 170791 . + . gene_id "W7K_19265"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 170441 170791 . + . gene_id "W7K_19265"; transcript_id "KOE97619"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 170441 170791 . + . gene_id "W7K_19265"; transcript_id "KOE97619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97619-1"; +contig08 ena CDS 170441 170788 . + 0 gene_id "W7K_19265"; transcript_id "KOE97619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97619"; +contig08 ena start_codon 170441 170443 . + 0 gene_id "W7K_19265"; transcript_id "KOE97619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 170789 170791 . + 0 gene_id "W7K_19265"; transcript_id "KOE97619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 170807 171427 . - . gene_id "W7K_19270"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 170807 171427 . - . gene_id "W7K_19270"; transcript_id "KOE97620"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 170807 171427 . - . gene_id "W7K_19270"; transcript_id "KOE97620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97620-1"; +contig08 ena CDS 170810 171427 . - 0 gene_id "W7K_19270"; transcript_id "KOE97620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97620"; +contig08 ena start_codon 171425 171427 . - 0 gene_id "W7K_19270"; transcript_id "KOE97620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 170807 170809 . - 0 gene_id "W7K_19270"; transcript_id "KOE97620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 171554 173026 . + . gene_id "W7K_19275"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 171554 173026 . + . gene_id "W7K_19275"; transcript_id "KOE97621"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 171554 173026 . + . gene_id "W7K_19275"; transcript_id "KOE97621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97621-1"; +contig08 ena CDS 171554 173023 . + 0 gene_id "W7K_19275"; transcript_id "KOE97621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97621"; +contig08 ena start_codon 171554 171556 . + 0 gene_id "W7K_19275"; transcript_id "KOE97621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 173024 173026 . + 0 gene_id "W7K_19275"; transcript_id "KOE97621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 173037 173351 . - . gene_id "W7K_19280"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 173037 173351 . - . gene_id "W7K_19280"; transcript_id "KOE97622"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 173037 173351 . - . gene_id "W7K_19280"; transcript_id "KOE97622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97622-1"; +contig08 ena CDS 173040 173351 . - 0 gene_id "W7K_19280"; transcript_id "KOE97622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97622"; +contig08 ena start_codon 173349 173351 . - 0 gene_id "W7K_19280"; transcript_id "KOE97622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 173037 173039 . - 0 gene_id "W7K_19280"; transcript_id "KOE97622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 173487 174161 . - . gene_id "W7K_19285"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 173487 174161 . - . gene_id "W7K_19285"; transcript_id "KOE97623"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 173487 174161 . - . gene_id "W7K_19285"; transcript_id "KOE97623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97623-1"; +contig08 ena CDS 173490 174161 . - 0 gene_id "W7K_19285"; transcript_id "KOE97623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97623"; +contig08 ena start_codon 174159 174161 . - 0 gene_id "W7K_19285"; transcript_id "KOE97623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 173487 173489 . - 0 gene_id "W7K_19285"; transcript_id "KOE97623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 174154 175410 . - . gene_id "W7K_19290"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 174154 175410 . - . gene_id "W7K_19290"; transcript_id "KOE97624"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 174154 175410 . - . gene_id "W7K_19290"; transcript_id "KOE97624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97624-1"; +contig08 ena CDS 174157 175410 . - 0 gene_id "W7K_19290"; transcript_id "KOE97624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97624"; +contig08 ena start_codon 175408 175410 . - 0 gene_id "W7K_19290"; transcript_id "KOE97624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 174154 174156 . - 0 gene_id "W7K_19290"; transcript_id "KOE97624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 175618 177102 . + . gene_id "W7K_19295"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 175618 177102 . + . gene_id "W7K_19295"; transcript_id "KOE97625"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 175618 177102 . + . gene_id "W7K_19295"; transcript_id "KOE97625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97625-1"; +contig08 ena CDS 175618 177099 . + 0 gene_id "W7K_19295"; transcript_id "KOE97625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97625"; +contig08 ena start_codon 175618 175620 . + 0 gene_id "W7K_19295"; transcript_id "KOE97625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 177100 177102 . + 0 gene_id "W7K_19295"; transcript_id "KOE97625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 177108 177572 . - . gene_id "W7K_19300"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 177108 177572 . - . gene_id "W7K_19300"; transcript_id "KOE97626"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 177108 177572 . - . gene_id "W7K_19300"; transcript_id "KOE97626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97626-1"; +contig08 ena CDS 177111 177572 . - 0 gene_id "W7K_19300"; transcript_id "KOE97626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97626"; +contig08 ena start_codon 177570 177572 . - 0 gene_id "W7K_19300"; transcript_id "KOE97626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 177108 177110 . - 0 gene_id "W7K_19300"; transcript_id "KOE97626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 177623 178534 . + . gene_id "W7K_19305"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 177623 178534 . + . gene_id "W7K_19305"; transcript_id "KOE97627"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 177623 178534 . + . gene_id "W7K_19305"; transcript_id "KOE97627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97627-1"; +contig08 ena CDS 177623 178531 . + 0 gene_id "W7K_19305"; transcript_id "KOE97627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97627"; +contig08 ena start_codon 177623 177625 . + 0 gene_id "W7K_19305"; transcript_id "KOE97627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 178532 178534 . + 0 gene_id "W7K_19305"; transcript_id "KOE97627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 178633 179526 . + . gene_id "W7K_19310"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 178633 179526 . + . gene_id "W7K_19310"; transcript_id "KOE97628"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 178633 179526 . + . gene_id "W7K_19310"; transcript_id "KOE97628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97628-1"; +contig08 ena CDS 178633 179523 . + 0 gene_id "W7K_19310"; transcript_id "KOE97628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97628"; +contig08 ena start_codon 178633 178635 . + 0 gene_id "W7K_19310"; transcript_id "KOE97628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 179524 179526 . + 0 gene_id "W7K_19310"; transcript_id "KOE97628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 179736 182267 . + . gene_id "W7K_19315"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 179736 182267 . + . gene_id "W7K_19315"; transcript_id "KOE97629"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 179736 182267 . + . gene_id "W7K_19315"; transcript_id "KOE97629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97629-1"; +contig08 ena CDS 179736 182264 . + 0 gene_id "W7K_19315"; transcript_id "KOE97629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97629"; +contig08 ena start_codon 179736 179738 . + 0 gene_id "W7K_19315"; transcript_id "KOE97629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 182265 182267 . + 0 gene_id "W7K_19315"; transcript_id "KOE97629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 182346 182732 . - . gene_id "W7K_19320"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 182346 182732 . - . gene_id "W7K_19320"; transcript_id "KOE97630"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 182346 182732 . - . gene_id "W7K_19320"; transcript_id "KOE97630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97630-1"; +contig08 ena CDS 182349 182732 . - 0 gene_id "W7K_19320"; transcript_id "KOE97630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97630"; +contig08 ena start_codon 182730 182732 . - 0 gene_id "W7K_19320"; transcript_id "KOE97630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 182346 182348 . - 0 gene_id "W7K_19320"; transcript_id "KOE97630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 183177 185222 . - . gene_id "W7K_19325"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 183177 185222 . - . gene_id "W7K_19325"; transcript_id "KOE97631"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 183177 185222 . - . gene_id "W7K_19325"; transcript_id "KOE97631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97631-1"; +contig08 ena CDS 183180 185222 . - 0 gene_id "W7K_19325"; transcript_id "KOE97631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97631"; +contig08 ena start_codon 185220 185222 . - 0 gene_id "W7K_19325"; transcript_id "KOE97631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 183177 183179 . - 0 gene_id "W7K_19325"; transcript_id "KOE97631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 185719 187644 . + . gene_id "W7K_19330"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 185719 187644 . + . gene_id "W7K_19330"; transcript_id "KOE97632"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 185719 187644 . + . gene_id "W7K_19330"; transcript_id "KOE97632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97632-1"; +contig08 ena CDS 185719 187641 . + 0 gene_id "W7K_19330"; transcript_id "KOE97632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97632"; +contig08 ena start_codon 185719 185721 . + 0 gene_id "W7K_19330"; transcript_id "KOE97632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 187642 187644 . + 0 gene_id "W7K_19330"; transcript_id "KOE97632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 187695 188354 . + . gene_id "W7K_19335"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 187695 188354 . + . gene_id "W7K_19335"; transcript_id "KOE97633"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 187695 188354 . + . gene_id "W7K_19335"; transcript_id "KOE97633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97633-1"; +contig08 ena CDS 187695 188351 . + 0 gene_id "W7K_19335"; transcript_id "KOE97633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97633"; +contig08 ena start_codon 187695 187697 . + 0 gene_id "W7K_19335"; transcript_id "KOE97633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 188352 188354 . + 0 gene_id "W7K_19335"; transcript_id "KOE97633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 188358 189401 . + . gene_id "W7K_19340"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 188358 189401 . + . gene_id "W7K_19340"; transcript_id "KOE97634"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 188358 189401 . + . gene_id "W7K_19340"; transcript_id "KOE97634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97634-1"; +contig08 ena CDS 188358 189398 . + 0 gene_id "W7K_19340"; transcript_id "KOE97634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97634"; +contig08 ena start_codon 188358 188360 . + 0 gene_id "W7K_19340"; transcript_id "KOE97634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 189399 189401 . + 0 gene_id "W7K_19340"; transcript_id "KOE97634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 189412 190143 . + . gene_id "W7K_19345"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 189412 190143 . + . gene_id "W7K_19345"; transcript_id "KOE97635"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 189412 190143 . + . gene_id "W7K_19345"; transcript_id "KOE97635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97635-1"; +contig08 ena CDS 189412 190140 . + 0 gene_id "W7K_19345"; transcript_id "KOE97635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97635"; +contig08 ena start_codon 189412 189414 . + 0 gene_id "W7K_19345"; transcript_id "KOE97635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 190141 190143 . + 0 gene_id "W7K_19345"; transcript_id "KOE97635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 190707 191618 . + . gene_id "W7K_19350"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 190707 191618 . + . gene_id "W7K_19350"; transcript_id "KOE97636"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 190707 191618 . + . gene_id "W7K_19350"; transcript_id "KOE97636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97636-1"; +contig08 ena CDS 190707 191615 . + 0 gene_id "W7K_19350"; transcript_id "KOE97636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97636"; +contig08 ena start_codon 190707 190709 . + 0 gene_id "W7K_19350"; transcript_id "KOE97636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 191616 191618 . + 0 gene_id "W7K_19350"; transcript_id "KOE97636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 191735 192511 . - . gene_id "W7K_19355"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 191735 192511 . - . gene_id "W7K_19355"; transcript_id "KOE97637"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 191735 192511 . - . gene_id "W7K_19355"; transcript_id "KOE97637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97637-1"; +contig08 ena CDS 191738 192511 . - 0 gene_id "W7K_19355"; transcript_id "KOE97637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97637"; +contig08 ena start_codon 192509 192511 . - 0 gene_id "W7K_19355"; transcript_id "KOE97637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 191735 191737 . - 0 gene_id "W7K_19355"; transcript_id "KOE97637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 192619 193221 . - . gene_id "W7K_19360"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 192619 193221 . - . gene_id "W7K_19360"; transcript_id "KOE97638"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 192619 193221 . - . gene_id "W7K_19360"; transcript_id "KOE97638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97638-1"; +contig08 ena CDS 192622 193221 . - 0 gene_id "W7K_19360"; transcript_id "KOE97638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97638"; +contig08 ena start_codon 193219 193221 . - 0 gene_id "W7K_19360"; transcript_id "KOE97638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 192619 192621 . - 0 gene_id "W7K_19360"; transcript_id "KOE97638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 193303 194274 . + . gene_id "W7K_19365"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 193303 194274 . + . gene_id "W7K_19365"; transcript_id "KOE97639"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 193303 194274 . + . gene_id "W7K_19365"; transcript_id "KOE97639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97639-1"; +contig08 ena CDS 193303 194271 . + 0 gene_id "W7K_19365"; transcript_id "KOE97639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97639"; +contig08 ena start_codon 193303 193305 . + 0 gene_id "W7K_19365"; transcript_id "KOE97639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 194272 194274 . + 0 gene_id "W7K_19365"; transcript_id "KOE97639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 194301 195095 . + . gene_id "W7K_19370"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 194301 195095 . + . gene_id "W7K_19370"; transcript_id "KOE97640"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 194301 195095 . + . gene_id "W7K_19370"; transcript_id "KOE97640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97640-1"; +contig08 ena CDS 194301 195092 . + 0 gene_id "W7K_19370"; transcript_id "KOE97640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97640"; +contig08 ena start_codon 194301 194303 . + 0 gene_id "W7K_19370"; transcript_id "KOE97640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 195093 195095 . + 0 gene_id "W7K_19370"; transcript_id "KOE97640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 195196 196695 . - . gene_id "W7K_19375"; gene_name "glpK"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 195196 196695 . - . gene_id "W7K_19375"; transcript_id "KOE97641"; gene_name "glpK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glpK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 195196 196695 . - . gene_id "W7K_19375"; transcript_id "KOE97641"; exon_number "1"; gene_name "glpK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glpK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97641-1"; +contig08 ena CDS 195199 196695 . - 0 gene_id "W7K_19375"; transcript_id "KOE97641"; exon_number "1"; gene_name "glpK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glpK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97641"; +contig08 ena start_codon 196693 196695 . - 0 gene_id "W7K_19375"; transcript_id "KOE97641"; exon_number "1"; gene_name "glpK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glpK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 195196 195198 . - 0 gene_id "W7K_19375"; transcript_id "KOE97641"; exon_number "1"; gene_name "glpK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glpK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 198550 199185 . - . gene_id "W7K_19385"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 198550 199185 . - . gene_id "W7K_19385"; transcript_id "KOE97642"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 198550 199185 . - . gene_id "W7K_19385"; transcript_id "KOE97642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97642-1"; +contig08 ena CDS 198553 199185 . - 0 gene_id "W7K_19385"; transcript_id "KOE97642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97642"; +contig08 ena start_codon 199183 199185 . - 0 gene_id "W7K_19385"; transcript_id "KOE97642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 198550 198552 . - 0 gene_id "W7K_19385"; transcript_id "KOE97642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 199372 199887 . + . gene_id "W7K_19390"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 199372 199887 . + . gene_id "W7K_19390"; transcript_id "KOE97718"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 199372 199887 . + . gene_id "W7K_19390"; transcript_id "KOE97718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97718-1"; +contig08 ena CDS 199372 199884 . + 0 gene_id "W7K_19390"; transcript_id "KOE97718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97718"; +contig08 ena start_codon 199372 199374 . + 0 gene_id "W7K_19390"; transcript_id "KOE97718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 199885 199887 . + 0 gene_id "W7K_19390"; transcript_id "KOE97718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 200055 201776 . + . gene_id "W7K_19395"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 200055 201776 . + . gene_id "W7K_19395"; transcript_id "KOE97643"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 200055 201776 . + . gene_id "W7K_19395"; transcript_id "KOE97643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97643-1"; +contig08 ena CDS 200055 201773 . + 0 gene_id "W7K_19395"; transcript_id "KOE97643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97643"; +contig08 ena start_codon 200055 200057 . + 0 gene_id "W7K_19395"; transcript_id "KOE97643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 201774 201776 . + 0 gene_id "W7K_19395"; transcript_id "KOE97643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 201883 203691 . + . gene_id "W7K_19400"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 201883 203691 . + . gene_id "W7K_19400"; transcript_id "KOE97644"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 201883 203691 . + . gene_id "W7K_19400"; transcript_id "KOE97644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97644-1"; +contig08 ena CDS 201883 203688 . + 0 gene_id "W7K_19400"; transcript_id "KOE97644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97644"; +contig08 ena start_codon 201883 201885 . + 0 gene_id "W7K_19400"; transcript_id "KOE97644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 203689 203691 . + 0 gene_id "W7K_19400"; transcript_id "KOE97644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 204353 205171 . - . gene_id "W7K_19405"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 204353 205171 . - . gene_id "W7K_19405"; transcript_id "KOE97645"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 204353 205171 . - . gene_id "W7K_19405"; transcript_id "KOE97645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97645-1"; +contig08 ena CDS 204356 205171 . - 0 gene_id "W7K_19405"; transcript_id "KOE97645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97645"; +contig08 ena start_codon 205169 205171 . - 0 gene_id "W7K_19405"; transcript_id "KOE97645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 204353 204355 . - 0 gene_id "W7K_19405"; transcript_id "KOE97645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 205664 205996 . + . gene_id "W7K_19410"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 205664 205996 . + . gene_id "W7K_19410"; transcript_id "KOE97646"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 205664 205996 . + . gene_id "W7K_19410"; transcript_id "KOE97646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97646-1"; +contig08 ena CDS 205664 205993 . + 0 gene_id "W7K_19410"; transcript_id "KOE97646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97646"; +contig08 ena start_codon 205664 205666 . + 0 gene_id "W7K_19410"; transcript_id "KOE97646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 205994 205996 . + 0 gene_id "W7K_19410"; transcript_id "KOE97646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 206028 206828 . + . gene_id "W7K_19415"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 206028 206828 . + . gene_id "W7K_19415"; transcript_id "KOE97647"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 206028 206828 . + . gene_id "W7K_19415"; transcript_id "KOE97647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97647-1"; +contig08 ena CDS 206028 206825 . + 0 gene_id "W7K_19415"; transcript_id "KOE97647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97647"; +contig08 ena start_codon 206028 206030 . + 0 gene_id "W7K_19415"; transcript_id "KOE97647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 206826 206828 . + 0 gene_id "W7K_19415"; transcript_id "KOE97647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 206902 207207 . + . gene_id "W7K_19420"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 206902 207207 . + . gene_id "W7K_19420"; transcript_id "KOE97648"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 206902 207207 . + . gene_id "W7K_19420"; transcript_id "KOE97648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97648-1"; +contig08 ena CDS 206902 207204 . + 0 gene_id "W7K_19420"; transcript_id "KOE97648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97648"; +contig08 ena start_codon 206902 206904 . + 0 gene_id "W7K_19420"; transcript_id "KOE97648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 207205 207207 . + 0 gene_id "W7K_19420"; transcript_id "KOE97648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 207314 207784 . + . gene_id "W7K_19425"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 207314 207784 . + . gene_id "W7K_19425"; transcript_id "KOE97719"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 207314 207784 . + . gene_id "W7K_19425"; transcript_id "KOE97719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97719-1"; +contig08 ena CDS 207314 207781 . + 0 gene_id "W7K_19425"; transcript_id "KOE97719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97719"; +contig08 ena start_codon 207314 207316 . + 0 gene_id "W7K_19425"; transcript_id "KOE97719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 207782 207784 . + 0 gene_id "W7K_19425"; transcript_id "KOE97719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 207787 208314 . + . gene_id "W7K_19430"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 207787 208314 . + . gene_id "W7K_19430"; transcript_id "KOE97649"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 207787 208314 . + . gene_id "W7K_19430"; transcript_id "KOE97649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97649-1"; +contig08 ena CDS 207787 208311 . + 0 gene_id "W7K_19430"; transcript_id "KOE97649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97649"; +contig08 ena start_codon 207787 207789 . + 0 gene_id "W7K_19430"; transcript_id "KOE97649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 208312 208314 . + 0 gene_id "W7K_19430"; transcript_id "KOE97649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 208359 209906 . + . gene_id "W7K_19435"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 208359 209906 . + . gene_id "W7K_19435"; transcript_id "KOE97650"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 208359 209906 . + . gene_id "W7K_19435"; transcript_id "KOE97650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97650-1"; +contig08 ena CDS 208359 209903 . + 0 gene_id "W7K_19435"; transcript_id "KOE97650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97650"; +contig08 ena start_codon 208359 208361 . + 0 gene_id "W7K_19435"; transcript_id "KOE97650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 209904 209906 . + 0 gene_id "W7K_19435"; transcript_id "KOE97650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 209990 210853 . + . gene_id "W7K_19440"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 209990 210853 . + . gene_id "W7K_19440"; transcript_id "KOE97651"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 209990 210853 . + . gene_id "W7K_19440"; transcript_id "KOE97651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97651-1"; +contig08 ena CDS 209990 210850 . + 0 gene_id "W7K_19440"; transcript_id "KOE97651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97651"; +contig08 ena start_codon 209990 209992 . + 0 gene_id "W7K_19440"; transcript_id "KOE97651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 210851 210853 . + 0 gene_id "W7K_19440"; transcript_id "KOE97651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 210892 212298 . + . gene_id "W7K_19445"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 210892 212298 . + . gene_id "W7K_19445"; transcript_id "KOE97652"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 210892 212298 . + . gene_id "W7K_19445"; transcript_id "KOE97652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97652-1"; +contig08 ena CDS 210892 212295 . + 0 gene_id "W7K_19445"; transcript_id "KOE97652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97652"; +contig08 ena start_codon 210892 210894 . + 0 gene_id "W7K_19445"; transcript_id "KOE97652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 212296 212298 . + 0 gene_id "W7K_19445"; transcript_id "KOE97652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 212412 212834 . + . gene_id "W7K_19450"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 212412 212834 . + . gene_id "W7K_19450"; transcript_id "KOE97653"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 212412 212834 . + . gene_id "W7K_19450"; transcript_id "KOE97653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97653-1"; +contig08 ena CDS 212412 212831 . + 0 gene_id "W7K_19450"; transcript_id "KOE97653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97653"; +contig08 ena start_codon 212412 212414 . + 0 gene_id "W7K_19450"; transcript_id "KOE97653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 212832 212834 . + 0 gene_id "W7K_19450"; transcript_id "KOE97653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 212999 213385 . - . gene_id "W7K_19455"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 212999 213385 . - . gene_id "W7K_19455"; transcript_id "KOE97654"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 212999 213385 . - . gene_id "W7K_19455"; transcript_id "KOE97654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97654-1"; +contig08 ena CDS 213002 213385 . - 0 gene_id "W7K_19455"; transcript_id "KOE97654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97654"; +contig08 ena start_codon 213383 213385 . - 0 gene_id "W7K_19455"; transcript_id "KOE97654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 212999 213001 . - 0 gene_id "W7K_19455"; transcript_id "KOE97654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 213469 214836 . + . gene_id "W7K_19460"; gene_name "glmU"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 213469 214836 . + . gene_id "W7K_19460"; transcript_id "KOE97655"; gene_name "glmU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 213469 214836 . + . gene_id "W7K_19460"; transcript_id "KOE97655"; exon_number "1"; gene_name "glmU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97655-1"; +contig08 ena CDS 213469 214833 . + 0 gene_id "W7K_19460"; transcript_id "KOE97655"; exon_number "1"; gene_name "glmU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97655"; +contig08 ena start_codon 213469 213471 . + 0 gene_id "W7K_19460"; transcript_id "KOE97655"; exon_number "1"; gene_name "glmU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 214834 214836 . + 0 gene_id "W7K_19460"; transcript_id "KOE97655"; exon_number "1"; gene_name "glmU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 214805 215338 . + . gene_id "W7K_19465"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 214805 215338 . + . gene_id "W7K_19465"; transcript_id "KOE97656"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 214805 215338 . + . gene_id "W7K_19465"; transcript_id "KOE97656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97656-1"; +contig08 ena CDS 214805 215335 . + 0 gene_id "W7K_19465"; transcript_id "KOE97656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97656"; +contig08 ena start_codon 214805 214807 . + 0 gene_id "W7K_19465"; transcript_id "KOE97656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 215336 215338 . + 0 gene_id "W7K_19465"; transcript_id "KOE97656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 215386 216738 . - . gene_id "W7K_19470"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 215386 216738 . - . gene_id "W7K_19470"; transcript_id "KOE97657"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 215386 216738 . - . gene_id "W7K_19470"; transcript_id "KOE97657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97657-1"; +contig08 ena CDS 215389 216738 . - 0 gene_id "W7K_19470"; transcript_id "KOE97657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97657"; +contig08 ena start_codon 216736 216738 . - 0 gene_id "W7K_19470"; transcript_id "KOE97657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 215386 215388 . - 0 gene_id "W7K_19470"; transcript_id "KOE97657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 216735 218081 . - . gene_id "W7K_19475"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 216735 218081 . - . gene_id "W7K_19475"; transcript_id "KOE97720"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 216735 218081 . - . gene_id "W7K_19475"; transcript_id "KOE97720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97720-1"; +contig08 ena CDS 216738 218081 . - 0 gene_id "W7K_19475"; transcript_id "KOE97720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97720"; +contig08 ena start_codon 218079 218081 . - 0 gene_id "W7K_19475"; transcript_id "KOE97720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 216735 216737 . - 0 gene_id "W7K_19475"; transcript_id "KOE97720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 218205 218597 . - . gene_id "W7K_19480"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 218205 218597 . - . gene_id "W7K_19480"; transcript_id "KOE97658"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 218205 218597 . - . gene_id "W7K_19480"; transcript_id "KOE97658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97658-1"; +contig08 ena CDS 218208 218597 . - 0 gene_id "W7K_19480"; transcript_id "KOE97658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97658"; +contig08 ena start_codon 218595 218597 . - 0 gene_id "W7K_19480"; transcript_id "KOE97658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 218205 218207 . - 0 gene_id "W7K_19480"; transcript_id "KOE97658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 218599 219816 . - . gene_id "W7K_19485"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 218599 219816 . - . gene_id "W7K_19485"; transcript_id "KOE97659"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 218599 219816 . - . gene_id "W7K_19485"; transcript_id "KOE97659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97659-1"; +contig08 ena CDS 218602 219816 . - 0 gene_id "W7K_19485"; transcript_id "KOE97659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97659"; +contig08 ena start_codon 219814 219816 . - 0 gene_id "W7K_19485"; transcript_id "KOE97659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 218599 218601 . - 0 gene_id "W7K_19485"; transcript_id "KOE97659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 219837 221135 . - . gene_id "W7K_19490"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 219837 221135 . - . gene_id "W7K_19490"; transcript_id "KOE97660"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 219837 221135 . - . gene_id "W7K_19490"; transcript_id "KOE97660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97660-1"; +contig08 ena CDS 219840 221135 . - 0 gene_id "W7K_19490"; transcript_id "KOE97660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97660"; +contig08 ena start_codon 221133 221135 . - 0 gene_id "W7K_19490"; transcript_id "KOE97660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 219837 219839 . - 0 gene_id "W7K_19490"; transcript_id "KOE97660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 221146 221871 . - . gene_id "W7K_19495"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 221146 221871 . - . gene_id "W7K_19495"; transcript_id "KOE97661"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 221146 221871 . - . gene_id "W7K_19495"; transcript_id "KOE97661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97661-1"; +contig08 ena CDS 221149 221871 . - 0 gene_id "W7K_19495"; transcript_id "KOE97661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97661"; +contig08 ena start_codon 221869 221871 . - 0 gene_id "W7K_19495"; transcript_id "KOE97661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 221146 221148 . - 0 gene_id "W7K_19495"; transcript_id "KOE97661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 221907 223184 . - . gene_id "W7K_19500"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 221907 223184 . - . gene_id "W7K_19500"; transcript_id "KOE97662"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 221907 223184 . - . gene_id "W7K_19500"; transcript_id "KOE97662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97662-1"; +contig08 ena CDS 221910 223184 . - 0 gene_id "W7K_19500"; transcript_id "KOE97662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97662"; +contig08 ena start_codon 223182 223184 . - 0 gene_id "W7K_19500"; transcript_id "KOE97662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 221907 221909 . - 0 gene_id "W7K_19500"; transcript_id "KOE97662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 223388 225226 . + . gene_id "W7K_19505"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 223388 225226 . + . gene_id "W7K_19505"; transcript_id "KOE97663"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 223388 225226 . + . gene_id "W7K_19505"; transcript_id "KOE97663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97663-1"; +contig08 ena CDS 223388 225223 . + 0 gene_id "W7K_19505"; transcript_id "KOE97663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97663"; +contig08 ena start_codon 223388 223390 . + 0 gene_id "W7K_19505"; transcript_id "KOE97663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 225224 225226 . + 0 gene_id "W7K_19505"; transcript_id "KOE97663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 225672 226103 . + . gene_id "W7K_19510"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 225672 226103 . + . gene_id "W7K_19510"; transcript_id "KOE97664"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 225672 226103 . + . gene_id "W7K_19510"; transcript_id "KOE97664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97664-1"; +contig08 ena CDS 225672 226100 . + 0 gene_id "W7K_19510"; transcript_id "KOE97664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97664"; +contig08 ena start_codon 225672 225674 . + 0 gene_id "W7K_19510"; transcript_id "KOE97664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 226101 226103 . + 0 gene_id "W7K_19510"; transcript_id "KOE97664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 226171 226599 . - . gene_id "W7K_19515"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 226171 226599 . - . gene_id "W7K_19515"; transcript_id "KOE97665"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 226171 226599 . - . gene_id "W7K_19515"; transcript_id "KOE97665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97665-1"; +contig08 ena CDS 226174 226599 . - 0 gene_id "W7K_19515"; transcript_id "KOE97665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97665"; +contig08 ena start_codon 226597 226599 . - 0 gene_id "W7K_19515"; transcript_id "KOE97665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 226171 226173 . - 0 gene_id "W7K_19515"; transcript_id "KOE97665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 226721 227239 . - . gene_id "W7K_19520"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 226721 227239 . - . gene_id "W7K_19520"; transcript_id "KOE97666"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 226721 227239 . - . gene_id "W7K_19520"; transcript_id "KOE97666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97666-1"; +contig08 ena CDS 226724 227239 . - 0 gene_id "W7K_19520"; transcript_id "KOE97666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97666"; +contig08 ena start_codon 227237 227239 . - 0 gene_id "W7K_19520"; transcript_id "KOE97666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 226721 226723 . - 0 gene_id "W7K_19520"; transcript_id "KOE97666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 227362 228474 . + . gene_id "W7K_19525"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 227362 228474 . + . gene_id "W7K_19525"; transcript_id "KOE97667"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 227362 228474 . + . gene_id "W7K_19525"; transcript_id "KOE97667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97667-1"; +contig08 ena CDS 227362 228471 . + 0 gene_id "W7K_19525"; transcript_id "KOE97667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97667"; +contig08 ena start_codon 227362 227364 . + 0 gene_id "W7K_19525"; transcript_id "KOE97667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 228472 228474 . + 0 gene_id "W7K_19525"; transcript_id "KOE97667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 228523 228927 . - . gene_id "W7K_19530"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 228523 228927 . - . gene_id "W7K_19530"; transcript_id "KOE97668"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 228523 228927 . - . gene_id "W7K_19530"; transcript_id "KOE97668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97668-1"; +contig08 ena CDS 228526 228927 . - 0 gene_id "W7K_19530"; transcript_id "KOE97668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97668"; +contig08 ena start_codon 228925 228927 . - 0 gene_id "W7K_19530"; transcript_id "KOE97668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 228523 228525 . - 0 gene_id "W7K_19530"; transcript_id "KOE97668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 229098 231128 . + . gene_id "W7K_19535"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 229098 231128 . + . gene_id "W7K_19535"; transcript_id "KOE97669"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 229098 231128 . + . gene_id "W7K_19535"; transcript_id "KOE97669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97669-1"; +contig08 ena CDS 229098 231125 . + 0 gene_id "W7K_19535"; transcript_id "KOE97669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97669"; +contig08 ena start_codon 229098 229100 . + 0 gene_id "W7K_19535"; transcript_id "KOE97669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 231126 231128 . + 0 gene_id "W7K_19535"; transcript_id "KOE97669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 231211 232014 . - . gene_id "W7K_19540"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 231211 232014 . - . gene_id "W7K_19540"; transcript_id "KOE97670"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 231211 232014 . - . gene_id "W7K_19540"; transcript_id "KOE97670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97670-1"; +contig08 ena CDS 231214 232014 . - 0 gene_id "W7K_19540"; transcript_id "KOE97670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97670"; +contig08 ena start_codon 232012 232014 . - 0 gene_id "W7K_19540"; transcript_id "KOE97670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 231211 231213 . - 0 gene_id "W7K_19540"; transcript_id "KOE97670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 232011 232577 . - . gene_id "W7K_19545"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 232011 232577 . - . gene_id "W7K_19545"; transcript_id "KOE97721"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 232011 232577 . - . gene_id "W7K_19545"; transcript_id "KOE97721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97721-1"; +contig08 ena CDS 232014 232577 . - 0 gene_id "W7K_19545"; transcript_id "KOE97721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97721"; +contig08 ena start_codon 232575 232577 . - 0 gene_id "W7K_19545"; transcript_id "KOE97721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 232011 232013 . - 0 gene_id "W7K_19545"; transcript_id "KOE97721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 232771 234237 . + . gene_id "W7K_19550"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 232771 234237 . + . gene_id "W7K_19550"; transcript_id "KOE97671"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 232771 234237 . + . gene_id "W7K_19550"; transcript_id "KOE97671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97671-1"; +contig08 ena CDS 232771 234234 . + 0 gene_id "W7K_19550"; transcript_id "KOE97671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97671"; +contig08 ena start_codon 232771 232773 . + 0 gene_id "W7K_19550"; transcript_id "KOE97671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 234235 234237 . + 0 gene_id "W7K_19550"; transcript_id "KOE97671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 234255 235382 . + . gene_id "W7K_19555"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 234255 235382 . + . gene_id "W7K_19555"; transcript_id "KOE97672"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 234255 235382 . + . gene_id "W7K_19555"; transcript_id "KOE97672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97672-1"; +contig08 ena CDS 234255 235379 . + 0 gene_id "W7K_19555"; transcript_id "KOE97672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97672"; +contig08 ena start_codon 234255 234257 . + 0 gene_id "W7K_19555"; transcript_id "KOE97672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 235380 235382 . + 0 gene_id "W7K_19555"; transcript_id "KOE97672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 235721 236818 . + . gene_id "W7K_19560"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 235721 236818 . + . gene_id "W7K_19560"; transcript_id "KOE97673"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 235721 236818 . + . gene_id "W7K_19560"; transcript_id "KOE97673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97673-1"; +contig08 ena CDS 235721 236815 . + 0 gene_id "W7K_19560"; transcript_id "KOE97673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97673"; +contig08 ena start_codon 235721 235723 . + 0 gene_id "W7K_19560"; transcript_id "KOE97673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 236816 236818 . + 0 gene_id "W7K_19560"; transcript_id "KOE97673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 236854 237336 . - . gene_id "W7K_19565"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 236854 237336 . - . gene_id "W7K_19565"; transcript_id "KOE97674"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 236854 237336 . - . gene_id "W7K_19565"; transcript_id "KOE97674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97674-1"; +contig08 ena CDS 236857 237336 . - 0 gene_id "W7K_19565"; transcript_id "KOE97674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97674"; +contig08 ena start_codon 237334 237336 . - 0 gene_id "W7K_19565"; transcript_id "KOE97674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 236854 236856 . - 0 gene_id "W7K_19565"; transcript_id "KOE97674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 237427 238323 . + . gene_id "W7K_19570"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 237427 238323 . + . gene_id "W7K_19570"; transcript_id "KOE97675"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 237427 238323 . + . gene_id "W7K_19570"; transcript_id "KOE97675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97675-1"; +contig08 ena CDS 237427 238320 . + 0 gene_id "W7K_19570"; transcript_id "KOE97675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97675"; +contig08 ena start_codon 237427 237429 . + 0 gene_id "W7K_19570"; transcript_id "KOE97675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 238321 238323 . + 0 gene_id "W7K_19570"; transcript_id "KOE97675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 238509 239516 . + . gene_id "W7K_19575"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 238509 239516 . + . gene_id "W7K_19575"; transcript_id "KOE97676"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 238509 239516 . + . gene_id "W7K_19575"; transcript_id "KOE97676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97676-1"; +contig08 ena CDS 238509 239513 . + 0 gene_id "W7K_19575"; transcript_id "KOE97676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97676"; +contig08 ena start_codon 238509 238511 . + 0 gene_id "W7K_19575"; transcript_id "KOE97676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 239514 239516 . + 0 gene_id "W7K_19575"; transcript_id "KOE97676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 239513 240202 . + . gene_id "W7K_19580"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 239513 240202 . + . gene_id "W7K_19580"; transcript_id "KOE97677"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 239513 240202 . + . gene_id "W7K_19580"; transcript_id "KOE97677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97677-1"; +contig08 ena CDS 239513 240199 . + 0 gene_id "W7K_19580"; transcript_id "KOE97677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97677"; +contig08 ena start_codon 239513 239515 . + 0 gene_id "W7K_19580"; transcript_id "KOE97677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 240200 240202 . + 0 gene_id "W7K_19580"; transcript_id "KOE97677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 240289 240891 . - . gene_id "W7K_19585"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 240289 240891 . - . gene_id "W7K_19585"; transcript_id "KOE97678"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 240289 240891 . - . gene_id "W7K_19585"; transcript_id "KOE97678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97678-1"; +contig08 ena CDS 240292 240891 . - 0 gene_id "W7K_19585"; transcript_id "KOE97678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97678"; +contig08 ena start_codon 240889 240891 . - 0 gene_id "W7K_19585"; transcript_id "KOE97678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 240289 240291 . - 0 gene_id "W7K_19585"; transcript_id "KOE97678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 241019 241345 . + . gene_id "W7K_19590"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 241019 241345 . + . gene_id "W7K_19590"; transcript_id "KOE97679"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 241019 241345 . + . gene_id "W7K_19590"; transcript_id "KOE97679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97679-1"; +contig08 ena CDS 241019 241342 . + 0 gene_id "W7K_19590"; transcript_id "KOE97679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97679"; +contig08 ena start_codon 241019 241021 . + 0 gene_id "W7K_19590"; transcript_id "KOE97679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 241343 241345 . + 0 gene_id "W7K_19590"; transcript_id "KOE97679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 241415 243511 . + . gene_id "W7K_19595"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 241415 243511 . + . gene_id "W7K_19595"; transcript_id "KOE97680"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 241415 243511 . + . gene_id "W7K_19595"; transcript_id "KOE97680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97680-1"; +contig08 ena CDS 241415 243508 . + 0 gene_id "W7K_19595"; transcript_id "KOE97680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97680"; +contig08 ena start_codon 241415 241417 . + 0 gene_id "W7K_19595"; transcript_id "KOE97680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 243509 243511 . + 0 gene_id "W7K_19595"; transcript_id "KOE97680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 243632 244816 . - . gene_id "W7K_19600"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 243632 244816 . - . gene_id "W7K_19600"; transcript_id "KOE97681"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 243632 244816 . - . gene_id "W7K_19600"; transcript_id "KOE97681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97681-1"; +contig08 ena CDS 243635 244816 . - 0 gene_id "W7K_19600"; transcript_id "KOE97681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97681"; +contig08 ena start_codon 244814 244816 . - 0 gene_id "W7K_19600"; transcript_id "KOE97681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 243632 243634 . - 0 gene_id "W7K_19600"; transcript_id "KOE97681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 244960 247071 . + . gene_id "W7K_19605"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 244960 247071 . + . gene_id "W7K_19605"; transcript_id "KOE97682"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 244960 247071 . + . gene_id "W7K_19605"; transcript_id "KOE97682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97682-1"; +contig08 ena CDS 244960 247068 . + 0 gene_id "W7K_19605"; transcript_id "KOE97682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97682"; +contig08 ena start_codon 244960 244962 . + 0 gene_id "W7K_19605"; transcript_id "KOE97682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 247069 247071 . + 0 gene_id "W7K_19605"; transcript_id "KOE97682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 247126 247551 . + . gene_id "W7K_19610"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 247126 247551 . + . gene_id "W7K_19610"; transcript_id "KOE97683"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 247126 247551 . + . gene_id "W7K_19610"; transcript_id "KOE97683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97683-1"; +contig08 ena CDS 247126 247548 . + 0 gene_id "W7K_19610"; transcript_id "KOE97683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97683"; +contig08 ena start_codon 247126 247128 . + 0 gene_id "W7K_19610"; transcript_id "KOE97683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 247549 247551 . + 0 gene_id "W7K_19610"; transcript_id "KOE97683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 247634 247906 . + . gene_id "W7K_19615"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 247634 247906 . + . gene_id "W7K_19615"; transcript_id "KOE97684"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 247634 247906 . + . gene_id "W7K_19615"; transcript_id "KOE97684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97684-1"; +contig08 ena CDS 247634 247903 . + 0 gene_id "W7K_19615"; transcript_id "KOE97684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97684"; +contig08 ena start_codon 247634 247636 . + 0 gene_id "W7K_19615"; transcript_id "KOE97684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 247904 247906 . + 0 gene_id "W7K_19615"; transcript_id "KOE97684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 247899 248750 . + . gene_id "W7K_19620"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 247899 248750 . + . gene_id "W7K_19620"; transcript_id "KOE97685"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 247899 248750 . + . gene_id "W7K_19620"; transcript_id "KOE97685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97685-1"; +contig08 ena CDS 247899 248747 . + 0 gene_id "W7K_19620"; transcript_id "KOE97685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97685"; +contig08 ena start_codon 247899 247901 . + 0 gene_id "W7K_19620"; transcript_id "KOE97685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 248748 248750 . + 0 gene_id "W7K_19620"; transcript_id "KOE97685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 248747 249421 . + . gene_id "W7K_19625"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 248747 249421 . + . gene_id "W7K_19625"; transcript_id "KOE97686"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 248747 249421 . + . gene_id "W7K_19625"; transcript_id "KOE97686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97686-1"; +contig08 ena CDS 248747 249418 . + 0 gene_id "W7K_19625"; transcript_id "KOE97686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97686"; +contig08 ena start_codon 248747 248749 . + 0 gene_id "W7K_19625"; transcript_id "KOE97686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 249419 249421 . + 0 gene_id "W7K_19625"; transcript_id "KOE97686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 249435 250325 . + . gene_id "W7K_19630"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 249435 250325 . + . gene_id "W7K_19630"; transcript_id "KOE97687"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 249435 250325 . + . gene_id "W7K_19630"; transcript_id "KOE97687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97687-1"; +contig08 ena CDS 249435 250322 . + 0 gene_id "W7K_19630"; transcript_id "KOE97687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97687"; +contig08 ena start_codon 249435 249437 . + 0 gene_id "W7K_19630"; transcript_id "KOE97687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 250323 250325 . + 0 gene_id "W7K_19630"; transcript_id "KOE97687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 250403 250603 . + . gene_id "W7K_19635"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 250403 250603 . + . gene_id "W7K_19635"; transcript_id "KOE97722"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 250403 250603 . + . gene_id "W7K_19635"; transcript_id "KOE97722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97722-1"; +contig08 ena CDS 250403 250600 . + 0 gene_id "W7K_19635"; transcript_id "KOE97722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97722"; +contig08 ena start_codon 250403 250405 . + 0 gene_id "W7K_19635"; transcript_id "KOE97722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 250601 250603 . + 0 gene_id "W7K_19635"; transcript_id "KOE97722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 250678 251229 . + . gene_id "W7K_19640"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 250678 251229 . + . gene_id "W7K_19640"; transcript_id "KOE97688"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 250678 251229 . + . gene_id "W7K_19640"; transcript_id "KOE97688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97688-1"; +contig08 ena CDS 250678 251226 . + 0 gene_id "W7K_19640"; transcript_id "KOE97688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97688"; +contig08 ena start_codon 250678 250680 . + 0 gene_id "W7K_19640"; transcript_id "KOE97688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 251227 251229 . + 0 gene_id "W7K_19640"; transcript_id "KOE97688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 251290 252663 . + . gene_id "W7K_19645"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 251290 252663 . + . gene_id "W7K_19645"; transcript_id "KOE97689"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 251290 252663 . + . gene_id "W7K_19645"; transcript_id "KOE97689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97689-1"; +contig08 ena CDS 251290 252660 . + 0 gene_id "W7K_19645"; transcript_id "KOE97689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97689"; +contig08 ena start_codon 251290 251292 . + 0 gene_id "W7K_19645"; transcript_id "KOE97689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 252661 252663 . + 0 gene_id "W7K_19645"; transcript_id "KOE97689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 252718 253710 . - . gene_id "W7K_19650"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 252718 253710 . - . gene_id "W7K_19650"; transcript_id "KOE97690"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 252718 253710 . - . gene_id "W7K_19650"; transcript_id "KOE97690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97690-1"; +contig08 ena CDS 252721 253710 . - 0 gene_id "W7K_19650"; transcript_id "KOE97690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97690"; +contig08 ena start_codon 253708 253710 . - 0 gene_id "W7K_19650"; transcript_id "KOE97690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 252718 252720 . - 0 gene_id "W7K_19650"; transcript_id "KOE97690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 253756 254415 . - . gene_id "W7K_19655"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 253756 254415 . - . gene_id "W7K_19655"; transcript_id "KOE97691"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 253756 254415 . - . gene_id "W7K_19655"; transcript_id "KOE97691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97691-1"; +contig08 ena CDS 253759 254415 . - 0 gene_id "W7K_19655"; transcript_id "KOE97691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97691"; +contig08 ena start_codon 254413 254415 . - 0 gene_id "W7K_19655"; transcript_id "KOE97691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 253756 253758 . - 0 gene_id "W7K_19655"; transcript_id "KOE97691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 254625 255809 . + . gene_id "W7K_19660"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 254625 255809 . + . gene_id "W7K_19660"; transcript_id "KOE97692"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 254625 255809 . + . gene_id "W7K_19660"; transcript_id "KOE97692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97692-1"; +contig08 ena CDS 254625 255806 . + 0 gene_id "W7K_19660"; transcript_id "KOE97692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97692"; +contig08 ena start_codon 254625 254627 . + 0 gene_id "W7K_19660"; transcript_id "KOE97692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 255807 255809 . + 0 gene_id "W7K_19660"; transcript_id "KOE97692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 255822 258944 . + . gene_id "W7K_19665"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 255822 258944 . + . gene_id "W7K_19665"; transcript_id "KOE97693"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 255822 258944 . + . gene_id "W7K_19665"; transcript_id "KOE97693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97693-1"; +contig08 ena CDS 255822 258941 . + 0 gene_id "W7K_19665"; transcript_id "KOE97693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97693"; +contig08 ena start_codon 255822 255824 . + 0 gene_id "W7K_19665"; transcript_id "KOE97693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 258942 258944 . + 0 gene_id "W7K_19665"; transcript_id "KOE97693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 259042 260427 . + . gene_id "W7K_19670"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 259042 260427 . + . gene_id "W7K_19670"; transcript_id "KOE97694"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 259042 260427 . + . gene_id "W7K_19670"; transcript_id "KOE97694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97694-1"; +contig08 ena CDS 259042 260424 . + 0 gene_id "W7K_19670"; transcript_id "KOE97694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97694"; +contig08 ena start_codon 259042 259044 . + 0 gene_id "W7K_19670"; transcript_id "KOE97694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 260425 260427 . + 0 gene_id "W7K_19670"; transcript_id "KOE97694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 260536 260841 . - . gene_id "W7K_19675"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 260536 260841 . - . gene_id "W7K_19675"; transcript_id "KOE97695"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 260536 260841 . - . gene_id "W7K_19675"; transcript_id "KOE97695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97695-1"; +contig08 ena CDS 260539 260841 . - 0 gene_id "W7K_19675"; transcript_id "KOE97695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97695"; +contig08 ena start_codon 260839 260841 . - 0 gene_id "W7K_19675"; transcript_id "KOE97695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 260536 260538 . - 0 gene_id "W7K_19675"; transcript_id "KOE97695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 261096 261518 . - . gene_id "W7K_19680"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 261096 261518 . - . gene_id "W7K_19680"; transcript_id "KOE97696"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 261096 261518 . - . gene_id "W7K_19680"; transcript_id "KOE97696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97696-1"; +contig08 ena CDS 261099 261518 . - 0 gene_id "W7K_19680"; transcript_id "KOE97696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97696"; +contig08 ena start_codon 261516 261518 . - 0 gene_id "W7K_19680"; transcript_id "KOE97696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 261096 261098 . - 0 gene_id "W7K_19680"; transcript_id "KOE97696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 261586 261921 . - . gene_id "W7K_19685"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 261586 261921 . - . gene_id "W7K_19685"; transcript_id "KOE97697"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 261586 261921 . - . gene_id "W7K_19685"; transcript_id "KOE97697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97697-1"; +contig08 ena CDS 261589 261921 . - 0 gene_id "W7K_19685"; transcript_id "KOE97697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97697"; +contig08 ena start_codon 261919 261921 . - 0 gene_id "W7K_19685"; transcript_id "KOE97697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 261586 261588 . - 0 gene_id "W7K_19685"; transcript_id "KOE97697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 261997 262257 . - . gene_id "W7K_19690"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 261997 262257 . - . gene_id "W7K_19690"; transcript_id "KOE97698"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 261997 262257 . - . gene_id "W7K_19690"; transcript_id "KOE97698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97698-1"; +contig08 ena CDS 262000 262257 . - 0 gene_id "W7K_19690"; transcript_id "KOE97698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97698"; +contig08 ena start_codon 262255 262257 . - 0 gene_id "W7K_19690"; transcript_id "KOE97698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 261997 261999 . - 0 gene_id "W7K_19690"; transcript_id "KOE97698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 262456 262908 . - . gene_id "W7K_19695"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 262456 262908 . - . gene_id "W7K_19695"; transcript_id "KOE97699"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 262456 262908 . - . gene_id "W7K_19695"; transcript_id "KOE97699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97699-1"; +contig08 ena CDS 262459 262908 . - 0 gene_id "W7K_19695"; transcript_id "KOE97699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97699"; +contig08 ena start_codon 262906 262908 . - 0 gene_id "W7K_19695"; transcript_id "KOE97699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 262456 262458 . - 0 gene_id "W7K_19695"; transcript_id "KOE97699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 262989 263750 . + . gene_id "W7K_19700"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 262989 263750 . + . gene_id "W7K_19700"; transcript_id "KOE97700"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 262989 263750 . + . gene_id "W7K_19700"; transcript_id "KOE97700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97700-1"; +contig08 ena CDS 262989 263747 . + 0 gene_id "W7K_19700"; transcript_id "KOE97700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97700"; +contig08 ena start_codon 262989 262991 . + 0 gene_id "W7K_19700"; transcript_id "KOE97700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 263748 263750 . + 0 gene_id "W7K_19700"; transcript_id "KOE97700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 263997 265925 . + . gene_id "W7K_19705"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 263997 265925 . + . gene_id "W7K_19705"; transcript_id "KOE97701"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 263997 265925 . + . gene_id "W7K_19705"; transcript_id "KOE97701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97701-1"; +contig08 ena CDS 263997 265922 . + 0 gene_id "W7K_19705"; transcript_id "KOE97701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97701"; +contig08 ena start_codon 263997 263999 . + 0 gene_id "W7K_19705"; transcript_id "KOE97701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 265923 265925 . + 0 gene_id "W7K_19705"; transcript_id "KOE97701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 266053 266784 . + . gene_id "W7K_19710"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 266053 266784 . + . gene_id "W7K_19710"; transcript_id "KOE97702"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 266053 266784 . + . gene_id "W7K_19710"; transcript_id "KOE97702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97702-1"; +contig08 ena CDS 266053 266781 . + 0 gene_id "W7K_19710"; transcript_id "KOE97702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97702"; +contig08 ena start_codon 266053 266055 . + 0 gene_id "W7K_19710"; transcript_id "KOE97702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 266782 266784 . + 0 gene_id "W7K_19710"; transcript_id "KOE97702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 266784 267407 . + . gene_id "W7K_19715"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 266784 267407 . + . gene_id "W7K_19715"; transcript_id "KOE97703"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 266784 267407 . + . gene_id "W7K_19715"; transcript_id "KOE97703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97703-1"; +contig08 ena CDS 266784 267404 . + 0 gene_id "W7K_19715"; transcript_id "KOE97703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97703"; +contig08 ena start_codon 266784 266786 . + 0 gene_id "W7K_19715"; transcript_id "KOE97703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 267405 267407 . + 0 gene_id "W7K_19715"; transcript_id "KOE97703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 267594 268532 . - . gene_id "W7K_19720"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 267594 268532 . - . gene_id "W7K_19720"; transcript_id "KOE97704"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 267594 268532 . - . gene_id "W7K_19720"; transcript_id "KOE97704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97704-1"; +contig08 ena CDS 267597 268532 . - 0 gene_id "W7K_19720"; transcript_id "KOE97704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97704"; +contig08 ena start_codon 268530 268532 . - 0 gene_id "W7K_19720"; transcript_id "KOE97704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 267594 267596 . - 0 gene_id "W7K_19720"; transcript_id "KOE97704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 268816 269862 . + . gene_id "W7K_19725"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 268816 269862 . + . gene_id "W7K_19725"; transcript_id "KOE97705"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 268816 269862 . + . gene_id "W7K_19725"; transcript_id "KOE97705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97705-1"; +contig08 ena CDS 268816 269859 . + 0 gene_id "W7K_19725"; transcript_id "KOE97705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97705"; +contig08 ena start_codon 268816 268818 . + 0 gene_id "W7K_19725"; transcript_id "KOE97705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 269860 269862 . + 0 gene_id "W7K_19725"; transcript_id "KOE97705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 269984 271117 . + . gene_id "W7K_19730"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 269984 271117 . + . gene_id "W7K_19730"; transcript_id "KOE97706"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 269984 271117 . + . gene_id "W7K_19730"; transcript_id "KOE97706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97706-1"; +contig08 ena CDS 269984 271114 . + 0 gene_id "W7K_19730"; transcript_id "KOE97706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97706"; +contig08 ena start_codon 269984 269986 . + 0 gene_id "W7K_19730"; transcript_id "KOE97706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 271115 271117 . + 0 gene_id "W7K_19730"; transcript_id "KOE97706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 271114 271599 . + . gene_id "W7K_19735"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 271114 271599 . + . gene_id "W7K_19735"; transcript_id "KOE97707"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 271114 271599 . + . gene_id "W7K_19735"; transcript_id "KOE97707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97707-1"; +contig08 ena CDS 271114 271596 . + 0 gene_id "W7K_19735"; transcript_id "KOE97707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97707"; +contig08 ena start_codon 271114 271116 . + 0 gene_id "W7K_19735"; transcript_id "KOE97707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 271597 271599 . + 0 gene_id "W7K_19735"; transcript_id "KOE97707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 271603 273681 . + . gene_id "W7K_19740"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 271603 273681 . + . gene_id "W7K_19740"; transcript_id "KOE97708"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 271603 273681 . + . gene_id "W7K_19740"; transcript_id "KOE97708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97708-1"; +contig08 ena CDS 271603 273678 . + 0 gene_id "W7K_19740"; transcript_id "KOE97708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97708"; +contig08 ena start_codon 271603 271605 . + 0 gene_id "W7K_19740"; transcript_id "KOE97708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 273679 273681 . + 0 gene_id "W7K_19740"; transcript_id "KOE97708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 273678 274790 . + . gene_id "W7K_19745"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 273678 274790 . + . gene_id "W7K_19745"; transcript_id "KOE97709"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 273678 274790 . + . gene_id "W7K_19745"; transcript_id "KOE97709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97709-1"; +contig08 ena CDS 273678 274787 . + 0 gene_id "W7K_19745"; transcript_id "KOE97709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97709"; +contig08 ena start_codon 273678 273680 . + 0 gene_id "W7K_19745"; transcript_id "KOE97709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 274788 274790 . + 0 gene_id "W7K_19745"; transcript_id "KOE97709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena gene 274844 275947 . + . gene_id "W7K_19750"; gene_source "ena"; gene_biotype "protein_coding"; +contig08 ena transcript 274844 275947 . + . gene_id "W7K_19750"; transcript_id "KOE97710"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena exon 274844 275947 . + . gene_id "W7K_19750"; transcript_id "KOE97710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97710-1"; +contig08 ena CDS 274844 275944 . + 0 gene_id "W7K_19750"; transcript_id "KOE97710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97710"; +contig08 ena start_codon 274844 274846 . + 0 gene_id "W7K_19750"; transcript_id "KOE97710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig08 ena stop_codon 275945 275947 . + 0 gene_id "W7K_19750"; transcript_id "KOE97710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 241 996 . + . gene_id "W7K_02525"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 241 996 . + . gene_id "W7K_02525"; transcript_id "KOF00607"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 241 996 . + . gene_id "W7K_02525"; transcript_id "KOF00607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00607-1"; +contig42 ena CDS 241 993 . + 0 gene_id "W7K_02525"; transcript_id "KOF00607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00607"; +contig42 ena start_codon 241 243 . + 0 gene_id "W7K_02525"; transcript_id "KOF00607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 994 996 . + 0 gene_id "W7K_02525"; transcript_id "KOF00607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 1028 1465 . + . gene_id "W7K_02530"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 1028 1465 . + . gene_id "W7K_02530"; transcript_id "KOF00608"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 1028 1465 . + . gene_id "W7K_02530"; transcript_id "KOF00608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00608-1"; +contig42 ena CDS 1028 1462 . + 0 gene_id "W7K_02530"; transcript_id "KOF00608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00608"; +contig42 ena start_codon 1028 1030 . + 0 gene_id "W7K_02530"; transcript_id "KOF00608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 1463 1465 . + 0 gene_id "W7K_02530"; transcript_id "KOF00608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 1517 1601 . + . gene_id "W7K_02535"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 1517 1601 . + . gene_id "W7K_02535"; transcript_id "EBT00051077662"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02535"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 1517 1601 . + . gene_id "W7K_02535"; transcript_id "EBT00051077662"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02535"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_02535-1"; +contig42 ena gene 1713 2069 . + . gene_id "W7K_02540"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 1713 2069 . + . gene_id "W7K_02540"; transcript_id "KOF00609"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 1713 2069 . + . gene_id "W7K_02540"; transcript_id "KOF00609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00609-1"; +contig42 ena CDS 1713 2066 . + 0 gene_id "W7K_02540"; transcript_id "KOF00609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00609"; +contig42 ena start_codon 1713 1715 . + 0 gene_id "W7K_02540"; transcript_id "KOF00609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 2067 2069 . + 0 gene_id "W7K_02540"; transcript_id "KOF00609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 2060 2614 . + . gene_id "W7K_02545"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 2060 2614 . + . gene_id "W7K_02545"; transcript_id "KOF00610"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 2060 2614 . + . gene_id "W7K_02545"; transcript_id "KOF00610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00610-1"; +contig42 ena CDS 2060 2611 . + 0 gene_id "W7K_02545"; transcript_id "KOF00610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00610"; +contig42 ena start_codon 2060 2062 . + 0 gene_id "W7K_02545"; transcript_id "KOF00610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 2612 2614 . + 0 gene_id "W7K_02545"; transcript_id "KOF00610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 2648 3397 . + . gene_id "W7K_02550"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 2648 3397 . + . gene_id "W7K_02550"; transcript_id "KOF00611"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 2648 3397 . + . gene_id "W7K_02550"; transcript_id "KOF00611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00611-1"; +contig42 ena CDS 2648 3394 . + 0 gene_id "W7K_02550"; transcript_id "KOF00611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00611"; +contig42 ena start_codon 2648 2650 . + 0 gene_id "W7K_02550"; transcript_id "KOF00611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 3395 3397 . + 0 gene_id "W7K_02550"; transcript_id "KOF00611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 3394 4701 . + . gene_id "W7K_02555"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 3394 4701 . + . gene_id "W7K_02555"; transcript_id "KOF00612"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 3394 4701 . + . gene_id "W7K_02555"; transcript_id "KOF00612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00612-1"; +contig42 ena CDS 3394 4698 . + 0 gene_id "W7K_02555"; transcript_id "KOF00612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00612"; +contig42 ena start_codon 3394 3396 . + 0 gene_id "W7K_02555"; transcript_id "KOF00612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 4699 4701 . + 0 gene_id "W7K_02555"; transcript_id "KOF00612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 4799 5326 . + . gene_id "W7K_02560"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 4799 5326 . + . gene_id "W7K_02560"; transcript_id "KOF00613"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 4799 5326 . + . gene_id "W7K_02560"; transcript_id "KOF00613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00613-1"; +contig42 ena CDS 4799 5323 . + 0 gene_id "W7K_02560"; transcript_id "KOF00613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00613"; +contig42 ena start_codon 4799 4801 . + 0 gene_id "W7K_02560"; transcript_id "KOF00613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 5324 5326 . + 0 gene_id "W7K_02560"; transcript_id "KOF00613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 5331 6671 . + . gene_id "W7K_02565"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 5331 6671 . + . gene_id "W7K_02565"; transcript_id "KOF00614"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 5331 6671 . + . gene_id "W7K_02565"; transcript_id "KOF00614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00614-1"; +contig42 ena CDS 5331 6668 . + 0 gene_id "W7K_02565"; transcript_id "KOF00614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00614"; +contig42 ena start_codon 5331 5333 . + 0 gene_id "W7K_02565"; transcript_id "KOF00614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 6669 6671 . + 0 gene_id "W7K_02565"; transcript_id "KOF00614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 6668 8902 . + . gene_id "W7K_02570"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 6668 8902 . + . gene_id "W7K_02570"; transcript_id "KOF00615"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 6668 8902 . + . gene_id "W7K_02570"; transcript_id "KOF00615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00615-1"; +contig42 ena CDS 6668 8899 . + 0 gene_id "W7K_02570"; transcript_id "KOF00615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00615"; +contig42 ena start_codon 6668 6670 . + 0 gene_id "W7K_02570"; transcript_id "KOF00615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 8900 8902 . + 0 gene_id "W7K_02570"; transcript_id "KOF00615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 8899 9993 . + . gene_id "W7K_02575"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 8899 9993 . + . gene_id "W7K_02575"; transcript_id "KOF00616"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 8899 9993 . + . gene_id "W7K_02575"; transcript_id "KOF00616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00616-1"; +contig42 ena CDS 8899 9990 . + 0 gene_id "W7K_02575"; transcript_id "KOF00616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00616"; +contig42 ena start_codon 8899 8901 . + 0 gene_id "W7K_02575"; transcript_id "KOF00616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 9991 9993 . + 0 gene_id "W7K_02575"; transcript_id "KOF00616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 9998 10486 . + . gene_id "W7K_02580"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 9998 10486 . + . gene_id "W7K_02580"; transcript_id "KOF00617"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 9998 10486 . + . gene_id "W7K_02580"; transcript_id "KOF00617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00617-1"; +contig42 ena CDS 9998 10483 . + 0 gene_id "W7K_02580"; transcript_id "KOF00617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00617"; +contig42 ena start_codon 9998 10000 . + 0 gene_id "W7K_02580"; transcript_id "KOF00617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 10484 10486 . + 0 gene_id "W7K_02580"; transcript_id "KOF00617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 10496 11152 . + . gene_id "W7K_02585"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 10496 11152 . + . gene_id "W7K_02585"; transcript_id "KOF00618"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 10496 11152 . + . gene_id "W7K_02585"; transcript_id "KOF00618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00618-1"; +contig42 ena CDS 10496 11149 . + 0 gene_id "W7K_02585"; transcript_id "KOF00618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00618"; +contig42 ena start_codon 10496 10498 . + 0 gene_id "W7K_02585"; transcript_id "KOF00618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 11150 11152 . + 0 gene_id "W7K_02585"; transcript_id "KOF00618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 11149 11454 . + . gene_id "W7K_02590"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 11149 11454 . + . gene_id "W7K_02590"; transcript_id "KOF00619"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 11149 11454 . + . gene_id "W7K_02590"; transcript_id "KOF00619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00619-1"; +contig42 ena CDS 11149 11451 . + 0 gene_id "W7K_02590"; transcript_id "KOF00619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00619"; +contig42 ena start_codon 11149 11151 . + 0 gene_id "W7K_02590"; transcript_id "KOF00619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 11452 11454 . + 0 gene_id "W7K_02590"; transcript_id "KOF00619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 11462 13621 . + . gene_id "W7K_02595"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 11462 13621 . + . gene_id "W7K_02595"; transcript_id "KOF00620"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 11462 13621 . + . gene_id "W7K_02595"; transcript_id "KOF00620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00620-1"; +contig42 ena CDS 11462 13618 . + 0 gene_id "W7K_02595"; transcript_id "KOF00620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00620"; +contig42 ena start_codon 11462 11464 . + 0 gene_id "W7K_02595"; transcript_id "KOF00620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 13619 13621 . + 0 gene_id "W7K_02595"; transcript_id "KOF00620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 13645 15153 . + . gene_id "W7K_02600"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 13645 15153 . + . gene_id "W7K_02600"; transcript_id "KOF00621"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 13645 15153 . + . gene_id "W7K_02600"; transcript_id "KOF00621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00621-1"; +contig42 ena CDS 13645 15150 . + 0 gene_id "W7K_02600"; transcript_id "KOF00621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00621"; +contig42 ena start_codon 13645 13647 . + 0 gene_id "W7K_02600"; transcript_id "KOF00621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 15151 15153 . + 0 gene_id "W7K_02600"; transcript_id "KOF00621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 15169 16629 . + . gene_id "W7K_02605"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 15169 16629 . + . gene_id "W7K_02605"; transcript_id "KOF00622"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 15169 16629 . + . gene_id "W7K_02605"; transcript_id "KOF00622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00622-1"; +contig42 ena CDS 15169 16626 . + 0 gene_id "W7K_02605"; transcript_id "KOF00622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00622"; +contig42 ena start_codon 15169 15171 . + 0 gene_id "W7K_02605"; transcript_id "KOF00622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 16627 16629 . + 0 gene_id "W7K_02605"; transcript_id "KOF00622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 16757 16833 . + . gene_id "W7K_02610"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 16757 16833 . + . gene_id "W7K_02610"; transcript_id "EBT00051077661"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02610"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 16757 16833 . + . gene_id "W7K_02610"; transcript_id "EBT00051077661"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02610"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_02610-1"; +contig42 ena gene 16916 16992 . + . gene_id "W7K_02615"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 16916 16992 . + . gene_id "W7K_02615"; transcript_id "EBT00051077659"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02615"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 16916 16992 . + . gene_id "W7K_02615"; transcript_id "EBT00051077659"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02615"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_02615-1"; +contig42 ena gene 17381 17971 . + . gene_id "W7K_02620"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 17381 17971 . + . gene_id "W7K_02620"; transcript_id "KOF00623"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 17381 17971 . + . gene_id "W7K_02620"; transcript_id "KOF00623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00623-1"; +contig42 ena CDS 17381 17968 . + 0 gene_id "W7K_02620"; transcript_id "KOF00623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00623"; +contig42 ena start_codon 17381 17383 . + 0 gene_id "W7K_02620"; transcript_id "KOF00623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 17969 17971 . + 0 gene_id "W7K_02620"; transcript_id "KOF00623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 17976 19487 . + . gene_id "W7K_02625"; gene_name "nusA"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 17976 19487 . + . gene_id "W7K_02625"; transcript_id "KOF00624"; gene_name "nusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 17976 19487 . + . gene_id "W7K_02625"; transcript_id "KOF00624"; exon_number "1"; gene_name "nusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00624-1"; +contig42 ena CDS 17976 19484 . + 0 gene_id "W7K_02625"; transcript_id "KOF00624"; exon_number "1"; gene_name "nusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00624"; +contig42 ena start_codon 17976 17978 . + 0 gene_id "W7K_02625"; transcript_id "KOF00624"; exon_number "1"; gene_name "nusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 19485 19487 . + 0 gene_id "W7K_02625"; transcript_id "KOF00624"; exon_number "1"; gene_name "nusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 19580 22225 . + . gene_id "W7K_02630"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 19580 22225 . + . gene_id "W7K_02630"; transcript_id "KOF00625"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 19580 22225 . + . gene_id "W7K_02630"; transcript_id "KOF00625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00625-1"; +contig42 ena CDS 19580 22222 . + 0 gene_id "W7K_02630"; transcript_id "KOF00625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00625"; +contig42 ena start_codon 19580 19582 . + 0 gene_id "W7K_02630"; transcript_id "KOF00625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 22223 22225 . + 0 gene_id "W7K_02630"; transcript_id "KOF00625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 22318 22701 . + . gene_id "W7K_02635"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 22318 22701 . + . gene_id "W7K_02635"; transcript_id "KOF00626"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 22318 22701 . + . gene_id "W7K_02635"; transcript_id "KOF00626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00626-1"; +contig42 ena CDS 22318 22698 . + 0 gene_id "W7K_02635"; transcript_id "KOF00626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00626"; +contig42 ena start_codon 22318 22320 . + 0 gene_id "W7K_02635"; transcript_id "KOF00626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 22699 22701 . + 0 gene_id "W7K_02635"; transcript_id "KOF00626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 22810 23718 . + . gene_id "W7K_02640"; gene_name "truB"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 22810 23718 . + . gene_id "W7K_02640"; transcript_id "KOF00627"; gene_name "truB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "truB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 22810 23718 . + . gene_id "W7K_02640"; transcript_id "KOF00627"; exon_number "1"; gene_name "truB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "truB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00627-1"; +contig42 ena CDS 22810 23715 . + 0 gene_id "W7K_02640"; transcript_id "KOF00627"; exon_number "1"; gene_name "truB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "truB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00627"; +contig42 ena start_codon 22810 22812 . + 0 gene_id "W7K_02640"; transcript_id "KOF00627"; exon_number "1"; gene_name "truB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "truB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 23716 23718 . + 0 gene_id "W7K_02640"; transcript_id "KOF00627"; exon_number "1"; gene_name "truB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "truB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 23892 24152 . + . gene_id "W7K_02645"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 23892 24152 . + . gene_id "W7K_02645"; transcript_id "KOF00628"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 23892 24152 . + . gene_id "W7K_02645"; transcript_id "KOF00628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00628-1"; +contig42 ena CDS 23892 24149 . + 0 gene_id "W7K_02645"; transcript_id "KOF00628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00628"; +contig42 ena start_codon 23892 23894 . + 0 gene_id "W7K_02645"; transcript_id "KOF00628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 24150 24152 . + 0 gene_id "W7K_02645"; transcript_id "KOF00628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 24304 26412 . + . gene_id "W7K_02650"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 24304 26412 . + . gene_id "W7K_02650"; transcript_id "KOF00629"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 24304 26412 . + . gene_id "W7K_02650"; transcript_id "KOF00629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00629-1"; +contig42 ena CDS 24304 26409 . + 0 gene_id "W7K_02650"; transcript_id "KOF00629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00629"; +contig42 ena start_codon 24304 24306 . + 0 gene_id "W7K_02650"; transcript_id "KOF00629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 26410 26412 . + 0 gene_id "W7K_02650"; transcript_id "KOF00629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 26690 27880 . + . gene_id "W7K_02655"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 26690 27880 . + . gene_id "W7K_02655"; transcript_id "KOF00630"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 26690 27880 . + . gene_id "W7K_02655"; transcript_id "KOF00630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00630-1"; +contig42 ena CDS 26690 27877 . + 0 gene_id "W7K_02655"; transcript_id "KOF00630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00630"; +contig42 ena start_codon 26690 26692 . + 0 gene_id "W7K_02655"; transcript_id "KOF00630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 27878 27880 . + 0 gene_id "W7K_02655"; transcript_id "KOF00630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 27971 28375 . + . gene_id "W7K_02660"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 27971 28375 . + . gene_id "W7K_02660"; transcript_id "KOF00631"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 27971 28375 . + . gene_id "W7K_02660"; transcript_id "KOF00631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00631-1"; +contig42 ena CDS 27971 28372 . + 0 gene_id "W7K_02660"; transcript_id "KOF00631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00631"; +contig42 ena start_codon 27971 27973 . + 0 gene_id "W7K_02660"; transcript_id "KOF00631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 28373 28375 . + 0 gene_id "W7K_02660"; transcript_id "KOF00631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 28400 29959 . - . gene_id "W7K_02665"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 28400 29959 . - . gene_id "W7K_02665"; transcript_id "KOF00632"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 28400 29959 . - . gene_id "W7K_02665"; transcript_id "KOF00632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00632-1"; +contig42 ena CDS 28403 29959 . - 0 gene_id "W7K_02665"; transcript_id "KOF00632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00632"; +contig42 ena start_codon 29957 29959 . - 0 gene_id "W7K_02665"; transcript_id "KOF00632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 28400 28402 . - 0 gene_id "W7K_02665"; transcript_id "KOF00632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 29970 30233 . - . gene_id "W7K_02670"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 29970 30233 . - . gene_id "W7K_02670"; transcript_id "KOF00633"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 29970 30233 . - . gene_id "W7K_02670"; transcript_id "KOF00633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00633-1"; +contig42 ena CDS 29973 30233 . - 0 gene_id "W7K_02670"; transcript_id "KOF00633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00633"; +contig42 ena start_codon 30231 30233 . - 0 gene_id "W7K_02670"; transcript_id "KOF00633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 29970 29972 . - 0 gene_id "W7K_02670"; transcript_id "KOF00633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 30233 30529 . - . gene_id "W7K_02675"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 30233 30529 . - . gene_id "W7K_02675"; transcript_id "KOF00634"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 30233 30529 . - . gene_id "W7K_02675"; transcript_id "KOF00634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00634-1"; +contig42 ena CDS 30236 30529 . - 0 gene_id "W7K_02675"; transcript_id "KOF00634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00634"; +contig42 ena start_codon 30527 30529 . - 0 gene_id "W7K_02675"; transcript_id "KOF00634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 30233 30235 . - 0 gene_id "W7K_02675"; transcript_id "KOF00634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 30958 32859 . + . gene_id "W7K_02680"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 30958 32859 . + . gene_id "W7K_02680"; transcript_id "KOF00635"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 30958 32859 . + . gene_id "W7K_02680"; transcript_id "KOF00635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00635-1"; +contig42 ena CDS 30958 32856 . + 0 gene_id "W7K_02680"; transcript_id "KOF00635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00635"; +contig42 ena start_codon 30958 30960 . + 0 gene_id "W7K_02680"; transcript_id "KOF00635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 32857 32859 . + 0 gene_id "W7K_02680"; transcript_id "KOF00635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 32971 33450 . + . gene_id "W7K_02685"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 32971 33450 . + . gene_id "W7K_02685"; transcript_id "KOF00636"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 32971 33450 . + . gene_id "W7K_02685"; transcript_id "KOF00636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00636-1"; +contig42 ena CDS 32971 33447 . + 0 gene_id "W7K_02685"; transcript_id "KOF00636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00636"; +contig42 ena start_codon 32971 32973 . + 0 gene_id "W7K_02685"; transcript_id "KOF00636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 33448 33450 . + 0 gene_id "W7K_02685"; transcript_id "KOF00636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 33717 33914 . + . gene_id "W7K_02690"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 33717 33914 . + . gene_id "W7K_02690"; transcript_id "KOF00637"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 33717 33914 . + . gene_id "W7K_02690"; transcript_id "KOF00637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00637-1"; +contig42 ena CDS 33717 33911 . + 0 gene_id "W7K_02690"; transcript_id "KOF00637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00637"; +contig42 ena start_codon 33717 33719 . + 0 gene_id "W7K_02690"; transcript_id "KOF00637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 33912 33914 . + 0 gene_id "W7K_02690"; transcript_id "KOF00637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 33926 34285 . + . gene_id "W7K_02695"; gene_name "rplT"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 33926 34285 . + . gene_id "W7K_02695"; transcript_id "KOF00638"; gene_name "rplT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 33926 34285 . + . gene_id "W7K_02695"; transcript_id "KOF00638"; exon_number "1"; gene_name "rplT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00638-1"; +contig42 ena CDS 33926 34282 . + 0 gene_id "W7K_02695"; transcript_id "KOF00638"; exon_number "1"; gene_name "rplT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00638"; +contig42 ena start_codon 33926 33928 . + 0 gene_id "W7K_02695"; transcript_id "KOF00638"; exon_number "1"; gene_name "rplT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 34283 34285 . + 0 gene_id "W7K_02695"; transcript_id "KOF00638"; exon_number "1"; gene_name "rplT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 34479 35474 . + . gene_id "W7K_02700"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 34479 35474 . + . gene_id "W7K_02700"; transcript_id "KOF00639"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 34479 35474 . + . gene_id "W7K_02700"; transcript_id "KOF00639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00639-1"; +contig42 ena CDS 34479 35471 . + 0 gene_id "W7K_02700"; transcript_id "KOF00639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00639"; +contig42 ena start_codon 34479 34481 . + 0 gene_id "W7K_02700"; transcript_id "KOF00639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 35472 35474 . + 0 gene_id "W7K_02700"; transcript_id "KOF00639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 35596 37977 . + . gene_id "W7K_02705"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 35596 37977 . + . gene_id "W7K_02705"; transcript_id "KOF00640"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 35596 37977 . + . gene_id "W7K_02705"; transcript_id "KOF00640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00640-1"; +contig42 ena CDS 35596 37974 . + 0 gene_id "W7K_02705"; transcript_id "KOF00640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00640"; +contig42 ena start_codon 35596 35598 . + 0 gene_id "W7K_02705"; transcript_id "KOF00640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 37975 37977 . + 0 gene_id "W7K_02705"; transcript_id "KOF00640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 38005 38304 . + . gene_id "W7K_02710"; gene_name "ihfA"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 38005 38304 . + . gene_id "W7K_02710"; transcript_id "KOF00641"; gene_name "ihfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ihfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 38005 38304 . + . gene_id "W7K_02710"; transcript_id "KOF00641"; exon_number "1"; gene_name "ihfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ihfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00641-1"; +contig42 ena CDS 38005 38301 . + 0 gene_id "W7K_02710"; transcript_id "KOF00641"; exon_number "1"; gene_name "ihfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ihfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00641"; +contig42 ena start_codon 38005 38007 . + 0 gene_id "W7K_02710"; transcript_id "KOF00641"; exon_number "1"; gene_name "ihfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ihfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 38302 38304 . + 0 gene_id "W7K_02710"; transcript_id "KOF00641"; exon_number "1"; gene_name "ihfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ihfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 38285 38641 . + . gene_id "W7K_02715"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 38285 38641 . + . gene_id "W7K_02715"; transcript_id "KOF00642"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 38285 38641 . + . gene_id "W7K_02715"; transcript_id "KOF00642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00642-1"; +contig42 ena CDS 38285 38638 . + 0 gene_id "W7K_02715"; transcript_id "KOF00642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00642"; +contig42 ena start_codon 38285 38287 . + 0 gene_id "W7K_02715"; transcript_id "KOF00642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 38639 38641 . + 0 gene_id "W7K_02715"; transcript_id "KOF00642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 38710 38786 . + . gene_id "W7K_02720"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 38710 38786 . + . gene_id "W7K_02720"; transcript_id "EBT00051077663"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02720"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 38710 38786 . + . gene_id "W7K_02720"; transcript_id "EBT00051077663"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02720"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_02720-1"; +contig42 ena gene 38855 39295 . - . gene_id "W7K_02725"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 38855 39295 . - . gene_id "W7K_02725"; transcript_id "KOF00643"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 38855 39295 . - . gene_id "W7K_02725"; transcript_id "KOF00643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00643-1"; +contig42 ena CDS 38858 39295 . - 0 gene_id "W7K_02725"; transcript_id "KOF00643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00643"; +contig42 ena start_codon 39293 39295 . - 0 gene_id "W7K_02725"; transcript_id "KOF00643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 38855 38857 . - 0 gene_id "W7K_02725"; transcript_id "KOF00643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 39292 39645 . - . gene_id "W7K_02730"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 39292 39645 . - . gene_id "W7K_02730"; transcript_id "KOF00644"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 39292 39645 . - . gene_id "W7K_02730"; transcript_id "KOF00644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00644-1"; +contig42 ena CDS 39295 39645 . - 0 gene_id "W7K_02730"; transcript_id "KOF00644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00644"; +contig42 ena start_codon 39643 39645 . - 0 gene_id "W7K_02730"; transcript_id "KOF00644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 39292 39294 . - 0 gene_id "W7K_02730"; transcript_id "KOF00644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 39732 40241 . - . gene_id "W7K_02735"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 39732 40241 . - . gene_id "W7K_02735"; transcript_id "KOF00645"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 39732 40241 . - . gene_id "W7K_02735"; transcript_id "KOF00645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00645-1"; +contig42 ena CDS 39735 40241 . - 0 gene_id "W7K_02735"; transcript_id "KOF00645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00645"; +contig42 ena start_codon 40239 40241 . - 0 gene_id "W7K_02735"; transcript_id "KOF00645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 39732 39734 . - 0 gene_id "W7K_02735"; transcript_id "KOF00645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 40484 40879 . + . gene_id "W7K_02740"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 40484 40879 . + . gene_id "W7K_02740"; transcript_id "KOF00646"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 40484 40879 . + . gene_id "W7K_02740"; transcript_id "KOF00646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00646-1"; +contig42 ena CDS 40484 40876 . + 0 gene_id "W7K_02740"; transcript_id "KOF00646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00646"; +contig42 ena start_codon 40484 40486 . + 0 gene_id "W7K_02740"; transcript_id "KOF00646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 40877 40879 . + 0 gene_id "W7K_02740"; transcript_id "KOF00646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 40904 41596 . - . gene_id "W7K_02745"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 40904 41596 . - . gene_id "W7K_02745"; transcript_id "KOF00647"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 40904 41596 . - . gene_id "W7K_02745"; transcript_id "KOF00647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00647-1"; +contig42 ena CDS 40907 41596 . - 0 gene_id "W7K_02745"; transcript_id "KOF00647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00647"; +contig42 ena start_codon 41594 41596 . - 0 gene_id "W7K_02745"; transcript_id "KOF00647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 40904 40906 . - 0 gene_id "W7K_02745"; transcript_id "KOF00647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 41682 41993 . + . gene_id "W7K_02750"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 41682 41993 . + . gene_id "W7K_02750"; transcript_id "KOF00820"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 41682 41993 . + . gene_id "W7K_02750"; transcript_id "KOF00820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00820-1"; +contig42 ena CDS 41682 41990 . + 0 gene_id "W7K_02750"; transcript_id "KOF00820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00820"; +contig42 ena start_codon 41682 41684 . + 0 gene_id "W7K_02750"; transcript_id "KOF00820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 41991 41993 . + 0 gene_id "W7K_02750"; transcript_id "KOF00820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 41993 42343 . + . gene_id "W7K_02755"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 41993 42343 . + . gene_id "W7K_02755"; transcript_id "KOF00648"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 41993 42343 . + . gene_id "W7K_02755"; transcript_id "KOF00648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00648-1"; +contig42 ena CDS 41993 42340 . + 0 gene_id "W7K_02755"; transcript_id "KOF00648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00648"; +contig42 ena start_codon 41993 41995 . + 0 gene_id "W7K_02755"; transcript_id "KOF00648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 42341 42343 . + 0 gene_id "W7K_02755"; transcript_id "KOF00648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 42381 42989 . + . gene_id "W7K_02760"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 42381 42989 . + . gene_id "W7K_02760"; transcript_id "KOF00649"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 42381 42989 . + . gene_id "W7K_02760"; transcript_id "KOF00649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00649-1"; +contig42 ena CDS 42381 42986 . + 0 gene_id "W7K_02760"; transcript_id "KOF00649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00649"; +contig42 ena start_codon 42381 42383 . + 0 gene_id "W7K_02760"; transcript_id "KOF00649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 42987 42989 . + 0 gene_id "W7K_02760"; transcript_id "KOF00649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 43088 43729 . + . gene_id "W7K_02765"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 43088 43729 . + . gene_id "W7K_02765"; transcript_id "KOF00650"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 43088 43729 . + . gene_id "W7K_02765"; transcript_id "KOF00650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00650-1"; +contig42 ena CDS 43088 43726 . + 0 gene_id "W7K_02765"; transcript_id "KOF00650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00650"; +contig42 ena start_codon 43088 43090 . + 0 gene_id "W7K_02765"; transcript_id "KOF00650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 43727 43729 . + 0 gene_id "W7K_02765"; transcript_id "KOF00650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 43824 43997 . + . gene_id "W7K_02770"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 43824 43997 . + . gene_id "W7K_02770"; transcript_id "KOF00651"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 43824 43997 . + . gene_id "W7K_02770"; transcript_id "KOF00651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00651-1"; +contig42 ena CDS 43824 43994 . + 0 gene_id "W7K_02770"; transcript_id "KOF00651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00651"; +contig42 ena start_codon 43824 43826 . + 0 gene_id "W7K_02770"; transcript_id "KOF00651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 43995 43997 . + 0 gene_id "W7K_02770"; transcript_id "KOF00651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 44020 44352 . - . gene_id "W7K_02775"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 44020 44352 . - . gene_id "W7K_02775"; transcript_id "KOF00652"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 44020 44352 . - . gene_id "W7K_02775"; transcript_id "KOF00652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00652-1"; +contig42 ena CDS 44023 44352 . - 0 gene_id "W7K_02775"; transcript_id "KOF00652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00652"; +contig42 ena start_codon 44350 44352 . - 0 gene_id "W7K_02775"; transcript_id "KOF00652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 44020 44022 . - 0 gene_id "W7K_02775"; transcript_id "KOF00652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 44366 44938 . - . gene_id "W7K_02780"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 44366 44938 . - . gene_id "W7K_02780"; transcript_id "KOF00653"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 44366 44938 . - . gene_id "W7K_02780"; transcript_id "KOF00653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00653-1"; +contig42 ena CDS 44369 44938 . - 0 gene_id "W7K_02780"; transcript_id "KOF00653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00653"; +contig42 ena start_codon 44936 44938 . - 0 gene_id "W7K_02780"; transcript_id "KOF00653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 44366 44368 . - 0 gene_id "W7K_02780"; transcript_id "KOF00653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 45027 45260 . - . gene_id "W7K_02785"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 45027 45260 . - . gene_id "W7K_02785"; transcript_id "KOF00654"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 45027 45260 . - . gene_id "W7K_02785"; transcript_id "KOF00654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00654-1"; +contig42 ena CDS 45030 45260 . - 0 gene_id "W7K_02785"; transcript_id "KOF00654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00654"; +contig42 ena start_codon 45258 45260 . - 0 gene_id "W7K_02785"; transcript_id "KOF00654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 45027 45029 . - 0 gene_id "W7K_02785"; transcript_id "KOF00654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 45273 45545 . - . gene_id "W7K_02790"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 45273 45545 . - . gene_id "W7K_02790"; transcript_id "KOF00655"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 45273 45545 . - . gene_id "W7K_02790"; transcript_id "KOF00655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00655-1"; +contig42 ena CDS 45276 45545 . - 0 gene_id "W7K_02790"; transcript_id "KOF00655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00655"; +contig42 ena start_codon 45543 45545 . - 0 gene_id "W7K_02790"; transcript_id "KOF00655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 45273 45275 . - 0 gene_id "W7K_02790"; transcript_id "KOF00655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 45948 46154 . + . gene_id "W7K_02795"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 45948 46154 . + . gene_id "W7K_02795"; transcript_id "KOF00656"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 45948 46154 . + . gene_id "W7K_02795"; transcript_id "KOF00656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00656-1"; +contig42 ena CDS 45948 46151 . + 0 gene_id "W7K_02795"; transcript_id "KOF00656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00656"; +contig42 ena start_codon 45948 45950 . + 0 gene_id "W7K_02795"; transcript_id "KOF00656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 46152 46154 . + 0 gene_id "W7K_02795"; transcript_id "KOF00656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 46287 46850 . + . gene_id "W7K_02800"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 46287 46850 . + . gene_id "W7K_02800"; transcript_id "KOF00657"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 46287 46850 . + . gene_id "W7K_02800"; transcript_id "KOF00657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00657-1"; +contig42 ena CDS 46287 46847 . + 0 gene_id "W7K_02800"; transcript_id "KOF00657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00657"; +contig42 ena start_codon 46287 46289 . + 0 gene_id "W7K_02800"; transcript_id "KOF00657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 46848 46850 . + 0 gene_id "W7K_02800"; transcript_id "KOF00657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 47018 47221 . + . gene_id "W7K_02805"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 47018 47221 . + . gene_id "W7K_02805"; transcript_id "KOF00658"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 47018 47221 . + . gene_id "W7K_02805"; transcript_id "KOF00658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00658-1"; +contig42 ena CDS 47018 47218 . + 0 gene_id "W7K_02805"; transcript_id "KOF00658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00658"; +contig42 ena start_codon 47018 47020 . + 0 gene_id "W7K_02805"; transcript_id "KOF00658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 47219 47221 . + 0 gene_id "W7K_02805"; transcript_id "KOF00658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 47337 49244 . - . gene_id "W7K_02810"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 47337 49244 . - . gene_id "W7K_02810"; transcript_id "KOF00821"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 47337 49244 . - . gene_id "W7K_02810"; transcript_id "KOF00821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00821-1"; +contig42 ena CDS 47340 49244 . - 0 gene_id "W7K_02810"; transcript_id "KOF00821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00821"; +contig42 ena start_codon 49242 49244 . - 0 gene_id "W7K_02810"; transcript_id "KOF00821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 47337 47339 . - 0 gene_id "W7K_02810"; transcript_id "KOF00821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 49350 50015 . - . gene_id "W7K_02815"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 49350 50015 . - . gene_id "W7K_02815"; transcript_id "KOF00659"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 49350 50015 . - . gene_id "W7K_02815"; transcript_id "KOF00659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00659-1"; +contig42 ena CDS 49353 50015 . - 0 gene_id "W7K_02815"; transcript_id "KOF00659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00659"; +contig42 ena start_codon 50013 50015 . - 0 gene_id "W7K_02815"; transcript_id "KOF00659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 49350 49352 . - 0 gene_id "W7K_02815"; transcript_id "KOF00659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 50560 52350 . - . gene_id "W7K_02820"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 50560 52350 . - . gene_id "W7K_02820"; transcript_id "KOF00660"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 50560 52350 . - . gene_id "W7K_02820"; transcript_id "KOF00660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00660-1"; +contig42 ena CDS 50563 52350 . - 0 gene_id "W7K_02820"; transcript_id "KOF00660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00660"; +contig42 ena start_codon 52348 52350 . - 0 gene_id "W7K_02820"; transcript_id "KOF00660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 50560 50562 . - 0 gene_id "W7K_02820"; transcript_id "KOF00660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 52416 52892 . - . gene_id "W7K_02825"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 52416 52892 . - . gene_id "W7K_02825"; transcript_id "KOF00661"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 52416 52892 . - . gene_id "W7K_02825"; transcript_id "KOF00661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00661-1"; +contig42 ena CDS 52419 52892 . - 0 gene_id "W7K_02825"; transcript_id "KOF00661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00661"; +contig42 ena start_codon 52890 52892 . - 0 gene_id "W7K_02825"; transcript_id "KOF00661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 52416 52418 . - 0 gene_id "W7K_02825"; transcript_id "KOF00661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 53055 53606 . - . gene_id "W7K_02830"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 53055 53606 . - . gene_id "W7K_02830"; transcript_id "KOF00662"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 53055 53606 . - . gene_id "W7K_02830"; transcript_id "KOF00662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00662-1"; +contig42 ena CDS 53058 53606 . - 0 gene_id "W7K_02830"; transcript_id "KOF00662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00662"; +contig42 ena start_codon 53604 53606 . - 0 gene_id "W7K_02830"; transcript_id "KOF00662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 53055 53057 . - 0 gene_id "W7K_02830"; transcript_id "KOF00662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 53704 54282 . - . gene_id "W7K_02835"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 53704 54282 . - . gene_id "W7K_02835"; transcript_id "KOF00663"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 53704 54282 . - . gene_id "W7K_02835"; transcript_id "KOF00663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00663-1"; +contig42 ena CDS 53707 54282 . - 0 gene_id "W7K_02835"; transcript_id "KOF00663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00663"; +contig42 ena start_codon 54280 54282 . - 0 gene_id "W7K_02835"; transcript_id "KOF00663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 53704 53706 . - 0 gene_id "W7K_02835"; transcript_id "KOF00663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 54383 54458 . - . gene_id "W7K_02840"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 54383 54458 . - . gene_id "W7K_02840"; transcript_id "EBT00051077665"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02840"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 54383 54458 . - . gene_id "W7K_02840"; transcript_id "EBT00051077665"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02840"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_02840-1"; +contig42 ena gene 54532 54607 . - . gene_id "W7K_02845"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 54532 54607 . - . gene_id "W7K_02845"; transcript_id "EBT00051077664"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02845"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 54532 54607 . - . gene_id "W7K_02845"; transcript_id "EBT00051077664"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02845"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_02845-1"; +contig42 ena gene 54942 55967 . + . gene_id "W7K_02850"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 54942 55967 . + . gene_id "W7K_02850"; transcript_id "KOF00664"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 54942 55967 . + . gene_id "W7K_02850"; transcript_id "KOF00664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00664-1"; +contig42 ena CDS 54942 55964 . + 0 gene_id "W7K_02850"; transcript_id "KOF00664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00664"; +contig42 ena start_codon 54942 54944 . + 0 gene_id "W7K_02850"; transcript_id "KOF00664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 55965 55967 . + 0 gene_id "W7K_02850"; transcript_id "KOF00664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 56041 56883 . - . gene_id "W7K_02855"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 56041 56883 . - . gene_id "W7K_02855"; transcript_id "KOF00665"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 56041 56883 . - . gene_id "W7K_02855"; transcript_id "KOF00665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00665-1"; +contig42 ena CDS 56044 56883 . - 0 gene_id "W7K_02855"; transcript_id "KOF00665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00665"; +contig42 ena start_codon 56881 56883 . - 0 gene_id "W7K_02855"; transcript_id "KOF00665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 56041 56043 . - 0 gene_id "W7K_02855"; transcript_id "KOF00665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 57016 57777 . + . gene_id "W7K_02860"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 57016 57777 . + . gene_id "W7K_02860"; transcript_id "KOF00666"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 57016 57777 . + . gene_id "W7K_02860"; transcript_id "KOF00666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00666-1"; +contig42 ena CDS 57016 57774 . + 0 gene_id "W7K_02860"; transcript_id "KOF00666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00666"; +contig42 ena start_codon 57016 57018 . + 0 gene_id "W7K_02860"; transcript_id "KOF00666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 57775 57777 . + 0 gene_id "W7K_02860"; transcript_id "KOF00666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 57784 58269 . - . gene_id "W7K_02865"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 57784 58269 . - . gene_id "W7K_02865"; transcript_id "KOF00667"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 57784 58269 . - . gene_id "W7K_02865"; transcript_id "KOF00667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00667-1"; +contig42 ena CDS 57787 58269 . - 0 gene_id "W7K_02865"; transcript_id "KOF00667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00667"; +contig42 ena start_codon 58267 58269 . - 0 gene_id "W7K_02865"; transcript_id "KOF00667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 57784 57786 . - 0 gene_id "W7K_02865"; transcript_id "KOF00667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 58427 58636 . - . gene_id "W7K_02870"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 58427 58636 . - . gene_id "W7K_02870"; transcript_id "KOF00668"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 58427 58636 . - . gene_id "W7K_02870"; transcript_id "KOF00668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00668-1"; +contig42 ena CDS 58430 58636 . - 0 gene_id "W7K_02870"; transcript_id "KOF00668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00668"; +contig42 ena start_codon 58634 58636 . - 0 gene_id "W7K_02870"; transcript_id "KOF00668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 58427 58429 . - 0 gene_id "W7K_02870"; transcript_id "KOF00668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 58761 59042 . - . gene_id "W7K_02875"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 58761 59042 . - . gene_id "W7K_02875"; transcript_id "KOF00669"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 58761 59042 . - . gene_id "W7K_02875"; transcript_id "KOF00669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00669-1"; +contig42 ena CDS 58764 59042 . - 0 gene_id "W7K_02875"; transcript_id "KOF00669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00669"; +contig42 ena start_codon 59040 59042 . - 0 gene_id "W7K_02875"; transcript_id "KOF00669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 58761 58763 . - 0 gene_id "W7K_02875"; transcript_id "KOF00669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 59039 59290 . - . gene_id "W7K_02880"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 59039 59290 . - . gene_id "W7K_02880"; transcript_id "KOF00670"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 59039 59290 . - . gene_id "W7K_02880"; transcript_id "KOF00670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00670-1"; +contig42 ena CDS 59042 59290 . - 0 gene_id "W7K_02880"; transcript_id "KOF00670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00670"; +contig42 ena start_codon 59288 59290 . - 0 gene_id "W7K_02880"; transcript_id "KOF00670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 59039 59041 . - 0 gene_id "W7K_02880"; transcript_id "KOF00670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 59283 59780 . - . gene_id "W7K_02885"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 59283 59780 . - . gene_id "W7K_02885"; transcript_id "KOF00671"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 59283 59780 . - . gene_id "W7K_02885"; transcript_id "KOF00671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00671-1"; +contig42 ena CDS 59286 59780 . - 0 gene_id "W7K_02885"; transcript_id "KOF00671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00671"; +contig42 ena start_codon 59778 59780 . - 0 gene_id "W7K_02885"; transcript_id "KOF00671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 59283 59285 . - 0 gene_id "W7K_02885"; transcript_id "KOF00671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 60196 60489 . + . gene_id "W7K_02890"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 60196 60489 . + . gene_id "W7K_02890"; transcript_id "KOF00672"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 60196 60489 . + . gene_id "W7K_02890"; transcript_id "KOF00672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00672-1"; +contig42 ena CDS 60196 60486 . + 0 gene_id "W7K_02890"; transcript_id "KOF00672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00672"; +contig42 ena start_codon 60196 60198 . + 0 gene_id "W7K_02890"; transcript_id "KOF00672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 60487 60489 . + 0 gene_id "W7K_02890"; transcript_id "KOF00672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 60503 61465 . - . gene_id "W7K_02895"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 60503 61465 . - . gene_id "W7K_02895"; transcript_id "KOF00673"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 60503 61465 . - . gene_id "W7K_02895"; transcript_id "KOF00673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00673-1"; +contig42 ena CDS 60506 61465 . - 0 gene_id "W7K_02895"; transcript_id "KOF00673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00673"; +contig42 ena start_codon 61463 61465 . - 0 gene_id "W7K_02895"; transcript_id "KOF00673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 60503 60505 . - 0 gene_id "W7K_02895"; transcript_id "KOF00673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 61486 62112 . + . gene_id "W7K_02900"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 61486 62112 . + . gene_id "W7K_02900"; transcript_id "KOF00674"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 61486 62112 . + . gene_id "W7K_02900"; transcript_id "KOF00674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00674-1"; +contig42 ena CDS 61486 62109 . + 0 gene_id "W7K_02900"; transcript_id "KOF00674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00674"; +contig42 ena start_codon 61486 61488 . + 0 gene_id "W7K_02900"; transcript_id "KOF00674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 62110 62112 . + 0 gene_id "W7K_02900"; transcript_id "KOF00674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 62121 62765 . - . gene_id "W7K_02905"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 62121 62765 . - . gene_id "W7K_02905"; transcript_id "KOF00675"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 62121 62765 . - . gene_id "W7K_02905"; transcript_id "KOF00675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00675-1"; +contig42 ena CDS 62124 62765 . - 0 gene_id "W7K_02905"; transcript_id "KOF00675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00675"; +contig42 ena start_codon 62763 62765 . - 0 gene_id "W7K_02905"; transcript_id "KOF00675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 62121 62123 . - 0 gene_id "W7K_02905"; transcript_id "KOF00675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 62830 63120 . + . gene_id "W7K_02910"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 62830 63120 . + . gene_id "W7K_02910"; transcript_id "KOF00676"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 62830 63120 . + . gene_id "W7K_02910"; transcript_id "KOF00676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00676-1"; +contig42 ena CDS 62830 63117 . + 0 gene_id "W7K_02910"; transcript_id "KOF00676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00676"; +contig42 ena start_codon 62830 62832 . + 0 gene_id "W7K_02910"; transcript_id "KOF00676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 63118 63120 . + 0 gene_id "W7K_02910"; transcript_id "KOF00676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 63117 63581 . + . gene_id "W7K_02915"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 63117 63581 . + . gene_id "W7K_02915"; transcript_id "KOF00677"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 63117 63581 . + . gene_id "W7K_02915"; transcript_id "KOF00677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00677-1"; +contig42 ena CDS 63117 63578 . + 0 gene_id "W7K_02915"; transcript_id "KOF00677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00677"; +contig42 ena start_codon 63117 63119 . + 0 gene_id "W7K_02915"; transcript_id "KOF00677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 63579 63581 . + 0 gene_id "W7K_02915"; transcript_id "KOF00677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 63578 63793 . + . gene_id "W7K_02920"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 63578 63793 . + . gene_id "W7K_02920"; transcript_id "KOF00678"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 63578 63793 . + . gene_id "W7K_02920"; transcript_id "KOF00678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00678-1"; +contig42 ena CDS 63578 63790 . + 0 gene_id "W7K_02920"; transcript_id "KOF00678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00678"; +contig42 ena start_codon 63578 63580 . + 0 gene_id "W7K_02920"; transcript_id "KOF00678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 63791 63793 . + 0 gene_id "W7K_02920"; transcript_id "KOF00678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 63780 64313 . + . gene_id "W7K_02925"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 63780 64313 . + . gene_id "W7K_02925"; transcript_id "KOF00679"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 63780 64313 . + . gene_id "W7K_02925"; transcript_id "KOF00679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00679-1"; +contig42 ena CDS 63780 64310 . + 0 gene_id "W7K_02925"; transcript_id "KOF00679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00679"; +contig42 ena start_codon 63780 63782 . + 0 gene_id "W7K_02925"; transcript_id "KOF00679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 64311 64313 . + 0 gene_id "W7K_02925"; transcript_id "KOF00679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 64329 64565 . + . gene_id "W7K_02930"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 64329 64565 . + . gene_id "W7K_02930"; transcript_id "KOF00822"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 64329 64565 . + . gene_id "W7K_02930"; transcript_id "KOF00822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00822-1"; +contig42 ena CDS 64329 64562 . + 0 gene_id "W7K_02930"; transcript_id "KOF00822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00822"; +contig42 ena start_codon 64329 64331 . + 0 gene_id "W7K_02930"; transcript_id "KOF00822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 64563 64565 . + 0 gene_id "W7K_02930"; transcript_id "KOF00822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 66929 67432 . + . gene_id "W7K_02935"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 66929 67432 . + . gene_id "W7K_02935"; transcript_id "KOF00680"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 66929 67432 . + . gene_id "W7K_02935"; transcript_id "KOF00680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00680-1"; +contig42 ena CDS 66929 67429 . + 0 gene_id "W7K_02935"; transcript_id "KOF00680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00680"; +contig42 ena start_codon 66929 66931 . + 0 gene_id "W7K_02935"; transcript_id "KOF00680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 67430 67432 . + 0 gene_id "W7K_02935"; transcript_id "KOF00680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 67436 68320 . - . gene_id "W7K_02940"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 67436 68320 . - . gene_id "W7K_02940"; transcript_id "KOF00681"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 67436 68320 . - . gene_id "W7K_02940"; transcript_id "KOF00681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00681-1"; +contig42 ena CDS 67439 68320 . - 0 gene_id "W7K_02940"; transcript_id "KOF00681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00681"; +contig42 ena start_codon 68318 68320 . - 0 gene_id "W7K_02940"; transcript_id "KOF00681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 67436 67438 . - 0 gene_id "W7K_02940"; transcript_id "KOF00681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 68799 68874 . - . gene_id "W7K_02945"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 68799 68874 . - . gene_id "W7K_02945"; transcript_id "EBT00051077660"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02945"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 68799 68874 . - . gene_id "W7K_02945"; transcript_id "EBT00051077660"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_02945"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_02945-1"; +contig42 ena gene 68969 69895 . - . gene_id "W7K_02950"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 68969 69895 . - . gene_id "W7K_02950"; transcript_id "KOF00682"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 68969 69895 . - . gene_id "W7K_02950"; transcript_id "KOF00682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00682-1"; +contig42 ena CDS 68972 69895 . - 0 gene_id "W7K_02950"; transcript_id "KOF00682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00682"; +contig42 ena start_codon 69893 69895 . - 0 gene_id "W7K_02950"; transcript_id "KOF00682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 68969 68971 . - 0 gene_id "W7K_02950"; transcript_id "KOF00682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 69885 70778 . - . gene_id "W7K_02955"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 69885 70778 . - . gene_id "W7K_02955"; transcript_id "KOF00683"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 69885 70778 . - . gene_id "W7K_02955"; transcript_id "KOF00683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00683-1"; +contig42 ena CDS 69888 70778 . - 0 gene_id "W7K_02955"; transcript_id "KOF00683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00683"; +contig42 ena start_codon 70776 70778 . - 0 gene_id "W7K_02955"; transcript_id "KOF00683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 69885 69887 . - 0 gene_id "W7K_02955"; transcript_id "KOF00683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 70800 71855 . - . gene_id "W7K_02960"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 70800 71855 . - . gene_id "W7K_02960"; transcript_id "KOF00684"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 70800 71855 . - . gene_id "W7K_02960"; transcript_id "KOF00684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00684-1"; +contig42 ena CDS 70803 71855 . - 0 gene_id "W7K_02960"; transcript_id "KOF00684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00684"; +contig42 ena start_codon 71853 71855 . - 0 gene_id "W7K_02960"; transcript_id "KOF00684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 70800 70802 . - 0 gene_id "W7K_02960"; transcript_id "KOF00684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 71957 72538 . + . gene_id "W7K_02965"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 71957 72538 . + . gene_id "W7K_02965"; transcript_id "KOF00685"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 71957 72538 . + . gene_id "W7K_02965"; transcript_id "KOF00685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00685-1"; +contig42 ena CDS 71957 72535 . + 0 gene_id "W7K_02965"; transcript_id "KOF00685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00685"; +contig42 ena start_codon 71957 71959 . + 0 gene_id "W7K_02965"; transcript_id "KOF00685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 72536 72538 . + 0 gene_id "W7K_02965"; transcript_id "KOF00685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 72719 75049 . + . gene_id "W7K_02970"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 72719 75049 . + . gene_id "W7K_02970"; transcript_id "KOF00686"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 72719 75049 . + . gene_id "W7K_02970"; transcript_id "KOF00686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00686-1"; +contig42 ena CDS 72719 75046 . + 0 gene_id "W7K_02970"; transcript_id "KOF00686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00686"; +contig42 ena start_codon 72719 72721 . + 0 gene_id "W7K_02970"; transcript_id "KOF00686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 75047 75049 . + 0 gene_id "W7K_02970"; transcript_id "KOF00686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 75138 77210 . - . gene_id "W7K_02975"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 75138 77210 . - . gene_id "W7K_02975"; transcript_id "KOF00687"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 75138 77210 . - . gene_id "W7K_02975"; transcript_id "KOF00687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00687-1"; +contig42 ena CDS 75141 77210 . - 0 gene_id "W7K_02975"; transcript_id "KOF00687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00687"; +contig42 ena start_codon 77208 77210 . - 0 gene_id "W7K_02975"; transcript_id "KOF00687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 75138 75140 . - 0 gene_id "W7K_02975"; transcript_id "KOF00687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 77330 78061 . - . gene_id "W7K_02980"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 77330 78061 . - . gene_id "W7K_02980"; transcript_id "KOF00688"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 77330 78061 . - . gene_id "W7K_02980"; transcript_id "KOF00688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00688-1"; +contig42 ena CDS 77333 78061 . - 0 gene_id "W7K_02980"; transcript_id "KOF00688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00688"; +contig42 ena start_codon 78059 78061 . - 0 gene_id "W7K_02980"; transcript_id "KOF00688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 77330 77332 . - 0 gene_id "W7K_02980"; transcript_id "KOF00688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 78266 79345 . - . gene_id "W7K_02985"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 78266 79345 . - . gene_id "W7K_02985"; transcript_id "KOF00689"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 78266 79345 . - . gene_id "W7K_02985"; transcript_id "KOF00689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00689-1"; +contig42 ena CDS 78269 79345 . - 0 gene_id "W7K_02985"; transcript_id "KOF00689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00689"; +contig42 ena start_codon 79343 79345 . - 0 gene_id "W7K_02985"; transcript_id "KOF00689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 78266 78268 . - 0 gene_id "W7K_02985"; transcript_id "KOF00689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 79430 81316 . + . gene_id "W7K_02990"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 79430 81316 . + . gene_id "W7K_02990"; transcript_id "KOF00690"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 79430 81316 . + . gene_id "W7K_02990"; transcript_id "KOF00690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00690-1"; +contig42 ena CDS 79430 81313 . + 0 gene_id "W7K_02990"; transcript_id "KOF00690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00690"; +contig42 ena start_codon 79430 79432 . + 0 gene_id "W7K_02990"; transcript_id "KOF00690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 81314 81316 . + 0 gene_id "W7K_02990"; transcript_id "KOF00690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 81406 82302 . + . gene_id "W7K_02995"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 81406 82302 . + . gene_id "W7K_02995"; transcript_id "KOF00691"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 81406 82302 . + . gene_id "W7K_02995"; transcript_id "KOF00691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00691-1"; +contig42 ena CDS 81406 82299 . + 0 gene_id "W7K_02995"; transcript_id "KOF00691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00691"; +contig42 ena start_codon 81406 81408 . + 0 gene_id "W7K_02995"; transcript_id "KOF00691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 82300 82302 . + 0 gene_id "W7K_02995"; transcript_id "KOF00691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 82848 84179 . - . gene_id "W7K_03000"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 82848 84179 . - . gene_id "W7K_03000"; transcript_id "KOF00692"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 82848 84179 . - . gene_id "W7K_03000"; transcript_id "KOF00692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00692-1"; +contig42 ena CDS 82851 84179 . - 0 gene_id "W7K_03000"; transcript_id "KOF00692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00692"; +contig42 ena start_codon 84177 84179 . - 0 gene_id "W7K_03000"; transcript_id "KOF00692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 82848 82850 . - 0 gene_id "W7K_03000"; transcript_id "KOF00692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 84224 85294 . - . gene_id "W7K_03005"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 84224 85294 . - . gene_id "W7K_03005"; transcript_id "KOF00693"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 84224 85294 . - . gene_id "W7K_03005"; transcript_id "KOF00693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00693-1"; +contig42 ena CDS 84227 85294 . - 0 gene_id "W7K_03005"; transcript_id "KOF00693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00693"; +contig42 ena start_codon 85292 85294 . - 0 gene_id "W7K_03005"; transcript_id "KOF00693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 84224 84226 . - 0 gene_id "W7K_03005"; transcript_id "KOF00693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 85318 86802 . + . gene_id "W7K_03010"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 85318 86802 . + . gene_id "W7K_03010"; transcript_id "KOF00694"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 85318 86802 . + . gene_id "W7K_03010"; transcript_id "KOF00694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00694-1"; +contig42 ena CDS 85318 86799 . + 0 gene_id "W7K_03010"; transcript_id "KOF00694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00694"; +contig42 ena start_codon 85318 85320 . + 0 gene_id "W7K_03010"; transcript_id "KOF00694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 86800 86802 . + 0 gene_id "W7K_03010"; transcript_id "KOF00694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 86799 87281 . + . gene_id "W7K_03015"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 86799 87281 . + . gene_id "W7K_03015"; transcript_id "KOF00695"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 86799 87281 . + . gene_id "W7K_03015"; transcript_id "KOF00695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00695-1"; +contig42 ena CDS 86799 87278 . + 0 gene_id "W7K_03015"; transcript_id "KOF00695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00695"; +contig42 ena start_codon 86799 86801 . + 0 gene_id "W7K_03015"; transcript_id "KOF00695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 87279 87281 . + 0 gene_id "W7K_03015"; transcript_id "KOF00695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 87364 88932 . + . gene_id "W7K_03020"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 87364 88932 . + . gene_id "W7K_03020"; transcript_id "KOF00696"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 87364 88932 . + . gene_id "W7K_03020"; transcript_id "KOF00696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00696-1"; +contig42 ena CDS 87364 88929 . + 0 gene_id "W7K_03020"; transcript_id "KOF00696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00696"; +contig42 ena start_codon 87364 87366 . + 0 gene_id "W7K_03020"; transcript_id "KOF00696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 88930 88932 . + 0 gene_id "W7K_03020"; transcript_id "KOF00696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 89136 91043 . + . gene_id "W7K_03025"; gene_name "mutL"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 89136 91043 . + . gene_id "W7K_03025"; transcript_id "KOF00697"; gene_name "mutL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "mutL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 89136 91043 . + . gene_id "W7K_03025"; transcript_id "KOF00697"; exon_number "1"; gene_name "mutL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "mutL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00697-1"; +contig42 ena CDS 89136 91040 . + 0 gene_id "W7K_03025"; transcript_id "KOF00697"; exon_number "1"; gene_name "mutL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "mutL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00697"; +contig42 ena start_codon 89136 89138 . + 0 gene_id "W7K_03025"; transcript_id "KOF00697"; exon_number "1"; gene_name "mutL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "mutL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 91041 91043 . + 0 gene_id "W7K_03025"; transcript_id "KOF00697"; exon_number "1"; gene_name "mutL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "mutL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 91055 91984 . + . gene_id "W7K_03030"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 91055 91984 . + . gene_id "W7K_03030"; transcript_id "KOF00698"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 91055 91984 . + . gene_id "W7K_03030"; transcript_id "KOF00698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00698-1"; +contig42 ena CDS 91055 91981 . + 0 gene_id "W7K_03030"; transcript_id "KOF00698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00698"; +contig42 ena start_codon 91055 91057 . + 0 gene_id "W7K_03030"; transcript_id "KOF00698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 91982 91984 . + 0 gene_id "W7K_03030"; transcript_id "KOF00698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 91986 92939 . + . gene_id "W7K_03035"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 91986 92939 . + . gene_id "W7K_03035"; transcript_id "KOF00699"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 91986 92939 . + . gene_id "W7K_03035"; transcript_id "KOF00699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00699-1"; +contig42 ena CDS 91986 92936 . + 0 gene_id "W7K_03035"; transcript_id "KOF00699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00699"; +contig42 ena start_codon 91986 91988 . + 0 gene_id "W7K_03035"; transcript_id "KOF00699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 92937 92939 . + 0 gene_id "W7K_03035"; transcript_id "KOF00699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 93014 93553 . - . gene_id "W7K_03040"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 93014 93553 . - . gene_id "W7K_03040"; transcript_id "KOF00823"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 93014 93553 . - . gene_id "W7K_03040"; transcript_id "KOF00823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00823-1"; +contig42 ena CDS 93017 93553 . - 0 gene_id "W7K_03040"; transcript_id "KOF00823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00823"; +contig42 ena start_codon 93551 93553 . - 0 gene_id "W7K_03040"; transcript_id "KOF00823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 93014 93016 . - 0 gene_id "W7K_03040"; transcript_id "KOF00823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 93738 94478 . - . gene_id "W7K_03045"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 93738 94478 . - . gene_id "W7K_03045"; transcript_id "KOF00700"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 93738 94478 . - . gene_id "W7K_03045"; transcript_id "KOF00700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00700-1"; +contig42 ena CDS 93741 94478 . - 0 gene_id "W7K_03045"; transcript_id "KOF00700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00700"; +contig42 ena start_codon 94476 94478 . - 0 gene_id "W7K_03045"; transcript_id "KOF00700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 93738 93740 . - 0 gene_id "W7K_03045"; transcript_id "KOF00700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 94496 95416 . - . gene_id "W7K_03050"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 94496 95416 . - . gene_id "W7K_03050"; transcript_id "KOF00701"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 94496 95416 . - . gene_id "W7K_03050"; transcript_id "KOF00701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00701-1"; +contig42 ena CDS 94499 95416 . - 0 gene_id "W7K_03050"; transcript_id "KOF00701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00701"; +contig42 ena start_codon 95414 95416 . - 0 gene_id "W7K_03050"; transcript_id "KOF00701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 94496 94498 . - 0 gene_id "W7K_03050"; transcript_id "KOF00701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 95510 96376 . + . gene_id "W7K_03055"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 95510 96376 . + . gene_id "W7K_03055"; transcript_id "KOF00702"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 95510 96376 . + . gene_id "W7K_03055"; transcript_id "KOF00702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00702-1"; +contig42 ena CDS 95510 96373 . + 0 gene_id "W7K_03055"; transcript_id "KOF00702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00702"; +contig42 ena start_codon 95510 95512 . + 0 gene_id "W7K_03055"; transcript_id "KOF00702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 96374 96376 . + 0 gene_id "W7K_03055"; transcript_id "KOF00702"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 96696 97058 . + . gene_id "W7K_03060"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 96696 97058 . + . gene_id "W7K_03060"; transcript_id "KOF00703"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 96696 97058 . + . gene_id "W7K_03060"; transcript_id "KOF00703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00703-1"; +contig42 ena CDS 96696 97055 . + 0 gene_id "W7K_03060"; transcript_id "KOF00703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00703"; +contig42 ena start_codon 96696 96698 . + 0 gene_id "W7K_03060"; transcript_id "KOF00703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 97056 97058 . + 0 gene_id "W7K_03060"; transcript_id "KOF00703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 97028 97855 . - . gene_id "W7K_03065"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 97028 97855 . - . gene_id "W7K_03065"; transcript_id "KOF00704"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 97028 97855 . - . gene_id "W7K_03065"; transcript_id "KOF00704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00704-1"; +contig42 ena CDS 97031 97855 . - 0 gene_id "W7K_03065"; transcript_id "KOF00704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00704"; +contig42 ena start_codon 97853 97855 . - 0 gene_id "W7K_03065"; transcript_id "KOF00704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 97028 97030 . - 0 gene_id "W7K_03065"; transcript_id "KOF00704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 97976 98746 . + . gene_id "W7K_03070"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 97976 98746 . + . gene_id "W7K_03070"; transcript_id "KOF00705"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 97976 98746 . + . gene_id "W7K_03070"; transcript_id "KOF00705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00705-1"; +contig42 ena CDS 97976 98743 . + 0 gene_id "W7K_03070"; transcript_id "KOF00705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00705"; +contig42 ena start_codon 97976 97978 . + 0 gene_id "W7K_03070"; transcript_id "KOF00705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 98744 98746 . + 0 gene_id "W7K_03070"; transcript_id "KOF00705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 98793 99725 . + . gene_id "W7K_03075"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 98793 99725 . + . gene_id "W7K_03075"; transcript_id "KOF00706"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 98793 99725 . + . gene_id "W7K_03075"; transcript_id "KOF00706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00706-1"; +contig42 ena CDS 98793 99722 . + 0 gene_id "W7K_03075"; transcript_id "KOF00706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00706"; +contig42 ena start_codon 98793 98795 . + 0 gene_id "W7K_03075"; transcript_id "KOF00706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 99723 99725 . + 0 gene_id "W7K_03075"; transcript_id "KOF00706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 99722 101848 . + . gene_id "W7K_03080"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 99722 101848 . + . gene_id "W7K_03080"; transcript_id "KOF00707"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 99722 101848 . + . gene_id "W7K_03080"; transcript_id "KOF00707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00707-1"; +contig42 ena CDS 99722 101845 . + 0 gene_id "W7K_03080"; transcript_id "KOF00707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00707"; +contig42 ena start_codon 99722 99724 . + 0 gene_id "W7K_03080"; transcript_id "KOF00707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 101846 101848 . + 0 gene_id "W7K_03080"; transcript_id "KOF00707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 101927 102943 . - . gene_id "W7K_03085"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 101927 102943 . - . gene_id "W7K_03085"; transcript_id "KOF00708"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 101927 102943 . - . gene_id "W7K_03085"; transcript_id "KOF00708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00708-1"; +contig42 ena CDS 101930 102943 . - 0 gene_id "W7K_03085"; transcript_id "KOF00708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00708"; +contig42 ena start_codon 102941 102943 . - 0 gene_id "W7K_03085"; transcript_id "KOF00708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 101927 101929 . - 0 gene_id "W7K_03085"; transcript_id "KOF00708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 103064 103630 . + . gene_id "W7K_03090"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 103064 103630 . + . gene_id "W7K_03090"; transcript_id "KOF00709"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 103064 103630 . + . gene_id "W7K_03090"; transcript_id "KOF00709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00709-1"; +contig42 ena CDS 103064 103627 . + 0 gene_id "W7K_03090"; transcript_id "KOF00709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00709"; +contig42 ena start_codon 103064 103066 . + 0 gene_id "W7K_03090"; transcript_id "KOF00709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 103628 103630 . + 0 gene_id "W7K_03090"; transcript_id "KOF00709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 103799 105142 . + . gene_id "W7K_03095"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 103799 105142 . + . gene_id "W7K_03095"; transcript_id "KOF00710"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 103799 105142 . + . gene_id "W7K_03095"; transcript_id "KOF00710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00710-1"; +contig42 ena CDS 103799 105139 . + 0 gene_id "W7K_03095"; transcript_id "KOF00710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00710"; +contig42 ena start_codon 103799 103801 . + 0 gene_id "W7K_03095"; transcript_id "KOF00710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 105140 105142 . + 0 gene_id "W7K_03095"; transcript_id "KOF00710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 105168 105884 . + . gene_id "W7K_03100"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 105168 105884 . + . gene_id "W7K_03100"; transcript_id "KOF00711"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 105168 105884 . + . gene_id "W7K_03100"; transcript_id "KOF00711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00711-1"; +contig42 ena CDS 105168 105881 . + 0 gene_id "W7K_03100"; transcript_id "KOF00711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00711"; +contig42 ena start_codon 105168 105170 . + 0 gene_id "W7K_03100"; transcript_id "KOF00711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 105882 105884 . + 0 gene_id "W7K_03100"; transcript_id "KOF00711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 105881 106576 . + . gene_id "W7K_03105"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 105881 106576 . + . gene_id "W7K_03105"; transcript_id "KOF00712"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 105881 106576 . + . gene_id "W7K_03105"; transcript_id "KOF00712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00712-1"; +contig42 ena CDS 105881 106573 . + 0 gene_id "W7K_03105"; transcript_id "KOF00712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00712"; +contig42 ena start_codon 105881 105883 . + 0 gene_id "W7K_03105"; transcript_id "KOF00712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 106574 106576 . + 0 gene_id "W7K_03105"; transcript_id "KOF00712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 106588 107292 . + . gene_id "W7K_03110"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 106588 107292 . + . gene_id "W7K_03110"; transcript_id "KOF00713"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 106588 107292 . + . gene_id "W7K_03110"; transcript_id "KOF00713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00713-1"; +contig42 ena CDS 106588 107289 . + 0 gene_id "W7K_03110"; transcript_id "KOF00713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00713"; +contig42 ena start_codon 106588 106590 . + 0 gene_id "W7K_03110"; transcript_id "KOF00713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 107290 107292 . + 0 gene_id "W7K_03110"; transcript_id "KOF00713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 107381 108229 . - . gene_id "W7K_03115"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 107381 108229 . - . gene_id "W7K_03115"; transcript_id "KOF00714"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 107381 108229 . - . gene_id "W7K_03115"; transcript_id "KOF00714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00714-1"; +contig42 ena CDS 107384 108229 . - 0 gene_id "W7K_03115"; transcript_id "KOF00714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00714"; +contig42 ena start_codon 108227 108229 . - 0 gene_id "W7K_03115"; transcript_id "KOF00714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 107381 107383 . - 0 gene_id "W7K_03115"; transcript_id "KOF00714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 108229 109575 . - . gene_id "W7K_03120"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 108229 109575 . - . gene_id "W7K_03120"; transcript_id "KOF00715"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 108229 109575 . - . gene_id "W7K_03120"; transcript_id "KOF00715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00715-1"; +contig42 ena CDS 108232 109575 . - 0 gene_id "W7K_03120"; transcript_id "KOF00715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00715"; +contig42 ena start_codon 109573 109575 . - 0 gene_id "W7K_03120"; transcript_id "KOF00715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 108229 108231 . - 0 gene_id "W7K_03120"; transcript_id "KOF00715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 109577 109831 . - . gene_id "W7K_03125"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 109577 109831 . - . gene_id "W7K_03125"; transcript_id "KOF00716"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 109577 109831 . - . gene_id "W7K_03125"; transcript_id "KOF00716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00716-1"; +contig42 ena CDS 109580 109831 . - 0 gene_id "W7K_03125"; transcript_id "KOF00716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00716"; +contig42 ena start_codon 109829 109831 . - 0 gene_id "W7K_03125"; transcript_id "KOF00716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 109577 109579 . - 0 gene_id "W7K_03125"; transcript_id "KOF00716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 110104 111333 . + . gene_id "W7K_03130"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 110104 111333 . + . gene_id "W7K_03130"; transcript_id "KOF00717"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 110104 111333 . + . gene_id "W7K_03130"; transcript_id "KOF00717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00717-1"; +contig42 ena CDS 110104 111330 . + 0 gene_id "W7K_03130"; transcript_id "KOF00717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00717"; +contig42 ena start_codon 110104 110106 . + 0 gene_id "W7K_03130"; transcript_id "KOF00717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 111331 111333 . + 0 gene_id "W7K_03130"; transcript_id "KOF00717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 111779 113026 . - . gene_id "W7K_03135"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 111779 113026 . - . gene_id "W7K_03135"; transcript_id "KOF00718"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 111779 113026 . - . gene_id "W7K_03135"; transcript_id "KOF00718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00718-1"; +contig42 ena CDS 111782 113026 . - 0 gene_id "W7K_03135"; transcript_id "KOF00718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00718"; +contig42 ena start_codon 113024 113026 . - 0 gene_id "W7K_03135"; transcript_id "KOF00718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 111779 111781 . - 0 gene_id "W7K_03135"; transcript_id "KOF00718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 113023 113475 . - . gene_id "W7K_03140"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 113023 113475 . - . gene_id "W7K_03140"; transcript_id "KOF00719"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 113023 113475 . - . gene_id "W7K_03140"; transcript_id "KOF00719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00719-1"; +contig42 ena CDS 113026 113475 . - 0 gene_id "W7K_03140"; transcript_id "KOF00719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00719"; +contig42 ena start_codon 113473 113475 . - 0 gene_id "W7K_03140"; transcript_id "KOF00719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 113023 113025 . - 0 gene_id "W7K_03140"; transcript_id "KOF00719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 113529 114905 . - . gene_id "W7K_03145"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 113529 114905 . - . gene_id "W7K_03145"; transcript_id "KOF00720"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 113529 114905 . - . gene_id "W7K_03145"; transcript_id "KOF00720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00720-1"; +contig42 ena CDS 113532 114905 . - 0 gene_id "W7K_03145"; transcript_id "KOF00720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00720"; +contig42 ena start_codon 114903 114905 . - 0 gene_id "W7K_03145"; transcript_id "KOF00720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 113529 113531 . - 0 gene_id "W7K_03145"; transcript_id "KOF00720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 115094 115663 . + . gene_id "W7K_03150"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 115094 115663 . + . gene_id "W7K_03150"; transcript_id "KOF00721"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 115094 115663 . + . gene_id "W7K_03150"; transcript_id "KOF00721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00721-1"; +contig42 ena CDS 115094 115660 . + 0 gene_id "W7K_03150"; transcript_id "KOF00721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00721"; +contig42 ena start_codon 115094 115096 . + 0 gene_id "W7K_03150"; transcript_id "KOF00721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 115661 115663 . + 0 gene_id "W7K_03150"; transcript_id "KOF00721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 115982 116992 . + . gene_id "W7K_03155"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 115982 116992 . + . gene_id "W7K_03155"; transcript_id "KOF00722"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 115982 116992 . + . gene_id "W7K_03155"; transcript_id "KOF00722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00722-1"; +contig42 ena CDS 115982 116989 . + 0 gene_id "W7K_03155"; transcript_id "KOF00722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00722"; +contig42 ena start_codon 115982 115984 . + 0 gene_id "W7K_03155"; transcript_id "KOF00722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 116990 116992 . + 0 gene_id "W7K_03155"; transcript_id "KOF00722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 117055 118248 . + . gene_id "W7K_03160"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 117055 118248 . + . gene_id "W7K_03160"; transcript_id "KOF00723"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 117055 118248 . + . gene_id "W7K_03160"; transcript_id "KOF00723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00723-1"; +contig42 ena CDS 117055 118245 . + 0 gene_id "W7K_03160"; transcript_id "KOF00723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00723"; +contig42 ena start_codon 117055 117057 . + 0 gene_id "W7K_03160"; transcript_id "KOF00723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 118246 118248 . + 0 gene_id "W7K_03160"; transcript_id "KOF00723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 118381 119469 . + . gene_id "W7K_03165"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 118381 119469 . + . gene_id "W7K_03165"; transcript_id "KOF00724"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 118381 119469 . + . gene_id "W7K_03165"; transcript_id "KOF00724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00724-1"; +contig42 ena CDS 118381 119466 . + 0 gene_id "W7K_03165"; transcript_id "KOF00724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00724"; +contig42 ena start_codon 118381 118383 . + 0 gene_id "W7K_03165"; transcript_id "KOF00724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 119467 119469 . + 0 gene_id "W7K_03165"; transcript_id "KOF00724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 119495 120823 . + . gene_id "W7K_03170"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 119495 120823 . + . gene_id "W7K_03170"; transcript_id "KOF00725"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 119495 120823 . + . gene_id "W7K_03170"; transcript_id "KOF00725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00725-1"; +contig42 ena CDS 119495 120820 . + 0 gene_id "W7K_03170"; transcript_id "KOF00725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00725"; +contig42 ena start_codon 119495 119497 . + 0 gene_id "W7K_03170"; transcript_id "KOF00725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 120821 120823 . + 0 gene_id "W7K_03170"; transcript_id "KOF00725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 120827 121429 . + . gene_id "W7K_03175"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 120827 121429 . + . gene_id "W7K_03175"; transcript_id "KOF00726"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 120827 121429 . + . gene_id "W7K_03175"; transcript_id "KOF00726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00726-1"; +contig42 ena CDS 120827 121426 . + 0 gene_id "W7K_03175"; transcript_id "KOF00726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00726"; +contig42 ena start_codon 120827 120829 . + 0 gene_id "W7K_03175"; transcript_id "KOF00726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 121427 121429 . + 0 gene_id "W7K_03175"; transcript_id "KOF00726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 121426 122379 . + . gene_id "W7K_03180"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 121426 122379 . + . gene_id "W7K_03180"; transcript_id "KOF00727"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 121426 122379 . + . gene_id "W7K_03180"; transcript_id "KOF00727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00727-1"; +contig42 ena CDS 121426 122376 . + 0 gene_id "W7K_03180"; transcript_id "KOF00727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00727"; +contig42 ena start_codon 121426 121428 . + 0 gene_id "W7K_03180"; transcript_id "KOF00727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 122377 122379 . + 0 gene_id "W7K_03180"; transcript_id "KOF00727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 122400 123695 . + . gene_id "W7K_03185"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 122400 123695 . + . gene_id "W7K_03185"; transcript_id "KOF00728"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 122400 123695 . + . gene_id "W7K_03185"; transcript_id "KOF00728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00728-1"; +contig42 ena CDS 122400 123692 . + 0 gene_id "W7K_03185"; transcript_id "KOF00728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00728"; +contig42 ena start_codon 122400 122402 . + 0 gene_id "W7K_03185"; transcript_id "KOF00728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 123693 123695 . + 0 gene_id "W7K_03185"; transcript_id "KOF00728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 123695 123958 . + . gene_id "W7K_03190"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 123695 123958 . + . gene_id "W7K_03190"; transcript_id "KOF00729"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 123695 123958 . + . gene_id "W7K_03190"; transcript_id "KOF00729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00729-1"; +contig42 ena CDS 123695 123955 . + 0 gene_id "W7K_03190"; transcript_id "KOF00729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00729"; +contig42 ena start_codon 123695 123697 . + 0 gene_id "W7K_03190"; transcript_id "KOF00729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 123956 123958 . + 0 gene_id "W7K_03190"; transcript_id "KOF00729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 123970 125127 . + . gene_id "W7K_03195"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 123970 125127 . + . gene_id "W7K_03195"; transcript_id "KOF00730"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 123970 125127 . + . gene_id "W7K_03195"; transcript_id "KOF00730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00730-1"; +contig42 ena CDS 123970 125124 . + 0 gene_id "W7K_03195"; transcript_id "KOF00730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00730"; +contig42 ena start_codon 123970 123972 . + 0 gene_id "W7K_03195"; transcript_id "KOF00730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 125125 125127 . + 0 gene_id "W7K_03195"; transcript_id "KOF00730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 125124 126395 . + . gene_id "W7K_03200"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 125124 126395 . + . gene_id "W7K_03200"; transcript_id "KOF00731"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 125124 126395 . + . gene_id "W7K_03200"; transcript_id "KOF00731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00731-1"; +contig42 ena CDS 125124 126392 . + 0 gene_id "W7K_03200"; transcript_id "KOF00731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00731"; +contig42 ena start_codon 125124 125126 . + 0 gene_id "W7K_03200"; transcript_id "KOF00731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 126393 126395 . + 0 gene_id "W7K_03200"; transcript_id "KOF00731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 126503 126973 . - . gene_id "W7K_03205"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 126503 126973 . - . gene_id "W7K_03205"; transcript_id "KOF00732"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 126503 126973 . - . gene_id "W7K_03205"; transcript_id "KOF00732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00732-1"; +contig42 ena CDS 126506 126973 . - 0 gene_id "W7K_03205"; transcript_id "KOF00732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00732"; +contig42 ena start_codon 126971 126973 . - 0 gene_id "W7K_03205"; transcript_id "KOF00732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 126503 126505 . - 0 gene_id "W7K_03205"; transcript_id "KOF00732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 126970 128226 . - . gene_id "W7K_03210"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 126970 128226 . - . gene_id "W7K_03210"; transcript_id "KOF00733"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 126970 128226 . - . gene_id "W7K_03210"; transcript_id "KOF00733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00733-1"; +contig42 ena CDS 126973 128226 . - 0 gene_id "W7K_03210"; transcript_id "KOF00733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00733"; +contig42 ena start_codon 128224 128226 . - 0 gene_id "W7K_03210"; transcript_id "KOF00733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 126970 126972 . - 0 gene_id "W7K_03210"; transcript_id "KOF00733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 128228 130114 . - . gene_id "W7K_03215"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 128228 130114 . - . gene_id "W7K_03215"; transcript_id "KOF00734"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 128228 130114 . - . gene_id "W7K_03215"; transcript_id "KOF00734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00734-1"; +contig42 ena CDS 128231 130114 . - 0 gene_id "W7K_03215"; transcript_id "KOF00734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00734"; +contig42 ena start_codon 130112 130114 . - 0 gene_id "W7K_03215"; transcript_id "KOF00734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 128228 128230 . - 0 gene_id "W7K_03215"; transcript_id "KOF00734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 130116 132143 . - . gene_id "W7K_03220"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 130116 132143 . - . gene_id "W7K_03220"; transcript_id "KOF00735"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 130116 132143 . - . gene_id "W7K_03220"; transcript_id "KOF00735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00735-1"; +contig42 ena CDS 130119 132143 . - 0 gene_id "W7K_03220"; transcript_id "KOF00735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00735"; +contig42 ena start_codon 132141 132143 . - 0 gene_id "W7K_03220"; transcript_id "KOF00735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 130116 130118 . - 0 gene_id "W7K_03220"; transcript_id "KOF00735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 132486 133691 . - . gene_id "W7K_03225"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 132486 133691 . - . gene_id "W7K_03225"; transcript_id "KOF00736"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 132486 133691 . - . gene_id "W7K_03225"; transcript_id "KOF00736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00736-1"; +contig42 ena CDS 132489 133691 . - 0 gene_id "W7K_03225"; transcript_id "KOF00736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00736"; +contig42 ena start_codon 133689 133691 . - 0 gene_id "W7K_03225"; transcript_id "KOF00736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 132486 132488 . - 0 gene_id "W7K_03225"; transcript_id "KOF00736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 133914 133990 . - . gene_id "W7K_03230"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 133914 133990 . - . gene_id "W7K_03230"; transcript_id "EBT00051077666"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_03230"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 133914 133990 . - . gene_id "W7K_03230"; transcript_id "EBT00051077666"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_03230"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_03230-1"; +contig42 ena gene 134131 134207 . - . gene_id "W7K_03235"; gene_source "ena"; gene_biotype "tRNA"; +contig42 ena transcript 134131 134207 . - . gene_id "W7K_03235"; transcript_id "EBT00051077658"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_03235"; transcript_source "ena"; transcript_biotype "tRNA"; +contig42 ena exon 134131 134207 . - . gene_id "W7K_03235"; transcript_id "EBT00051077658"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_03235"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_03235-1"; +contig42 ena gene 134265 134381 . - . gene_id "W7K_03240"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 134265 134381 . - . gene_id "W7K_03240"; transcript_id "KOF00737"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 134265 134381 . - . gene_id "W7K_03240"; transcript_id "KOF00737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00737-1"; +contig42 ena CDS 134268 134381 . - 0 gene_id "W7K_03240"; transcript_id "KOF00737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00737"; +contig42 ena start_codon 134379 134381 . - 0 gene_id "W7K_03240"; transcript_id "KOF00737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 134265 134267 . - 0 gene_id "W7K_03240"; transcript_id "KOF00737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 134435 135586 . - . gene_id "W7K_03245"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 134435 135586 . - . gene_id "W7K_03245"; transcript_id "KOF00738"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 134435 135586 . - . gene_id "W7K_03245"; transcript_id "KOF00738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00738-1"; +contig42 ena CDS 134438 135586 . - 0 gene_id "W7K_03245"; transcript_id "KOF00738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00738"; +contig42 ena start_codon 135584 135586 . - 0 gene_id "W7K_03245"; transcript_id "KOF00738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 134435 134437 . - 0 gene_id "W7K_03245"; transcript_id "KOF00738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 135602 137191 . - . gene_id "W7K_03250"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 135602 137191 . - . gene_id "W7K_03250"; transcript_id "KOF00739"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 135602 137191 . - . gene_id "W7K_03250"; transcript_id "KOF00739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00739-1"; +contig42 ena CDS 135605 137191 . - 0 gene_id "W7K_03250"; transcript_id "KOF00739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00739"; +contig42 ena start_codon 137189 137191 . - 0 gene_id "W7K_03250"; transcript_id "KOF00739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 135602 135604 . - 0 gene_id "W7K_03250"; transcript_id "KOF00739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 137420 139165 . + . gene_id "W7K_03255"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 137420 139165 . + . gene_id "W7K_03255"; transcript_id "KOF00740"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 137420 139165 . + . gene_id "W7K_03255"; transcript_id "KOF00740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00740-1"; +contig42 ena CDS 137420 139162 . + 0 gene_id "W7K_03255"; transcript_id "KOF00740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00740"; +contig42 ena start_codon 137420 137422 . + 0 gene_id "W7K_03255"; transcript_id "KOF00740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 139163 139165 . + 0 gene_id "W7K_03255"; transcript_id "KOF00740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 139162 140835 . + . gene_id "W7K_03260"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 139162 140835 . + . gene_id "W7K_03260"; transcript_id "KOF00741"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 139162 140835 . + . gene_id "W7K_03260"; transcript_id "KOF00741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00741-1"; +contig42 ena CDS 139162 140832 . + 0 gene_id "W7K_03260"; transcript_id "KOF00741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00741"; +contig42 ena start_codon 139162 139164 . + 0 gene_id "W7K_03260"; transcript_id "KOF00741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 140833 140835 . + 0 gene_id "W7K_03260"; transcript_id "KOF00741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 140936 141280 . - . gene_id "W7K_03265"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 140936 141280 . - . gene_id "W7K_03265"; transcript_id "KOF00742"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 140936 141280 . - . gene_id "W7K_03265"; transcript_id "KOF00742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00742-1"; +contig42 ena CDS 140939 141280 . - 0 gene_id "W7K_03265"; transcript_id "KOF00742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00742"; +contig42 ena start_codon 141278 141280 . - 0 gene_id "W7K_03265"; transcript_id "KOF00742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 140936 140938 . - 0 gene_id "W7K_03265"; transcript_id "KOF00742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 141281 142393 . - . gene_id "W7K_03270"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 141281 142393 . - . gene_id "W7K_03270"; transcript_id "KOF00743"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 141281 142393 . - . gene_id "W7K_03270"; transcript_id "KOF00743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00743-1"; +contig42 ena CDS 141284 142393 . - 0 gene_id "W7K_03270"; transcript_id "KOF00743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00743"; +contig42 ena start_codon 142391 142393 . - 0 gene_id "W7K_03270"; transcript_id "KOF00743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 141281 141283 . - 0 gene_id "W7K_03270"; transcript_id "KOF00743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 142574 143563 . - . gene_id "W7K_03275"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 142574 143563 . - . gene_id "W7K_03275"; transcript_id "KOF00744"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 142574 143563 . - . gene_id "W7K_03275"; transcript_id "KOF00744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00744-1"; +contig42 ena CDS 142577 143563 . - 0 gene_id "W7K_03275"; transcript_id "KOF00744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00744"; +contig42 ena start_codon 143561 143563 . - 0 gene_id "W7K_03275"; transcript_id "KOF00744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 142574 142576 . - 0 gene_id "W7K_03275"; transcript_id "KOF00744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 143557 144006 . - . gene_id "W7K_03280"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 143557 144006 . - . gene_id "W7K_03280"; transcript_id "KOF00745"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 143557 144006 . - . gene_id "W7K_03280"; transcript_id "KOF00745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00745-1"; +contig42 ena CDS 143560 144006 . - 0 gene_id "W7K_03280"; transcript_id "KOF00745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00745"; +contig42 ena start_codon 144004 144006 . - 0 gene_id "W7K_03280"; transcript_id "KOF00745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 143557 143559 . - 0 gene_id "W7K_03280"; transcript_id "KOF00745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 144011 144628 . - . gene_id "W7K_03285"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 144011 144628 . - . gene_id "W7K_03285"; transcript_id "KOF00746"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 144011 144628 . - . gene_id "W7K_03285"; transcript_id "KOF00746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00746-1"; +contig42 ena CDS 144014 144628 . - 0 gene_id "W7K_03285"; transcript_id "KOF00746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00746"; +contig42 ena start_codon 144626 144628 . - 0 gene_id "W7K_03285"; transcript_id "KOF00746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 144011 144013 . - 0 gene_id "W7K_03285"; transcript_id "KOF00746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 144637 146556 . - . gene_id "W7K_03290"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 144637 146556 . - . gene_id "W7K_03290"; transcript_id "KOF00747"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 144637 146556 . - . gene_id "W7K_03290"; transcript_id "KOF00747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00747-1"; +contig42 ena CDS 144640 146556 . - 0 gene_id "W7K_03290"; transcript_id "KOF00747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00747"; +contig42 ena start_codon 146554 146556 . - 0 gene_id "W7K_03290"; transcript_id "KOF00747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 144637 144639 . - 0 gene_id "W7K_03290"; transcript_id "KOF00747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 146557 147018 . - . gene_id "W7K_03295"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 146557 147018 . - . gene_id "W7K_03295"; transcript_id "KOF00748"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 146557 147018 . - . gene_id "W7K_03295"; transcript_id "KOF00748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00748-1"; +contig42 ena CDS 146560 147018 . - 0 gene_id "W7K_03295"; transcript_id "KOF00748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00748"; +contig42 ena start_codon 147016 147018 . - 0 gene_id "W7K_03295"; transcript_id "KOF00748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 146557 146559 . - 0 gene_id "W7K_03295"; transcript_id "KOF00748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 147015 147203 . - . gene_id "W7K_03300"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 147015 147203 . - . gene_id "W7K_03300"; transcript_id "KOF00749"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 147015 147203 . - . gene_id "W7K_03300"; transcript_id "KOF00749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00749-1"; +contig42 ena CDS 147018 147203 . - 0 gene_id "W7K_03300"; transcript_id "KOF00749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00749"; +contig42 ena start_codon 147201 147203 . - 0 gene_id "W7K_03300"; transcript_id "KOF00749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 147015 147017 . - 0 gene_id "W7K_03300"; transcript_id "KOF00749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 147200 147970 . - . gene_id "W7K_03305"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 147200 147970 . - . gene_id "W7K_03305"; transcript_id "KOF00750"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 147200 147970 . - . gene_id "W7K_03305"; transcript_id "KOF00750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00750-1"; +contig42 ena CDS 147203 147970 . - 0 gene_id "W7K_03305"; transcript_id "KOF00750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00750"; +contig42 ena start_codon 147968 147970 . - 0 gene_id "W7K_03305"; transcript_id "KOF00750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 147200 147202 . - 0 gene_id "W7K_03305"; transcript_id "KOF00750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 148014 148709 . - . gene_id "W7K_03310"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 148014 148709 . - . gene_id "W7K_03310"; transcript_id "KOF00751"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 148014 148709 . - . gene_id "W7K_03310"; transcript_id "KOF00751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00751-1"; +contig42 ena CDS 148017 148709 . - 0 gene_id "W7K_03310"; transcript_id "KOF00751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00751"; +contig42 ena start_codon 148707 148709 . - 0 gene_id "W7K_03310"; transcript_id "KOF00751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 148014 148016 . - 0 gene_id "W7K_03310"; transcript_id "KOF00751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 148706 149335 . - . gene_id "W7K_03315"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 148706 149335 . - . gene_id "W7K_03315"; transcript_id "KOF00752"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 148706 149335 . - . gene_id "W7K_03315"; transcript_id "KOF00752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00752-1"; +contig42 ena CDS 148709 149335 . - 0 gene_id "W7K_03315"; transcript_id "KOF00752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00752"; +contig42 ena start_codon 149333 149335 . - 0 gene_id "W7K_03315"; transcript_id "KOF00752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 148706 148708 . - 0 gene_id "W7K_03315"; transcript_id "KOF00752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 149532 150680 . + . gene_id "W7K_03320"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 149532 150680 . + . gene_id "W7K_03320"; transcript_id "KOF00824"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 149532 150680 . + . gene_id "W7K_03320"; transcript_id "KOF00824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00824-1"; +contig42 ena CDS 149532 150677 . + 0 gene_id "W7K_03320"; transcript_id "KOF00824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00824"; +contig42 ena start_codon 149532 149534 . + 0 gene_id "W7K_03320"; transcript_id "KOF00824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 150678 150680 . + 0 gene_id "W7K_03320"; transcript_id "KOF00824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 150695 151501 . + . gene_id "W7K_03325"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 150695 151501 . + . gene_id "W7K_03325"; transcript_id "KOF00825"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 150695 151501 . + . gene_id "W7K_03325"; transcript_id "KOF00825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00825-1"; +contig42 ena CDS 150695 151498 . + 0 gene_id "W7K_03325"; transcript_id "KOF00825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00825"; +contig42 ena start_codon 150695 150697 . + 0 gene_id "W7K_03325"; transcript_id "KOF00825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 151499 151501 . + 0 gene_id "W7K_03325"; transcript_id "KOF00825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 151605 152039 . + . gene_id "W7K_03330"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 151605 152039 . + . gene_id "W7K_03330"; transcript_id "KOF00753"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 151605 152039 . + . gene_id "W7K_03330"; transcript_id "KOF00753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00753-1"; +contig42 ena CDS 151605 152036 . + 0 gene_id "W7K_03330"; transcript_id "KOF00753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00753"; +contig42 ena start_codon 151605 151607 . + 0 gene_id "W7K_03330"; transcript_id "KOF00753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 152037 152039 . + 0 gene_id "W7K_03330"; transcript_id "KOF00753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 152026 152319 . - . gene_id "W7K_03335"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 152026 152319 . - . gene_id "W7K_03335"; transcript_id "KOF00754"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 152026 152319 . - . gene_id "W7K_03335"; transcript_id "KOF00754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00754-1"; +contig42 ena CDS 152029 152319 . - 0 gene_id "W7K_03335"; transcript_id "KOF00754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00754"; +contig42 ena start_codon 152317 152319 . - 0 gene_id "W7K_03335"; transcript_id "KOF00754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 152026 152028 . - 0 gene_id "W7K_03335"; transcript_id "KOF00754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 152673 153080 . + . gene_id "W7K_03340"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 152673 153080 . + . gene_id "W7K_03340"; transcript_id "KOF00755"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 152673 153080 . + . gene_id "W7K_03340"; transcript_id "KOF00755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00755-1"; +contig42 ena CDS 152673 153077 . + 0 gene_id "W7K_03340"; transcript_id "KOF00755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00755"; +contig42 ena start_codon 152673 152675 . + 0 gene_id "W7K_03340"; transcript_id "KOF00755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 153078 153080 . + 0 gene_id "W7K_03340"; transcript_id "KOF00755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 153193 154320 . - . gene_id "W7K_03345"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 153193 154320 . - . gene_id "W7K_03345"; transcript_id "KOF00756"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 153193 154320 . - . gene_id "W7K_03345"; transcript_id "KOF00756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00756-1"; +contig42 ena CDS 153196 154320 . - 0 gene_id "W7K_03345"; transcript_id "KOF00756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00756"; +contig42 ena start_codon 154318 154320 . - 0 gene_id "W7K_03345"; transcript_id "KOF00756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 153193 153195 . - 0 gene_id "W7K_03345"; transcript_id "KOF00756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 154411 155199 . + . gene_id "W7K_03350"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 154411 155199 . + . gene_id "W7K_03350"; transcript_id "KOF00757"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 154411 155199 . + . gene_id "W7K_03350"; transcript_id "KOF00757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00757-1"; +contig42 ena CDS 154411 155196 . + 0 gene_id "W7K_03350"; transcript_id "KOF00757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00757"; +contig42 ena start_codon 154411 154413 . + 0 gene_id "W7K_03350"; transcript_id "KOF00757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 155197 155199 . + 0 gene_id "W7K_03350"; transcript_id "KOF00757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 155316 156950 . - . gene_id "W7K_03355"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 155316 156950 . - . gene_id "W7K_03355"; transcript_id "KOF00758"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 155316 156950 . - . gene_id "W7K_03355"; transcript_id "KOF00758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00758-1"; +contig42 ena CDS 155319 156950 . - 0 gene_id "W7K_03355"; transcript_id "KOF00758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00758"; +contig42 ena start_codon 156948 156950 . - 0 gene_id "W7K_03355"; transcript_id "KOF00758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 155316 155318 . - 0 gene_id "W7K_03355"; transcript_id "KOF00758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 156943 157818 . - . gene_id "W7K_03360"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 156943 157818 . - . gene_id "W7K_03360"; transcript_id "KOF00759"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 156943 157818 . - . gene_id "W7K_03360"; transcript_id "KOF00759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00759-1"; +contig42 ena CDS 156946 157818 . - 0 gene_id "W7K_03360"; transcript_id "KOF00759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00759"; +contig42 ena start_codon 157816 157818 . - 0 gene_id "W7K_03360"; transcript_id "KOF00759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 156943 156945 . - 0 gene_id "W7K_03360"; transcript_id "KOF00759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 157832 158737 . - . gene_id "W7K_03365"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 157832 158737 . - . gene_id "W7K_03365"; transcript_id "KOF00760"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 157832 158737 . - . gene_id "W7K_03365"; transcript_id "KOF00760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00760-1"; +contig42 ena CDS 157835 158737 . - 0 gene_id "W7K_03365"; transcript_id "KOF00760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00760"; +contig42 ena start_codon 158735 158737 . - 0 gene_id "W7K_03365"; transcript_id "KOF00760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 157832 157834 . - 0 gene_id "W7K_03365"; transcript_id "KOF00760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 159113 159412 . + . gene_id "W7K_03370"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 159113 159412 . + . gene_id "W7K_03370"; transcript_id "KOF00826"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 159113 159412 . + . gene_id "W7K_03370"; transcript_id "KOF00826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00826-1"; +contig42 ena CDS 159113 159409 . + 0 gene_id "W7K_03370"; transcript_id "KOF00826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00826"; +contig42 ena start_codon 159113 159115 . + 0 gene_id "W7K_03370"; transcript_id "KOF00826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 159410 159412 . + 0 gene_id "W7K_03370"; transcript_id "KOF00826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 159433 159684 . + . gene_id "W7K_03375"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 159433 159684 . + . gene_id "W7K_03375"; transcript_id "KOF00761"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 159433 159684 . + . gene_id "W7K_03375"; transcript_id "KOF00761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00761-1"; +contig42 ena CDS 159433 159681 . + 0 gene_id "W7K_03375"; transcript_id "KOF00761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00761"; +contig42 ena start_codon 159433 159435 . + 0 gene_id "W7K_03375"; transcript_id "KOF00761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 159682 159684 . + 0 gene_id "W7K_03375"; transcript_id "KOF00761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 159834 160871 . + . gene_id "W7K_03380"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 159834 160871 . + . gene_id "W7K_03380"; transcript_id "KOF00762"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 159834 160871 . + . gene_id "W7K_03380"; transcript_id "KOF00762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00762-1"; +contig42 ena CDS 159834 160868 . + 0 gene_id "W7K_03380"; transcript_id "KOF00762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00762"; +contig42 ena start_codon 159834 159836 . + 0 gene_id "W7K_03380"; transcript_id "KOF00762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 160869 160871 . + 0 gene_id "W7K_03380"; transcript_id "KOF00762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 160948 164034 . + . gene_id "W7K_03385"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 160948 164034 . + . gene_id "W7K_03385"; transcript_id "KOF00763"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 160948 164034 . + . gene_id "W7K_03385"; transcript_id "KOF00763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00763-1"; +contig42 ena CDS 160948 164031 . + 0 gene_id "W7K_03385"; transcript_id "KOF00763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00763"; +contig42 ena start_codon 160948 160950 . + 0 gene_id "W7K_03385"; transcript_id "KOF00763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 164032 164034 . + 0 gene_id "W7K_03385"; transcript_id "KOF00763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 164285 165889 . + . gene_id "W7K_03390"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 164285 165889 . + . gene_id "W7K_03390"; transcript_id "KOF00764"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 164285 165889 . + . gene_id "W7K_03390"; transcript_id "KOF00764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00764-1"; +contig42 ena CDS 164285 165886 . + 0 gene_id "W7K_03390"; transcript_id "KOF00764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00764"; +contig42 ena start_codon 164285 164287 . + 0 gene_id "W7K_03390"; transcript_id "KOF00764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 165887 165889 . + 0 gene_id "W7K_03390"; transcript_id "KOF00764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 165894 167234 . + . gene_id "W7K_03395"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 165894 167234 . + . gene_id "W7K_03395"; transcript_id "KOF00765"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 165894 167234 . + . gene_id "W7K_03395"; transcript_id "KOF00765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00765-1"; +contig42 ena CDS 165894 167231 . + 0 gene_id "W7K_03395"; transcript_id "KOF00765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00765"; +contig42 ena start_codon 165894 165896 . + 0 gene_id "W7K_03395"; transcript_id "KOF00765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 167232 167234 . + 0 gene_id "W7K_03395"; transcript_id "KOF00765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 167231 168112 . + . gene_id "W7K_03400"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 167231 168112 . + . gene_id "W7K_03400"; transcript_id "KOF00766"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 167231 168112 . + . gene_id "W7K_03400"; transcript_id "KOF00766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00766-1"; +contig42 ena CDS 167231 168109 . + 0 gene_id "W7K_03400"; transcript_id "KOF00766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00766"; +contig42 ena start_codon 167231 167233 . + 0 gene_id "W7K_03400"; transcript_id "KOF00766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 168110 168112 . + 0 gene_id "W7K_03400"; transcript_id "KOF00766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 168109 168945 . + . gene_id "W7K_03405"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 168109 168945 . + . gene_id "W7K_03405"; transcript_id "KOF00767"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 168109 168945 . + . gene_id "W7K_03405"; transcript_id "KOF00767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00767-1"; +contig42 ena CDS 168109 168942 . + 0 gene_id "W7K_03405"; transcript_id "KOF00767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00767"; +contig42 ena start_codon 168109 168111 . + 0 gene_id "W7K_03405"; transcript_id "KOF00767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 168943 168945 . + 0 gene_id "W7K_03405"; transcript_id "KOF00767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 168942 172109 . + . gene_id "W7K_03410"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 168942 172109 . + . gene_id "W7K_03410"; transcript_id "KOF00768"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 168942 172109 . + . gene_id "W7K_03410"; transcript_id "KOF00768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00768-1"; +contig42 ena CDS 168942 172106 . + 0 gene_id "W7K_03410"; transcript_id "KOF00768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00768"; +contig42 ena start_codon 168942 168944 . + 0 gene_id "W7K_03410"; transcript_id "KOF00768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 172107 172109 . + 0 gene_id "W7K_03410"; transcript_id "KOF00768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 172112 172999 . + . gene_id "W7K_03415"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 172112 172999 . + . gene_id "W7K_03415"; transcript_id "KOF00769"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 172112 172999 . + . gene_id "W7K_03415"; transcript_id "KOF00769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00769-1"; +contig42 ena CDS 172112 172996 . + 0 gene_id "W7K_03415"; transcript_id "KOF00769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00769"; +contig42 ena start_codon 172112 172114 . + 0 gene_id "W7K_03415"; transcript_id "KOF00769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 172997 172999 . + 0 gene_id "W7K_03415"; transcript_id "KOF00769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 173177 176437 . - . gene_id "W7K_03420"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 173177 176437 . - . gene_id "W7K_03420"; transcript_id "KOF00770"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 173177 176437 . - . gene_id "W7K_03420"; transcript_id "KOF00770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00770-1"; +contig42 ena CDS 173180 176437 . - 0 gene_id "W7K_03420"; transcript_id "KOF00770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00770"; +contig42 ena start_codon 176435 176437 . - 0 gene_id "W7K_03420"; transcript_id "KOF00770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 173177 173179 . - 0 gene_id "W7K_03420"; transcript_id "KOF00770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 176845 177819 . + . gene_id "W7K_03425"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 176845 177819 . + . gene_id "W7K_03425"; transcript_id "KOF00771"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 176845 177819 . + . gene_id "W7K_03425"; transcript_id "KOF00771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00771-1"; +contig42 ena CDS 176845 177816 . + 0 gene_id "W7K_03425"; transcript_id "KOF00771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00771"; +contig42 ena start_codon 176845 176847 . + 0 gene_id "W7K_03425"; transcript_id "KOF00771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 177817 177819 . + 0 gene_id "W7K_03425"; transcript_id "KOF00771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 178382 179191 . - . gene_id "W7K_03430"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 178382 179191 . - . gene_id "W7K_03430"; transcript_id "KOF00772"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 178382 179191 . - . gene_id "W7K_03430"; transcript_id "KOF00772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00772-1"; +contig42 ena CDS 178385 179191 . - 0 gene_id "W7K_03430"; transcript_id "KOF00772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00772"; +contig42 ena start_codon 179189 179191 . - 0 gene_id "W7K_03430"; transcript_id "KOF00772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 178382 178384 . - 0 gene_id "W7K_03430"; transcript_id "KOF00772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 179290 179706 . - . gene_id "W7K_03435"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 179290 179706 . - . gene_id "W7K_03435"; transcript_id "KOF00773"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 179290 179706 . - . gene_id "W7K_03435"; transcript_id "KOF00773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00773-1"; +contig42 ena CDS 179293 179706 . - 0 gene_id "W7K_03435"; transcript_id "KOF00773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00773"; +contig42 ena start_codon 179704 179706 . - 0 gene_id "W7K_03435"; transcript_id "KOF00773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 179290 179292 . - 0 gene_id "W7K_03435"; transcript_id "KOF00773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 179703 180053 . - . gene_id "W7K_03440"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 179703 180053 . - . gene_id "W7K_03440"; transcript_id "KOF00774"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 179703 180053 . - . gene_id "W7K_03440"; transcript_id "KOF00774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00774-1"; +contig42 ena CDS 179706 180053 . - 0 gene_id "W7K_03440"; transcript_id "KOF00774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00774"; +contig42 ena start_codon 180051 180053 . - 0 gene_id "W7K_03440"; transcript_id "KOF00774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 179703 179705 . - 0 gene_id "W7K_03440"; transcript_id "KOF00774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 180144 180743 . + . gene_id "W7K_03445"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 180144 180743 . + . gene_id "W7K_03445"; transcript_id "KOF00775"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 180144 180743 . + . gene_id "W7K_03445"; transcript_id "KOF00775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00775-1"; +contig42 ena CDS 180144 180740 . + 0 gene_id "W7K_03445"; transcript_id "KOF00775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00775"; +contig42 ena start_codon 180144 180146 . + 0 gene_id "W7K_03445"; transcript_id "KOF00775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 180741 180743 . + 0 gene_id "W7K_03445"; transcript_id "KOF00775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 180754 182520 . + . gene_id "W7K_03450"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 180754 182520 . + . gene_id "W7K_03450"; transcript_id "KOF00776"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 180754 182520 . + . gene_id "W7K_03450"; transcript_id "KOF00776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00776-1"; +contig42 ena CDS 180754 182517 . + 0 gene_id "W7K_03450"; transcript_id "KOF00776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00776"; +contig42 ena start_codon 180754 180756 . + 0 gene_id "W7K_03450"; transcript_id "KOF00776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 182518 182520 . + 0 gene_id "W7K_03450"; transcript_id "KOF00776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 182664 183077 . - . gene_id "W7K_03455"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 182664 183077 . - . gene_id "W7K_03455"; transcript_id "KOF00777"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 182664 183077 . - . gene_id "W7K_03455"; transcript_id "KOF00777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00777-1"; +contig42 ena CDS 182667 183077 . - 0 gene_id "W7K_03455"; transcript_id "KOF00777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00777"; +contig42 ena start_codon 183075 183077 . - 0 gene_id "W7K_03455"; transcript_id "KOF00777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 182664 182666 . - 0 gene_id "W7K_03455"; transcript_id "KOF00777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 183077 183529 . - . gene_id "W7K_03460"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 183077 183529 . - . gene_id "W7K_03460"; transcript_id "KOF00778"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 183077 183529 . - . gene_id "W7K_03460"; transcript_id "KOF00778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00778-1"; +contig42 ena CDS 183080 183529 . - 0 gene_id "W7K_03460"; transcript_id "KOF00778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00778"; +contig42 ena start_codon 183527 183529 . - 0 gene_id "W7K_03460"; transcript_id "KOF00778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 183077 183079 . - 0 gene_id "W7K_03460"; transcript_id "KOF00778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 183750 184361 . + . gene_id "W7K_03465"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 183750 184361 . + . gene_id "W7K_03465"; transcript_id "KOF00779"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 183750 184361 . + . gene_id "W7K_03465"; transcript_id "KOF00779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00779-1"; +contig42 ena CDS 183750 184358 . + 0 gene_id "W7K_03465"; transcript_id "KOF00779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00779"; +contig42 ena start_codon 183750 183752 . + 0 gene_id "W7K_03465"; transcript_id "KOF00779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 184359 184361 . + 0 gene_id "W7K_03465"; transcript_id "KOF00779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 184422 185270 . - . gene_id "W7K_03470"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 184422 185270 . - . gene_id "W7K_03470"; transcript_id "KOF00780"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 184422 185270 . - . gene_id "W7K_03470"; transcript_id "KOF00780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00780-1"; +contig42 ena CDS 184425 185270 . - 0 gene_id "W7K_03470"; transcript_id "KOF00780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00780"; +contig42 ena start_codon 185268 185270 . - 0 gene_id "W7K_03470"; transcript_id "KOF00780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 184422 184424 . - 0 gene_id "W7K_03470"; transcript_id "KOF00780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 185433 186998 . + . gene_id "W7K_03475"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 185433 186998 . + . gene_id "W7K_03475"; transcript_id "KOF00781"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 185433 186998 . + . gene_id "W7K_03475"; transcript_id "KOF00781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00781-1"; +contig42 ena CDS 185433 186995 . + 0 gene_id "W7K_03475"; transcript_id "KOF00781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00781"; +contig42 ena start_codon 185433 185435 . + 0 gene_id "W7K_03475"; transcript_id "KOF00781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 186996 186998 . + 0 gene_id "W7K_03475"; transcript_id "KOF00781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 187006 187632 . + . gene_id "W7K_03480"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 187006 187632 . + . gene_id "W7K_03480"; transcript_id "KOF00782"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 187006 187632 . + . gene_id "W7K_03480"; transcript_id "KOF00782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00782-1"; +contig42 ena CDS 187006 187629 . + 0 gene_id "W7K_03480"; transcript_id "KOF00782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00782"; +contig42 ena start_codon 187006 187008 . + 0 gene_id "W7K_03480"; transcript_id "KOF00782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 187630 187632 . + 0 gene_id "W7K_03480"; transcript_id "KOF00782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 187676 187861 . - . gene_id "W7K_03485"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 187676 187861 . - . gene_id "W7K_03485"; transcript_id "KOF00783"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 187676 187861 . - . gene_id "W7K_03485"; transcript_id "KOF00783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00783-1"; +contig42 ena CDS 187679 187861 . - 0 gene_id "W7K_03485"; transcript_id "KOF00783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00783"; +contig42 ena start_codon 187859 187861 . - 0 gene_id "W7K_03485"; transcript_id "KOF00783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 187676 187678 . - 0 gene_id "W7K_03485"; transcript_id "KOF00783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 188047 188349 . + . gene_id "W7K_03490"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 188047 188349 . + . gene_id "W7K_03490"; transcript_id "KOF00784"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 188047 188349 . + . gene_id "W7K_03490"; transcript_id "KOF00784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00784-1"; +contig42 ena CDS 188047 188346 . + 0 gene_id "W7K_03490"; transcript_id "KOF00784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00784"; +contig42 ena start_codon 188047 188049 . + 0 gene_id "W7K_03490"; transcript_id "KOF00784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 188347 188349 . + 0 gene_id "W7K_03490"; transcript_id "KOF00784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 188387 189268 . + . gene_id "W7K_03495"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 188387 189268 . + . gene_id "W7K_03495"; transcript_id "KOF00827"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 188387 189268 . + . gene_id "W7K_03495"; transcript_id "KOF00827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00827-1"; +contig42 ena CDS 188387 189265 . + 0 gene_id "W7K_03495"; transcript_id "KOF00827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00827"; +contig42 ena start_codon 188387 188389 . + 0 gene_id "W7K_03495"; transcript_id "KOF00827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 189266 189268 . + 0 gene_id "W7K_03495"; transcript_id "KOF00827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 189288 190403 . + . gene_id "W7K_03500"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 189288 190403 . + . gene_id "W7K_03500"; transcript_id "KOF00785"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 189288 190403 . + . gene_id "W7K_03500"; transcript_id "KOF00785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00785-1"; +contig42 ena CDS 189288 190400 . + 0 gene_id "W7K_03500"; transcript_id "KOF00785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00785"; +contig42 ena start_codon 189288 189290 . + 0 gene_id "W7K_03500"; transcript_id "KOF00785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 190401 190403 . + 0 gene_id "W7K_03500"; transcript_id "KOF00785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 190497 192665 . - . gene_id "W7K_03505"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 190497 192665 . - . gene_id "W7K_03505"; transcript_id "KOF00786"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 190497 192665 . - . gene_id "W7K_03505"; transcript_id "KOF00786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00786-1"; +contig42 ena CDS 190500 192665 . - 0 gene_id "W7K_03505"; transcript_id "KOF00786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00786"; +contig42 ena start_codon 192663 192665 . - 0 gene_id "W7K_03505"; transcript_id "KOF00786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 190497 190499 . - 0 gene_id "W7K_03505"; transcript_id "KOF00786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 192796 193275 . + . gene_id "W7K_03510"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 192796 193275 . + . gene_id "W7K_03510"; transcript_id "KOF00787"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 192796 193275 . + . gene_id "W7K_03510"; transcript_id "KOF00787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00787-1"; +contig42 ena CDS 192796 193272 . + 0 gene_id "W7K_03510"; transcript_id "KOF00787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00787"; +contig42 ena start_codon 192796 192798 . + 0 gene_id "W7K_03510"; transcript_id "KOF00787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 193273 193275 . + 0 gene_id "W7K_03510"; transcript_id "KOF00787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 193310 193843 . - . gene_id "W7K_03515"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 193310 193843 . - . gene_id "W7K_03515"; transcript_id "KOF00788"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 193310 193843 . - . gene_id "W7K_03515"; transcript_id "KOF00788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00788-1"; +contig42 ena CDS 193313 193843 . - 0 gene_id "W7K_03515"; transcript_id "KOF00788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00788"; +contig42 ena start_codon 193841 193843 . - 0 gene_id "W7K_03515"; transcript_id "KOF00788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 193310 193312 . - 0 gene_id "W7K_03515"; transcript_id "KOF00788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 193978 194757 . - . gene_id "W7K_03520"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 193978 194757 . - . gene_id "W7K_03520"; transcript_id "KOF00789"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 193978 194757 . - . gene_id "W7K_03520"; transcript_id "KOF00789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00789-1"; +contig42 ena CDS 193981 194757 . - 0 gene_id "W7K_03520"; transcript_id "KOF00789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00789"; +contig42 ena start_codon 194755 194757 . - 0 gene_id "W7K_03520"; transcript_id "KOF00789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 193978 193980 . - 0 gene_id "W7K_03520"; transcript_id "KOF00789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 194838 196709 . - . gene_id "W7K_03525"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 194838 196709 . - . gene_id "W7K_03525"; transcript_id "KOF00790"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 194838 196709 . - . gene_id "W7K_03525"; transcript_id "KOF00790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00790-1"; +contig42 ena CDS 194841 196709 . - 0 gene_id "W7K_03525"; transcript_id "KOF00790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00790"; +contig42 ena start_codon 196707 196709 . - 0 gene_id "W7K_03525"; transcript_id "KOF00790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 194838 194840 . - 0 gene_id "W7K_03525"; transcript_id "KOF00790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 197151 197600 . - . gene_id "W7K_03530"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 197151 197600 . - . gene_id "W7K_03530"; transcript_id "KOF00791"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 197151 197600 . - . gene_id "W7K_03530"; transcript_id "KOF00791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00791-1"; +contig42 ena CDS 197154 197600 . - 0 gene_id "W7K_03530"; transcript_id "KOF00791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00791"; +contig42 ena start_codon 197598 197600 . - 0 gene_id "W7K_03530"; transcript_id "KOF00791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 197151 197153 . - 0 gene_id "W7K_03530"; transcript_id "KOF00791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 197637 198533 . - . gene_id "W7K_03535"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 197637 198533 . - . gene_id "W7K_03535"; transcript_id "KOF00792"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 197637 198533 . - . gene_id "W7K_03535"; transcript_id "KOF00792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00792-1"; +contig42 ena CDS 197640 198533 . - 0 gene_id "W7K_03535"; transcript_id "KOF00792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00792"; +contig42 ena start_codon 198531 198533 . - 0 gene_id "W7K_03535"; transcript_id "KOF00792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 197637 197639 . - 0 gene_id "W7K_03535"; transcript_id "KOF00792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 198681 200198 . + . gene_id "W7K_03540"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 198681 200198 . + . gene_id "W7K_03540"; transcript_id "KOF00793"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 198681 200198 . + . gene_id "W7K_03540"; transcript_id "KOF00793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00793-1"; +contig42 ena CDS 198681 200195 . + 0 gene_id "W7K_03540"; transcript_id "KOF00793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00793"; +contig42 ena start_codon 198681 198683 . + 0 gene_id "W7K_03540"; transcript_id "KOF00793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 200196 200198 . + 0 gene_id "W7K_03540"; transcript_id "KOF00793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 200316 200711 . + . gene_id "W7K_03545"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 200316 200711 . + . gene_id "W7K_03545"; transcript_id "KOF00794"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 200316 200711 . + . gene_id "W7K_03545"; transcript_id "KOF00794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00794-1"; +contig42 ena CDS 200316 200708 . + 0 gene_id "W7K_03545"; transcript_id "KOF00794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00794"; +contig42 ena start_codon 200316 200318 . + 0 gene_id "W7K_03545"; transcript_id "KOF00794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 200709 200711 . + 0 gene_id "W7K_03545"; transcript_id "KOF00794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 200787 201122 . + . gene_id "W7K_03550"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 200787 201122 . + . gene_id "W7K_03550"; transcript_id "KOF00795"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 200787 201122 . + . gene_id "W7K_03550"; transcript_id "KOF00795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00795-1"; +contig42 ena CDS 200787 201119 . + 0 gene_id "W7K_03550"; transcript_id "KOF00795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00795"; +contig42 ena start_codon 200787 200789 . + 0 gene_id "W7K_03550"; transcript_id "KOF00795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 201120 201122 . + 0 gene_id "W7K_03550"; transcript_id "KOF00795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 201181 201816 . + . gene_id "W7K_03555"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 201181 201816 . + . gene_id "W7K_03555"; transcript_id "KOF00796"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 201181 201816 . + . gene_id "W7K_03555"; transcript_id "KOF00796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00796-1"; +contig42 ena CDS 201181 201813 . + 0 gene_id "W7K_03555"; transcript_id "KOF00796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00796"; +contig42 ena start_codon 201181 201183 . + 0 gene_id "W7K_03555"; transcript_id "KOF00796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 201814 201816 . + 0 gene_id "W7K_03555"; transcript_id "KOF00796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 201890 202231 . - . gene_id "W7K_03560"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 201890 202231 . - . gene_id "W7K_03560"; transcript_id "KOF00797"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 201890 202231 . - . gene_id "W7K_03560"; transcript_id "KOF00797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00797-1"; +contig42 ena CDS 201893 202231 . - 0 gene_id "W7K_03560"; transcript_id "KOF00797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00797"; +contig42 ena start_codon 202229 202231 . - 0 gene_id "W7K_03560"; transcript_id "KOF00797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 201890 201892 . - 0 gene_id "W7K_03560"; transcript_id "KOF00797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 202231 203385 . - . gene_id "W7K_03565"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 202231 203385 . - . gene_id "W7K_03565"; transcript_id "KOF00798"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 202231 203385 . - . gene_id "W7K_03565"; transcript_id "KOF00798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00798-1"; +contig42 ena CDS 202234 203385 . - 0 gene_id "W7K_03565"; transcript_id "KOF00798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00798"; +contig42 ena start_codon 203383 203385 . - 0 gene_id "W7K_03565"; transcript_id "KOF00798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 202231 202233 . - 0 gene_id "W7K_03565"; transcript_id "KOF00798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 203505 203990 . - . gene_id "W7K_03570"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 203505 203990 . - . gene_id "W7K_03570"; transcript_id "KOF00799"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 203505 203990 . - . gene_id "W7K_03570"; transcript_id "KOF00799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00799-1"; +contig42 ena CDS 203508 203990 . - 0 gene_id "W7K_03570"; transcript_id "KOF00799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00799"; +contig42 ena start_codon 203988 203990 . - 0 gene_id "W7K_03570"; transcript_id "KOF00799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 203505 203507 . - 0 gene_id "W7K_03570"; transcript_id "KOF00799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 204226 204435 . + . gene_id "W7K_03575"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 204226 204435 . + . gene_id "W7K_03575"; transcript_id "KOF00800"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 204226 204435 . + . gene_id "W7K_03575"; transcript_id "KOF00800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00800-1"; +contig42 ena CDS 204226 204432 . + 0 gene_id "W7K_03575"; transcript_id "KOF00800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00800"; +contig42 ena start_codon 204226 204228 . + 0 gene_id "W7K_03575"; transcript_id "KOF00800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 204433 204435 . + 0 gene_id "W7K_03575"; transcript_id "KOF00800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 204508 205002 . - . gene_id "W7K_03580"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 204508 205002 . - . gene_id "W7K_03580"; transcript_id "KOF00801"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 204508 205002 . - . gene_id "W7K_03580"; transcript_id "KOF00801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00801-1"; +contig42 ena CDS 204511 205002 . - 0 gene_id "W7K_03580"; transcript_id "KOF00801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00801"; +contig42 ena start_codon 205000 205002 . - 0 gene_id "W7K_03580"; transcript_id "KOF00801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 204508 204510 . - 0 gene_id "W7K_03580"; transcript_id "KOF00801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 205139 205573 . - . gene_id "W7K_03585"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 205139 205573 . - . gene_id "W7K_03585"; transcript_id "KOF00802"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 205139 205573 . - . gene_id "W7K_03585"; transcript_id "KOF00802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00802-1"; +contig42 ena CDS 205142 205573 . - 0 gene_id "W7K_03585"; transcript_id "KOF00802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00802"; +contig42 ena start_codon 205571 205573 . - 0 gene_id "W7K_03585"; transcript_id "KOF00802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 205139 205141 . - 0 gene_id "W7K_03585"; transcript_id "KOF00802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 205654 206478 . + . gene_id "W7K_03590"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 205654 206478 . + . gene_id "W7K_03590"; transcript_id "KOF00803"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 205654 206478 . + . gene_id "W7K_03590"; transcript_id "KOF00803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00803-1"; +contig42 ena CDS 205654 206475 . + 0 gene_id "W7K_03590"; transcript_id "KOF00803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00803"; +contig42 ena start_codon 205654 205656 . + 0 gene_id "W7K_03590"; transcript_id "KOF00803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 206476 206478 . + 0 gene_id "W7K_03590"; transcript_id "KOF00803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 206512 207285 . - . gene_id "W7K_03595"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 206512 207285 . - . gene_id "W7K_03595"; transcript_id "KOF00804"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 206512 207285 . - . gene_id "W7K_03595"; transcript_id "KOF00804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00804-1"; +contig42 ena CDS 206515 207285 . - 0 gene_id "W7K_03595"; transcript_id "KOF00804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00804"; +contig42 ena start_codon 207283 207285 . - 0 gene_id "W7K_03595"; transcript_id "KOF00804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 206512 206514 . - 0 gene_id "W7K_03595"; transcript_id "KOF00804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 207282 207500 . - . gene_id "W7K_03600"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 207282 207500 . - . gene_id "W7K_03600"; transcript_id "KOF00805"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 207282 207500 . - . gene_id "W7K_03600"; transcript_id "KOF00805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00805-1"; +contig42 ena CDS 207285 207500 . - 0 gene_id "W7K_03600"; transcript_id "KOF00805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00805"; +contig42 ena start_codon 207498 207500 . - 0 gene_id "W7K_03600"; transcript_id "KOF00805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 207282 207284 . - 0 gene_id "W7K_03600"; transcript_id "KOF00805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 207664 208509 . + . gene_id "W7K_03605"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 207664 208509 . + . gene_id "W7K_03605"; transcript_id "KOF00828"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 207664 208509 . + . gene_id "W7K_03605"; transcript_id "KOF00828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00828-1"; +contig42 ena CDS 207664 208506 . + 0 gene_id "W7K_03605"; transcript_id "KOF00828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00828"; +contig42 ena start_codon 207664 207666 . + 0 gene_id "W7K_03605"; transcript_id "KOF00828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 208507 208509 . + 0 gene_id "W7K_03605"; transcript_id "KOF00828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 208636 209175 . + . gene_id "W7K_03610"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 208636 209175 . + . gene_id "W7K_03610"; transcript_id "KOF00806"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 208636 209175 . + . gene_id "W7K_03610"; transcript_id "KOF00806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00806-1"; +contig42 ena CDS 208636 209172 . + 0 gene_id "W7K_03610"; transcript_id "KOF00806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00806"; +contig42 ena start_codon 208636 208638 . + 0 gene_id "W7K_03610"; transcript_id "KOF00806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 209173 209175 . + 0 gene_id "W7K_03610"; transcript_id "KOF00806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 209340 209996 . + . gene_id "W7K_03615"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 209340 209996 . + . gene_id "W7K_03615"; transcript_id "KOF00829"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 209340 209996 . + . gene_id "W7K_03615"; transcript_id "KOF00829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00829-1"; +contig42 ena CDS 209340 209993 . + 0 gene_id "W7K_03615"; transcript_id "KOF00829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00829"; +contig42 ena start_codon 209340 209342 . + 0 gene_id "W7K_03615"; transcript_id "KOF00829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 209994 209996 . + 0 gene_id "W7K_03615"; transcript_id "KOF00829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 210074 212353 . + . gene_id "W7K_03620"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 210074 212353 . + . gene_id "W7K_03620"; transcript_id "KOF00807"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 210074 212353 . + . gene_id "W7K_03620"; transcript_id "KOF00807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00807-1"; +contig42 ena CDS 210074 212350 . + 0 gene_id "W7K_03620"; transcript_id "KOF00807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00807"; +contig42 ena start_codon 210074 210076 . + 0 gene_id "W7K_03620"; transcript_id "KOF00807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 212351 212353 . + 0 gene_id "W7K_03620"; transcript_id "KOF00807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 212357 214300 . + . gene_id "W7K_03625"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 212357 214300 . + . gene_id "W7K_03625"; transcript_id "KOF00808"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 212357 214300 . + . gene_id "W7K_03625"; transcript_id "KOF00808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00808-1"; +contig42 ena CDS 212357 214297 . + 0 gene_id "W7K_03625"; transcript_id "KOF00808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00808"; +contig42 ena start_codon 212357 212359 . + 0 gene_id "W7K_03625"; transcript_id "KOF00808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 214298 214300 . + 0 gene_id "W7K_03625"; transcript_id "KOF00808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 214367 214927 . + . gene_id "W7K_03630"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 214367 214927 . + . gene_id "W7K_03630"; transcript_id "KOF00809"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 214367 214927 . + . gene_id "W7K_03630"; transcript_id "KOF00809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00809-1"; +contig42 ena CDS 214367 214924 . + 0 gene_id "W7K_03630"; transcript_id "KOF00809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00809"; +contig42 ena start_codon 214367 214369 . + 0 gene_id "W7K_03630"; transcript_id "KOF00809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 214925 214927 . + 0 gene_id "W7K_03630"; transcript_id "KOF00809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 215140 216570 . + . gene_id "W7K_03635"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 215140 216570 . + . gene_id "W7K_03635"; transcript_id "KOF00810"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 215140 216570 . + . gene_id "W7K_03635"; transcript_id "KOF00810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00810-1"; +contig42 ena CDS 215140 216567 . + 0 gene_id "W7K_03635"; transcript_id "KOF00810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00810"; +contig42 ena start_codon 215140 215142 . + 0 gene_id "W7K_03635"; transcript_id "KOF00810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 216568 216570 . + 0 gene_id "W7K_03635"; transcript_id "KOF00810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 216744 218987 . + . gene_id "W7K_03640"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 216744 218987 . + . gene_id "W7K_03640"; transcript_id "KOF00811"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 216744 218987 . + . gene_id "W7K_03640"; transcript_id "KOF00811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00811-1"; +contig42 ena CDS 216744 218984 . + 0 gene_id "W7K_03640"; transcript_id "KOF00811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00811"; +contig42 ena start_codon 216744 216746 . + 0 gene_id "W7K_03640"; transcript_id "KOF00811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 218985 218987 . + 0 gene_id "W7K_03640"; transcript_id "KOF00811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 218987 220579 . + . gene_id "W7K_03645"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 218987 220579 . + . gene_id "W7K_03645"; transcript_id "KOF00812"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 218987 220579 . + . gene_id "W7K_03645"; transcript_id "KOF00812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00812-1"; +contig42 ena CDS 218987 220576 . + 0 gene_id "W7K_03645"; transcript_id "KOF00812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00812"; +contig42 ena start_codon 218987 218989 . + 0 gene_id "W7K_03645"; transcript_id "KOF00812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 220577 220579 . + 0 gene_id "W7K_03645"; transcript_id "KOF00812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 220754 220966 . + . gene_id "W7K_03650"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 220754 220966 . + . gene_id "W7K_03650"; transcript_id "KOF00813"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 220754 220966 . + . gene_id "W7K_03650"; transcript_id "KOF00813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00813-1"; +contig42 ena CDS 220754 220963 . + 0 gene_id "W7K_03650"; transcript_id "KOF00813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00813"; +contig42 ena start_codon 220754 220756 . + 0 gene_id "W7K_03650"; transcript_id "KOF00813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 220964 220966 . + 0 gene_id "W7K_03650"; transcript_id "KOF00813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 220963 221220 . + . gene_id "W7K_03655"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 220963 221220 . + . gene_id "W7K_03655"; transcript_id "KOF00814"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 220963 221220 . + . gene_id "W7K_03655"; transcript_id "KOF00814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00814-1"; +contig42 ena CDS 220963 221217 . + 0 gene_id "W7K_03655"; transcript_id "KOF00814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00814"; +contig42 ena start_codon 220963 220965 . + 0 gene_id "W7K_03655"; transcript_id "KOF00814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 221218 221220 . + 0 gene_id "W7K_03655"; transcript_id "KOF00814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 221382 222818 . - . gene_id "W7K_03660"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 221382 222818 . - . gene_id "W7K_03660"; transcript_id "KOF00815"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 221382 222818 . - . gene_id "W7K_03660"; transcript_id "KOF00815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00815-1"; +contig42 ena CDS 221385 222818 . - 0 gene_id "W7K_03660"; transcript_id "KOF00815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00815"; +contig42 ena start_codon 222816 222818 . - 0 gene_id "W7K_03660"; transcript_id "KOF00815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 221382 221384 . - 0 gene_id "W7K_03660"; transcript_id "KOF00815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 222882 224099 . - . gene_id "W7K_03665"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 222882 224099 . - . gene_id "W7K_03665"; transcript_id "KOF00816"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 222882 224099 . - . gene_id "W7K_03665"; transcript_id "KOF00816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00816-1"; +contig42 ena CDS 222885 224099 . - 0 gene_id "W7K_03665"; transcript_id "KOF00816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00816"; +contig42 ena start_codon 224097 224099 . - 0 gene_id "W7K_03665"; transcript_id "KOF00816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 222882 222884 . - 0 gene_id "W7K_03665"; transcript_id "KOF00816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 224140 226971 . - . gene_id "W7K_03670"; gene_name "sucA"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 224140 226971 . - . gene_id "W7K_03670"; transcript_id "KOF00817"; gene_name "sucA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 224140 226971 . - . gene_id "W7K_03670"; transcript_id "KOF00817"; exon_number "1"; gene_name "sucA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00817-1"; +contig42 ena CDS 224143 226971 . - 0 gene_id "W7K_03670"; transcript_id "KOF00817"; exon_number "1"; gene_name "sucA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00817"; +contig42 ena start_codon 226969 226971 . - 0 gene_id "W7K_03670"; transcript_id "KOF00817"; exon_number "1"; gene_name "sucA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 224140 224142 . - 0 gene_id "W7K_03670"; transcript_id "KOF00817"; exon_number "1"; gene_name "sucA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 227158 228054 . - . gene_id "W7K_03675"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 227158 228054 . - . gene_id "W7K_03675"; transcript_id "KOF00818"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 227158 228054 . - . gene_id "W7K_03675"; transcript_id "KOF00818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00818-1"; +contig42 ena CDS 227161 228054 . - 0 gene_id "W7K_03675"; transcript_id "KOF00818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00818"; +contig42 ena start_codon 228052 228054 . - 0 gene_id "W7K_03675"; transcript_id "KOF00818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 227158 227160 . - 0 gene_id "W7K_03675"; transcript_id "KOF00818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena gene 228064 229479 . - . gene_id "W7K_03680"; gene_source "ena"; gene_biotype "protein_coding"; +contig42 ena transcript 228064 229479 . - . gene_id "W7K_03680"; transcript_id "KOF00819"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena exon 228064 229479 . - . gene_id "W7K_03680"; transcript_id "KOF00819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00819-1"; +contig42 ena CDS 228067 229479 . - 0 gene_id "W7K_03680"; transcript_id "KOF00819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00819"; +contig42 ena start_codon 229477 229479 . - 0 gene_id "W7K_03680"; transcript_id "KOF00819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig42 ena stop_codon 228064 228066 . - 0 gene_id "W7K_03680"; transcript_id "KOF00819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 141 677 . + . gene_id "W7K_07450"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 141 677 . + . gene_id "W7K_07450"; transcript_id "KOE99854"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 141 677 . + . gene_id "W7K_07450"; transcript_id "KOE99854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99854-1"; +contig33 ena CDS 141 674 . + 0 gene_id "W7K_07450"; transcript_id "KOE99854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99854"; +contig33 ena start_codon 141 143 . + 0 gene_id "W7K_07450"; transcript_id "KOE99854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 675 677 . + 0 gene_id "W7K_07450"; transcript_id "KOE99854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 756 2132 . - . gene_id "W7K_07455"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 756 2132 . - . gene_id "W7K_07455"; transcript_id "KOE99665"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 756 2132 . - . gene_id "W7K_07455"; transcript_id "KOE99665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99665-1"; +contig33 ena CDS 759 2132 . - 0 gene_id "W7K_07455"; transcript_id "KOE99665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99665"; +contig33 ena start_codon 2130 2132 . - 0 gene_id "W7K_07455"; transcript_id "KOE99665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 756 758 . - 0 gene_id "W7K_07455"; transcript_id "KOE99665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 2218 3297 . - . gene_id "W7K_07460"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 2218 3297 . - . gene_id "W7K_07460"; transcript_id "KOE99666"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 2218 3297 . - . gene_id "W7K_07460"; transcript_id "KOE99666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99666-1"; +contig33 ena CDS 2221 3297 . - 0 gene_id "W7K_07460"; transcript_id "KOE99666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99666"; +contig33 ena start_codon 3295 3297 . - 0 gene_id "W7K_07460"; transcript_id "KOE99666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 2218 2220 . - 0 gene_id "W7K_07460"; transcript_id "KOE99666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 3400 4275 . + . gene_id "W7K_07465"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 3400 4275 . + . gene_id "W7K_07465"; transcript_id "KOE99667"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 3400 4275 . + . gene_id "W7K_07465"; transcript_id "KOE99667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99667-1"; +contig33 ena CDS 3400 4272 . + 0 gene_id "W7K_07465"; transcript_id "KOE99667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99667"; +contig33 ena start_codon 3400 3402 . + 0 gene_id "W7K_07465"; transcript_id "KOE99667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 4273 4275 . + 0 gene_id "W7K_07465"; transcript_id "KOE99667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 4622 6505 . + . gene_id "W7K_07470"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 4622 6505 . + . gene_id "W7K_07470"; transcript_id "KOE99855"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 4622 6505 . + . gene_id "W7K_07470"; transcript_id "KOE99855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99855-1"; +contig33 ena CDS 4622 6502 . + 0 gene_id "W7K_07470"; transcript_id "KOE99855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99855"; +contig33 ena start_codon 4622 4624 . + 0 gene_id "W7K_07470"; transcript_id "KOE99855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 6503 6505 . + 0 gene_id "W7K_07470"; transcript_id "KOE99855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 6658 7119 . - . gene_id "W7K_07475"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 6658 7119 . - . gene_id "W7K_07475"; transcript_id "KOE99668"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 6658 7119 . - . gene_id "W7K_07475"; transcript_id "KOE99668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99668-1"; +contig33 ena CDS 6661 7119 . - 0 gene_id "W7K_07475"; transcript_id "KOE99668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99668"; +contig33 ena start_codon 7117 7119 . - 0 gene_id "W7K_07475"; transcript_id "KOE99668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 6658 6660 . - 0 gene_id "W7K_07475"; transcript_id "KOE99668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 7129 7518 . - . gene_id "W7K_07480"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 7129 7518 . - . gene_id "W7K_07480"; transcript_id "KOE99669"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 7129 7518 . - . gene_id "W7K_07480"; transcript_id "KOE99669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99669-1"; +contig33 ena CDS 7132 7518 . - 0 gene_id "W7K_07480"; transcript_id "KOE99669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99669"; +contig33 ena start_codon 7516 7518 . - 0 gene_id "W7K_07480"; transcript_id "KOE99669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 7129 7131 . - 0 gene_id "W7K_07480"; transcript_id "KOE99669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 7725 8876 . + . gene_id "W7K_07485"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 7725 8876 . + . gene_id "W7K_07485"; transcript_id "KOE99670"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 7725 8876 . + . gene_id "W7K_07485"; transcript_id "KOE99670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99670-1"; +contig33 ena CDS 7725 8873 . + 0 gene_id "W7K_07485"; transcript_id "KOE99670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99670"; +contig33 ena start_codon 7725 7727 . + 0 gene_id "W7K_07485"; transcript_id "KOE99670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 8874 8876 . + 0 gene_id "W7K_07485"; transcript_id "KOE99670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 8873 12394 . + . gene_id "W7K_07490"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 8873 12394 . + . gene_id "W7K_07490"; transcript_id "KOE99671"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 8873 12394 . + . gene_id "W7K_07490"; transcript_id "KOE99671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99671-1"; +contig33 ena CDS 8873 12391 . + 0 gene_id "W7K_07490"; transcript_id "KOE99671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99671"; +contig33 ena start_codon 8873 8875 . + 0 gene_id "W7K_07490"; transcript_id "KOE99671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 12392 12394 . + 0 gene_id "W7K_07490"; transcript_id "KOE99671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 12391 15471 . + . gene_id "W7K_07495"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 12391 15471 . + . gene_id "W7K_07495"; transcript_id "KOE99672"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 12391 15471 . + . gene_id "W7K_07495"; transcript_id "KOE99672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99672-1"; +contig33 ena CDS 12391 15468 . + 0 gene_id "W7K_07495"; transcript_id "KOE99672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99672"; +contig33 ena start_codon 12391 12393 . + 0 gene_id "W7K_07495"; transcript_id "KOE99672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 15469 15471 . + 0 gene_id "W7K_07495"; transcript_id "KOE99672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 15672 16904 . - . gene_id "W7K_07500"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 15672 16904 . - . gene_id "W7K_07500"; transcript_id "KOE99673"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 15672 16904 . - . gene_id "W7K_07500"; transcript_id "KOE99673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99673-1"; +contig33 ena CDS 15675 16904 . - 0 gene_id "W7K_07500"; transcript_id "KOE99673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99673"; +contig33 ena start_codon 16902 16904 . - 0 gene_id "W7K_07500"; transcript_id "KOE99673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 15672 15674 . - 0 gene_id "W7K_07500"; transcript_id "KOE99673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 16897 17427 . - . gene_id "W7K_07505"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 16897 17427 . - . gene_id "W7K_07505"; transcript_id "KOE99674"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 16897 17427 . - . gene_id "W7K_07505"; transcript_id "KOE99674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99674-1"; +contig33 ena CDS 16900 17427 . - 0 gene_id "W7K_07505"; transcript_id "KOE99674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99674"; +contig33 ena start_codon 17425 17427 . - 0 gene_id "W7K_07505"; transcript_id "KOE99674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 16897 16899 . - 0 gene_id "W7K_07505"; transcript_id "KOE99674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 17441 18328 . - . gene_id "W7K_07510"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 17441 18328 . - . gene_id "W7K_07510"; transcript_id "KOE99675"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 17441 18328 . - . gene_id "W7K_07510"; transcript_id "KOE99675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99675-1"; +contig33 ena CDS 17444 18328 . - 0 gene_id "W7K_07510"; transcript_id "KOE99675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99675"; +contig33 ena start_codon 18326 18328 . - 0 gene_id "W7K_07510"; transcript_id "KOE99675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 17441 17443 . - 0 gene_id "W7K_07510"; transcript_id "KOE99675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 18494 19531 . - . gene_id "W7K_07515"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 18494 19531 . - . gene_id "W7K_07515"; transcript_id "KOE99676"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 18494 19531 . - . gene_id "W7K_07515"; transcript_id "KOE99676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99676-1"; +contig33 ena CDS 18497 19531 . - 0 gene_id "W7K_07515"; transcript_id "KOE99676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99676"; +contig33 ena start_codon 19529 19531 . - 0 gene_id "W7K_07515"; transcript_id "KOE99676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 18494 18496 . - 0 gene_id "W7K_07515"; transcript_id "KOE99676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 19571 19900 . - . gene_id "W7K_07520"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 19571 19900 . - . gene_id "W7K_07520"; transcript_id "KOE99677"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 19571 19900 . - . gene_id "W7K_07520"; transcript_id "KOE99677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99677-1"; +contig33 ena CDS 19574 19900 . - 0 gene_id "W7K_07520"; transcript_id "KOE99677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99677"; +contig33 ena start_codon 19898 19900 . - 0 gene_id "W7K_07520"; transcript_id "KOE99677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 19571 19573 . - 0 gene_id "W7K_07520"; transcript_id "KOE99677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 20046 20171 . - . gene_id "W7K_07525"; gene_name "rpmJ"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 20046 20171 . - . gene_id "W7K_07525"; transcript_id "KOE99678"; gene_name "rpmJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 20046 20171 . - . gene_id "W7K_07525"; transcript_id "KOE99678"; exon_number "1"; gene_name "rpmJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99678-1"; +contig33 ena CDS 20049 20171 . - 0 gene_id "W7K_07525"; transcript_id "KOE99678"; exon_number "1"; gene_name "rpmJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99678"; +contig33 ena start_codon 20169 20171 . - 0 gene_id "W7K_07525"; transcript_id "KOE99678"; exon_number "1"; gene_name "rpmJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 20046 20048 . - 0 gene_id "W7K_07525"; transcript_id "KOE99678"; exon_number "1"; gene_name "rpmJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 20369 21046 . + . gene_id "W7K_07530"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 20369 21046 . + . gene_id "W7K_07530"; transcript_id "KOE99679"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 20369 21046 . + . gene_id "W7K_07530"; transcript_id "KOE99679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99679-1"; +contig33 ena CDS 20369 21043 . + 0 gene_id "W7K_07530"; transcript_id "KOE99679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99679"; +contig33 ena start_codon 20369 20371 . + 0 gene_id "W7K_07530"; transcript_id "KOE99679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 21044 21046 . + 0 gene_id "W7K_07530"; transcript_id "KOE99679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 21245 22930 . + . gene_id "W7K_07535"; gene_name "rpsA"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 21245 22930 . + . gene_id "W7K_07535"; transcript_id "KOE99680"; gene_name "rpsA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 21245 22930 . + . gene_id "W7K_07535"; transcript_id "KOE99680"; exon_number "1"; gene_name "rpsA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99680-1"; +contig33 ena CDS 21245 22927 . + 0 gene_id "W7K_07535"; transcript_id "KOE99680"; exon_number "1"; gene_name "rpsA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99680"; +contig33 ena start_codon 21245 21247 . + 0 gene_id "W7K_07535"; transcript_id "KOE99680"; exon_number "1"; gene_name "rpsA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 22928 22930 . + 0 gene_id "W7K_07535"; transcript_id "KOE99680"; exon_number "1"; gene_name "rpsA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 23018 23323 . + . gene_id "W7K_07540"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 23018 23323 . + . gene_id "W7K_07540"; transcript_id "KOE99681"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 23018 23323 . + . gene_id "W7K_07540"; transcript_id "KOE99681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99681-1"; +contig33 ena CDS 23018 23320 . + 0 gene_id "W7K_07540"; transcript_id "KOE99681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99681"; +contig33 ena start_codon 23018 23020 . + 0 gene_id "W7K_07540"; transcript_id "KOE99681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 23321 23323 . + 0 gene_id "W7K_07540"; transcript_id "KOE99681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 23401 23685 . + . gene_id "W7K_07545"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 23401 23685 . + . gene_id "W7K_07545"; transcript_id "KOE99682"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 23401 23685 . + . gene_id "W7K_07545"; transcript_id "KOE99682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99682-1"; +contig33 ena CDS 23401 23682 . + 0 gene_id "W7K_07545"; transcript_id "KOE99682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99682"; +contig33 ena start_codon 23401 23403 . + 0 gene_id "W7K_07545"; transcript_id "KOE99682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 23683 23685 . + 0 gene_id "W7K_07545"; transcript_id "KOE99682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 23692 24870 . + . gene_id "W7K_07550"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 23692 24870 . + . gene_id "W7K_07550"; transcript_id "KOE99683"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 23692 24870 . + . gene_id "W7K_07550"; transcript_id "KOE99683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99683-1"; +contig33 ena CDS 23692 24867 . + 0 gene_id "W7K_07550"; transcript_id "KOE99683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99683"; +contig33 ena start_codon 23692 23694 . + 0 gene_id "W7K_07550"; transcript_id "KOE99683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 24868 24870 . + 0 gene_id "W7K_07550"; transcript_id "KOE99683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 24874 25863 . + . gene_id "W7K_07555"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 24874 25863 . + . gene_id "W7K_07555"; transcript_id "KOE99684"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 24874 25863 . + . gene_id "W7K_07555"; transcript_id "KOE99684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99684-1"; +contig33 ena CDS 24874 25860 . + 0 gene_id "W7K_07555"; transcript_id "KOE99684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99684"; +contig33 ena start_codon 24874 24876 . + 0 gene_id "W7K_07555"; transcript_id "KOE99684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 25861 25863 . + 0 gene_id "W7K_07555"; transcript_id "KOE99684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 25867 27780 . + . gene_id "W7K_07560"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 25867 27780 . + . gene_id "W7K_07560"; transcript_id "KOE99685"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 25867 27780 . + . gene_id "W7K_07560"; transcript_id "KOE99685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99685-1"; +contig33 ena CDS 25867 27777 . + 0 gene_id "W7K_07560"; transcript_id "KOE99685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99685"; +contig33 ena start_codon 25867 25869 . + 0 gene_id "W7K_07560"; transcript_id "KOE99685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 27778 27780 . + 0 gene_id "W7K_07560"; transcript_id "KOE99685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 27777 28655 . + . gene_id "W7K_07565"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 27777 28655 . + . gene_id "W7K_07565"; transcript_id "KOE99686"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 27777 28655 . + . gene_id "W7K_07565"; transcript_id "KOE99686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99686-1"; +contig33 ena CDS 27777 28652 . + 0 gene_id "W7K_07565"; transcript_id "KOE99686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99686"; +contig33 ena start_codon 27777 27779 . + 0 gene_id "W7K_07565"; transcript_id "KOE99686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 28653 28655 . + 0 gene_id "W7K_07565"; transcript_id "KOE99686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 29215 30423 . - . gene_id "W7K_07570"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 29215 30423 . - . gene_id "W7K_07570"; transcript_id "KOE99687"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 29215 30423 . - . gene_id "W7K_07570"; transcript_id "KOE99687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99687-1"; +contig33 ena CDS 29218 30423 . - 0 gene_id "W7K_07570"; transcript_id "KOE99687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99687"; +contig33 ena start_codon 30421 30423 . - 0 gene_id "W7K_07570"; transcript_id "KOE99687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 29215 29217 . - 0 gene_id "W7K_07570"; transcript_id "KOE99687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 30533 32905 . - . gene_id "W7K_07575"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 30533 32905 . - . gene_id "W7K_07575"; transcript_id "KOE99688"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 30533 32905 . - . gene_id "W7K_07575"; transcript_id "KOE99688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99688-1"; +contig33 ena CDS 30536 32905 . - 0 gene_id "W7K_07575"; transcript_id "KOE99688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99688"; +contig33 ena start_codon 32903 32905 . - 0 gene_id "W7K_07575"; transcript_id "KOE99688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 30533 30535 . - 0 gene_id "W7K_07575"; transcript_id "KOE99688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 32945 33598 . - . gene_id "W7K_07580"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 32945 33598 . - . gene_id "W7K_07580"; transcript_id "KOE99689"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 32945 33598 . - . gene_id "W7K_07580"; transcript_id "KOE99689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99689-1"; +contig33 ena CDS 32948 33598 . - 0 gene_id "W7K_07580"; transcript_id "KOE99689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99689"; +contig33 ena start_codon 33596 33598 . - 0 gene_id "W7K_07580"; transcript_id "KOE99689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 32945 32947 . - 0 gene_id "W7K_07580"; transcript_id "KOE99689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 33944 34369 . + . gene_id "W7K_07585"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 33944 34369 . + . gene_id "W7K_07585"; transcript_id "KOE99690"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 33944 34369 . + . gene_id "W7K_07585"; transcript_id "KOE99690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99690-1"; +contig33 ena CDS 33944 34366 . + 0 gene_id "W7K_07585"; transcript_id "KOE99690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99690"; +contig33 ena start_codon 33944 33946 . + 0 gene_id "W7K_07585"; transcript_id "KOE99690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 34367 34369 . + 0 gene_id "W7K_07585"; transcript_id "KOE99690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 34380 35585 . + . gene_id "W7K_07590"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 34380 35585 . + . gene_id "W7K_07590"; transcript_id "KOE99691"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 34380 35585 . + . gene_id "W7K_07590"; transcript_id "KOE99691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99691-1"; +contig33 ena CDS 34380 35582 . + 0 gene_id "W7K_07590"; transcript_id "KOE99691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99691"; +contig33 ena start_codon 34380 34382 . + 0 gene_id "W7K_07590"; transcript_id "KOE99691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 35583 35585 . + 0 gene_id "W7K_07590"; transcript_id "KOE99691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 35572 36357 . + . gene_id "W7K_07595"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 35572 36357 . + . gene_id "W7K_07595"; transcript_id "KOE99692"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 35572 36357 . + . gene_id "W7K_07595"; transcript_id "KOE99692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99692-1"; +contig33 ena CDS 35572 36354 . + 0 gene_id "W7K_07595"; transcript_id "KOE99692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99692"; +contig33 ena start_codon 35572 35574 . + 0 gene_id "W7K_07595"; transcript_id "KOE99692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 36355 36357 . + 0 gene_id "W7K_07595"; transcript_id "KOE99692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 36376 37248 . + . gene_id "W7K_07600"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 36376 37248 . + . gene_id "W7K_07600"; transcript_id "KOE99693"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 36376 37248 . + . gene_id "W7K_07600"; transcript_id "KOE99693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99693-1"; +contig33 ena CDS 36376 37245 . + 0 gene_id "W7K_07600"; transcript_id "KOE99693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99693"; +contig33 ena start_codon 36376 36378 . + 0 gene_id "W7K_07600"; transcript_id "KOE99693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 37246 37248 . + 0 gene_id "W7K_07600"; transcript_id "KOE99693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 37314 37952 . + . gene_id "W7K_07605"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 37314 37952 . + . gene_id "W7K_07605"; transcript_id "KOE99694"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 37314 37952 . + . gene_id "W7K_07605"; transcript_id "KOE99694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99694-1"; +contig33 ena CDS 37314 37949 . + 0 gene_id "W7K_07605"; transcript_id "KOE99694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99694"; +contig33 ena start_codon 37314 37316 . + 0 gene_id "W7K_07605"; transcript_id "KOE99694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 37950 37952 . + 0 gene_id "W7K_07605"; transcript_id "KOE99694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 37952 39160 . + . gene_id "W7K_07610"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 37952 39160 . + . gene_id "W7K_07610"; transcript_id "KOE99695"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 37952 39160 . + . gene_id "W7K_07610"; transcript_id "KOE99695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99695-1"; +contig33 ena CDS 37952 39157 . + 0 gene_id "W7K_07610"; transcript_id "KOE99695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99695"; +contig33 ena start_codon 37952 37954 . + 0 gene_id "W7K_07610"; transcript_id "KOE99695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 39158 39160 . + 0 gene_id "W7K_07610"; transcript_id "KOE99695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 39178 40575 . + . gene_id "W7K_07615"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 39178 40575 . + . gene_id "W7K_07615"; transcript_id "KOE99696"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 39178 40575 . + . gene_id "W7K_07615"; transcript_id "KOE99696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99696-1"; +contig33 ena CDS 39178 40572 . + 0 gene_id "W7K_07615"; transcript_id "KOE99696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99696"; +contig33 ena start_codon 39178 39180 . + 0 gene_id "W7K_07615"; transcript_id "KOE99696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 40573 40575 . + 0 gene_id "W7K_07615"; transcript_id "KOE99696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 40637 41662 . - . gene_id "W7K_07620"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 40637 41662 . - . gene_id "W7K_07620"; transcript_id "KOE99856"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 40637 41662 . - . gene_id "W7K_07620"; transcript_id "KOE99856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99856-1"; +contig33 ena CDS 40640 41662 . - 0 gene_id "W7K_07620"; transcript_id "KOE99856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99856"; +contig33 ena start_codon 41660 41662 . - 0 gene_id "W7K_07620"; transcript_id "KOE99856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 40637 40639 . - 0 gene_id "W7K_07620"; transcript_id "KOE99856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 41779 42702 . + . gene_id "W7K_07625"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 41779 42702 . + . gene_id "W7K_07625"; transcript_id "KOE99697"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 41779 42702 . + . gene_id "W7K_07625"; transcript_id "KOE99697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99697-1"; +contig33 ena CDS 41779 42699 . + 0 gene_id "W7K_07625"; transcript_id "KOE99697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99697"; +contig33 ena start_codon 41779 41781 . + 0 gene_id "W7K_07625"; transcript_id "KOE99697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 42700 42702 . + 0 gene_id "W7K_07625"; transcript_id "KOE99697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 42857 43993 . + . gene_id "W7K_07630"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 42857 43993 . + . gene_id "W7K_07630"; transcript_id "KOE99698"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 42857 43993 . + . gene_id "W7K_07630"; transcript_id "KOE99698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99698-1"; +contig33 ena CDS 42857 43990 . + 0 gene_id "W7K_07630"; transcript_id "KOE99698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99698"; +contig33 ena start_codon 42857 42859 . + 0 gene_id "W7K_07630"; transcript_id "KOE99698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 43991 43993 . + 0 gene_id "W7K_07630"; transcript_id "KOE99698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 44317 46149 . + . gene_id "W7K_07635"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 44317 46149 . + . gene_id "W7K_07635"; transcript_id "KOE99699"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 44317 46149 . + . gene_id "W7K_07635"; transcript_id "KOE99699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99699-1"; +contig33 ena CDS 44317 46146 . + 0 gene_id "W7K_07635"; transcript_id "KOE99699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99699"; +contig33 ena start_codon 44317 44319 . + 0 gene_id "W7K_07635"; transcript_id "KOE99699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 46147 46149 . + 0 gene_id "W7K_07635"; transcript_id "KOE99699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 46318 47193 . + . gene_id "W7K_07640"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 46318 47193 . + . gene_id "W7K_07640"; transcript_id "KOE99700"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 46318 47193 . + . gene_id "W7K_07640"; transcript_id "KOE99700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99700-1"; +contig33 ena CDS 46318 47190 . + 0 gene_id "W7K_07640"; transcript_id "KOE99700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99700"; +contig33 ena start_codon 46318 46320 . + 0 gene_id "W7K_07640"; transcript_id "KOE99700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 47191 47193 . + 0 gene_id "W7K_07640"; transcript_id "KOE99700"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 47521 48978 . + . gene_id "W7K_07645"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 47521 48978 . + . gene_id "W7K_07645"; transcript_id "KOE99857"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 47521 48978 . + . gene_id "W7K_07645"; transcript_id "KOE99857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99857-1"; +contig33 ena CDS 47521 48975 . + 0 gene_id "W7K_07645"; transcript_id "KOE99857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99857"; +contig33 ena start_codon 47521 47523 . + 0 gene_id "W7K_07645"; transcript_id "KOE99857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 48976 48978 . + 0 gene_id "W7K_07645"; transcript_id "KOE99857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 49086 49565 . + . gene_id "W7K_07650"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 49086 49565 . + . gene_id "W7K_07650"; transcript_id "KOE99701"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 49086 49565 . + . gene_id "W7K_07650"; transcript_id "KOE99701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99701-1"; +contig33 ena CDS 49086 49562 . + 0 gene_id "W7K_07650"; transcript_id "KOE99701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99701"; +contig33 ena start_codon 49086 49088 . + 0 gene_id "W7K_07650"; transcript_id "KOE99701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 49563 49565 . + 0 gene_id "W7K_07650"; transcript_id "KOE99701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 49562 51127 . + . gene_id "W7K_07655"; gene_name "guaA"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 49562 51127 . + . gene_id "W7K_07655"; transcript_id "KOE99702"; gene_name "guaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "guaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 49562 51127 . + . gene_id "W7K_07655"; transcript_id "KOE99702"; exon_number "1"; gene_name "guaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "guaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99702-1"; +contig33 ena CDS 49562 51124 . + 0 gene_id "W7K_07655"; transcript_id "KOE99702"; exon_number "1"; gene_name "guaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "guaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99702"; +contig33 ena start_codon 49562 49564 . + 0 gene_id "W7K_07655"; transcript_id "KOE99702"; exon_number "1"; gene_name "guaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "guaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 51125 51127 . + 0 gene_id "W7K_07655"; transcript_id "KOE99702"; exon_number "1"; gene_name "guaA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "guaA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 51272 53557 . + . gene_id "W7K_07660"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 51272 53557 . + . gene_id "W7K_07660"; transcript_id "KOE99703"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 51272 53557 . + . gene_id "W7K_07660"; transcript_id "KOE99703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99703-1"; +contig33 ena CDS 51272 53554 . + 0 gene_id "W7K_07660"; transcript_id "KOE99703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99703"; +contig33 ena start_codon 51272 51274 . + 0 gene_id "W7K_07660"; transcript_id "KOE99703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 53555 53557 . + 0 gene_id "W7K_07660"; transcript_id "KOE99703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 56878 57237 . - . gene_id "W7K_07665"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 56878 57237 . - . gene_id "W7K_07665"; transcript_id "KOE99858"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 56878 57237 . - . gene_id "W7K_07665"; transcript_id "KOE99858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99858-1"; +contig33 ena CDS 56881 57237 . - 0 gene_id "W7K_07665"; transcript_id "KOE99858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99858"; +contig33 ena start_codon 57235 57237 . - 0 gene_id "W7K_07665"; transcript_id "KOE99858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 56878 56880 . - 0 gene_id "W7K_07665"; transcript_id "KOE99858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 57790 58707 . - . gene_id "W7K_07670"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 57790 58707 . - . gene_id "W7K_07670"; transcript_id "KOE99704"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 57790 58707 . - . gene_id "W7K_07670"; transcript_id "KOE99704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99704-1"; +contig33 ena CDS 57793 58707 . - 0 gene_id "W7K_07670"; transcript_id "KOE99704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99704"; +contig33 ena start_codon 58705 58707 . - 0 gene_id "W7K_07670"; transcript_id "KOE99704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 57790 57792 . - 0 gene_id "W7K_07670"; transcript_id "KOE99704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 58804 59643 . + . gene_id "W7K_07675"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 58804 59643 . + . gene_id "W7K_07675"; transcript_id "KOE99705"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 58804 59643 . + . gene_id "W7K_07675"; transcript_id "KOE99705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99705-1"; +contig33 ena CDS 58804 59640 . + 0 gene_id "W7K_07675"; transcript_id "KOE99705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99705"; +contig33 ena start_codon 58804 58806 . + 0 gene_id "W7K_07675"; transcript_id "KOE99705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 59641 59643 . + 0 gene_id "W7K_07675"; transcript_id "KOE99705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 59741 60478 . + . gene_id "W7K_07680"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 59741 60478 . + . gene_id "W7K_07680"; transcript_id "KOE99706"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 59741 60478 . + . gene_id "W7K_07680"; transcript_id "KOE99706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99706-1"; +contig33 ena CDS 59741 60475 . + 0 gene_id "W7K_07680"; transcript_id "KOE99706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99706"; +contig33 ena start_codon 59741 59743 . + 0 gene_id "W7K_07680"; transcript_id "KOE99706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 60476 60478 . + 0 gene_id "W7K_07680"; transcript_id "KOE99706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 60726 61037 . + . gene_id "W7K_07685"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 60726 61037 . + . gene_id "W7K_07685"; transcript_id "KOE99859"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 60726 61037 . + . gene_id "W7K_07685"; transcript_id "KOE99859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99859-1"; +contig33 ena CDS 60726 61034 . + 0 gene_id "W7K_07685"; transcript_id "KOE99859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99859"; +contig33 ena start_codon 60726 60728 . + 0 gene_id "W7K_07685"; transcript_id "KOE99859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 61035 61037 . + 0 gene_id "W7K_07685"; transcript_id "KOE99859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 61123 61905 . + . gene_id "W7K_07690"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 61123 61905 . + . gene_id "W7K_07690"; transcript_id "KOE99707"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 61123 61905 . + . gene_id "W7K_07690"; transcript_id "KOE99707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99707-1"; +contig33 ena CDS 61123 61902 . + 0 gene_id "W7K_07690"; transcript_id "KOE99707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99707"; +contig33 ena start_codon 61123 61125 . + 0 gene_id "W7K_07690"; transcript_id "KOE99707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 61903 61905 . + 0 gene_id "W7K_07690"; transcript_id "KOE99707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 61902 62273 . - . gene_id "W7K_07695"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 61902 62273 . - . gene_id "W7K_07695"; transcript_id "KOE99708"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 61902 62273 . - . gene_id "W7K_07695"; transcript_id "KOE99708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99708-1"; +contig33 ena CDS 61905 62273 . - 0 gene_id "W7K_07695"; transcript_id "KOE99708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99708"; +contig33 ena start_codon 62271 62273 . - 0 gene_id "W7K_07695"; transcript_id "KOE99708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 61902 61904 . - 0 gene_id "W7K_07695"; transcript_id "KOE99708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 62266 63132 . - . gene_id "W7K_07700"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 62266 63132 . - . gene_id "W7K_07700"; transcript_id "KOE99709"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 62266 63132 . - . gene_id "W7K_07700"; transcript_id "KOE99709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99709-1"; +contig33 ena CDS 62269 63132 . - 0 gene_id "W7K_07700"; transcript_id "KOE99709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99709"; +contig33 ena start_codon 63130 63132 . - 0 gene_id "W7K_07700"; transcript_id "KOE99709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 62266 62268 . - 0 gene_id "W7K_07700"; transcript_id "KOE99709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 63129 63548 . - . gene_id "W7K_07705"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 63129 63548 . - . gene_id "W7K_07705"; transcript_id "KOE99710"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 63129 63548 . - . gene_id "W7K_07705"; transcript_id "KOE99710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99710-1"; +contig33 ena CDS 63132 63548 . - 0 gene_id "W7K_07705"; transcript_id "KOE99710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99710"; +contig33 ena start_codon 63546 63548 . - 0 gene_id "W7K_07705"; transcript_id "KOE99710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 63129 63131 . - 0 gene_id "W7K_07705"; transcript_id "KOE99710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 63683 64141 . - . gene_id "W7K_07710"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 63683 64141 . - . gene_id "W7K_07710"; transcript_id "KOE99711"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 63683 64141 . - . gene_id "W7K_07710"; transcript_id "KOE99711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99711-1"; +contig33 ena CDS 63686 64141 . - 0 gene_id "W7K_07710"; transcript_id "KOE99711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99711"; +contig33 ena start_codon 64139 64141 . - 0 gene_id "W7K_07710"; transcript_id "KOE99711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 63683 63685 . - 0 gene_id "W7K_07710"; transcript_id "KOE99711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 64144 64458 . - . gene_id "W7K_07715"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 64144 64458 . - . gene_id "W7K_07715"; transcript_id "KOE99712"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 64144 64458 . - . gene_id "W7K_07715"; transcript_id "KOE99712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99712-1"; +contig33 ena CDS 64147 64458 . - 0 gene_id "W7K_07715"; transcript_id "KOE99712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99712"; +contig33 ena start_codon 64456 64458 . - 0 gene_id "W7K_07715"; transcript_id "KOE99712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 64144 64146 . - 0 gene_id "W7K_07715"; transcript_id "KOE99712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 64470 64925 . - . gene_id "W7K_07720"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 64470 64925 . - . gene_id "W7K_07720"; transcript_id "KOE99713"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 64470 64925 . - . gene_id "W7K_07720"; transcript_id "KOE99713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99713-1"; +contig33 ena CDS 64473 64925 . - 0 gene_id "W7K_07720"; transcript_id "KOE99713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99713"; +contig33 ena start_codon 64923 64925 . - 0 gene_id "W7K_07720"; transcript_id "KOE99713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 64470 64472 . - 0 gene_id "W7K_07720"; transcript_id "KOE99713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 65089 65613 . + . gene_id "W7K_07725"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 65089 65613 . + . gene_id "W7K_07725"; transcript_id "KOE99714"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 65089 65613 . + . gene_id "W7K_07725"; transcript_id "KOE99714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99714-1"; +contig33 ena CDS 65089 65610 . + 0 gene_id "W7K_07725"; transcript_id "KOE99714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99714"; +contig33 ena start_codon 65089 65091 . + 0 gene_id "W7K_07725"; transcript_id "KOE99714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 65611 65613 . + 0 gene_id "W7K_07725"; transcript_id "KOE99714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 65755 67524 . + . gene_id "W7K_07730"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 65755 67524 . + . gene_id "W7K_07730"; transcript_id "KOE99715"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 65755 67524 . + . gene_id "W7K_07730"; transcript_id "KOE99715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99715-1"; +contig33 ena CDS 65755 67521 . + 0 gene_id "W7K_07730"; transcript_id "KOE99715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99715"; +contig33 ena start_codon 65755 65757 . + 0 gene_id "W7K_07730"; transcript_id "KOE99715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 67522 67524 . + 0 gene_id "W7K_07730"; transcript_id "KOE99715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 67611 68198 . + . gene_id "W7K_07735"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 67611 68198 . + . gene_id "W7K_07735"; transcript_id "KOE99716"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 67611 68198 . + . gene_id "W7K_07735"; transcript_id "KOE99716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99716-1"; +contig33 ena CDS 67611 68195 . + 0 gene_id "W7K_07735"; transcript_id "KOE99716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99716"; +contig33 ena start_codon 67611 67613 . + 0 gene_id "W7K_07735"; transcript_id "KOE99716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 68196 68198 . + 0 gene_id "W7K_07735"; transcript_id "KOE99716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 68290 68784 . + . gene_id "W7K_07740"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 68290 68784 . + . gene_id "W7K_07740"; transcript_id "KOE99717"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 68290 68784 . + . gene_id "W7K_07740"; transcript_id "KOE99717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99717-1"; +contig33 ena CDS 68290 68781 . + 0 gene_id "W7K_07740"; transcript_id "KOE99717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99717"; +contig33 ena start_codon 68290 68292 . + 0 gene_id "W7K_07740"; transcript_id "KOE99717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 68782 68784 . + 0 gene_id "W7K_07740"; transcript_id "KOE99717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 68819 69820 . - . gene_id "W7K_07745"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 68819 69820 . - . gene_id "W7K_07745"; transcript_id "KOE99718"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 68819 69820 . - . gene_id "W7K_07745"; transcript_id "KOE99718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99718-1"; +contig33 ena CDS 68822 69820 . - 0 gene_id "W7K_07745"; transcript_id "KOE99718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99718"; +contig33 ena start_codon 69818 69820 . - 0 gene_id "W7K_07745"; transcript_id "KOE99718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 68819 68821 . - 0 gene_id "W7K_07745"; transcript_id "KOE99718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 70159 72735 . + . gene_id "W7K_07750"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 70159 72735 . + . gene_id "W7K_07750"; transcript_id "KOE99719"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 70159 72735 . + . gene_id "W7K_07750"; transcript_id "KOE99719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99719-1"; +contig33 ena CDS 70159 72732 . + 0 gene_id "W7K_07750"; transcript_id "KOE99719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99719"; +contig33 ena start_codon 70159 70161 . + 0 gene_id "W7K_07750"; transcript_id "KOE99719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 72733 72735 . + 0 gene_id "W7K_07750"; transcript_id "KOE99719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 72852 73433 . + . gene_id "W7K_07755"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 72852 73433 . + . gene_id "W7K_07755"; transcript_id "KOE99720"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 72852 73433 . + . gene_id "W7K_07755"; transcript_id "KOE99720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99720-1"; +contig33 ena CDS 72852 73430 . + 0 gene_id "W7K_07755"; transcript_id "KOE99720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99720"; +contig33 ena start_codon 72852 72854 . + 0 gene_id "W7K_07755"; transcript_id "KOE99720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 73431 73433 . + 0 gene_id "W7K_07755"; transcript_id "KOE99720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 73591 73953 . + . gene_id "W7K_07760"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 73591 73953 . + . gene_id "W7K_07760"; transcript_id "KOE99721"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 73591 73953 . + . gene_id "W7K_07760"; transcript_id "KOE99721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99721-1"; +contig33 ena CDS 73591 73950 . + 0 gene_id "W7K_07760"; transcript_id "KOE99721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99721"; +contig33 ena start_codon 73591 73593 . + 0 gene_id "W7K_07760"; transcript_id "KOE99721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 73951 73953 . + 0 gene_id "W7K_07760"; transcript_id "KOE99721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 73968 74945 . + . gene_id "W7K_07765"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 73968 74945 . + . gene_id "W7K_07765"; transcript_id "KOE99722"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 73968 74945 . + . gene_id "W7K_07765"; transcript_id "KOE99722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99722-1"; +contig33 ena CDS 73968 74942 . + 0 gene_id "W7K_07765"; transcript_id "KOE99722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99722"; +contig33 ena start_codon 73968 73970 . + 0 gene_id "W7K_07765"; transcript_id "KOE99722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 74943 74945 . + 0 gene_id "W7K_07765"; transcript_id "KOE99722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 74964 76307 . + . gene_id "W7K_07770"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 74964 76307 . + . gene_id "W7K_07770"; transcript_id "KOE99723"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 74964 76307 . + . gene_id "W7K_07770"; transcript_id "KOE99723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99723-1"; +contig33 ena CDS 74964 76304 . + 0 gene_id "W7K_07770"; transcript_id "KOE99723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99723"; +contig33 ena start_codon 74964 74966 . + 0 gene_id "W7K_07770"; transcript_id "KOE99723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 76305 76307 . + 0 gene_id "W7K_07770"; transcript_id "KOE99723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 76372 77532 . + . gene_id "W7K_07775"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 76372 77532 . + . gene_id "W7K_07775"; transcript_id "KOE99860"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 76372 77532 . + . gene_id "W7K_07775"; transcript_id "KOE99860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99860-1"; +contig33 ena CDS 76372 77529 . + 0 gene_id "W7K_07775"; transcript_id "KOE99860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99860"; +contig33 ena start_codon 76372 76374 . + 0 gene_id "W7K_07775"; transcript_id "KOE99860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 77530 77532 . + 0 gene_id "W7K_07775"; transcript_id "KOE99860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 77529 78080 . + . gene_id "W7K_07780"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 77529 78080 . + . gene_id "W7K_07780"; transcript_id "KOE99724"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 77529 78080 . + . gene_id "W7K_07780"; transcript_id "KOE99724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99724-1"; +contig33 ena CDS 77529 78077 . + 0 gene_id "W7K_07780"; transcript_id "KOE99724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99724"; +contig33 ena start_codon 77529 77531 . + 0 gene_id "W7K_07780"; transcript_id "KOE99724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 78078 78080 . + 0 gene_id "W7K_07780"; transcript_id "KOE99724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 78281 79822 . + . gene_id "W7K_07785"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 78281 79822 . + . gene_id "W7K_07785"; transcript_id "KOE99861"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 78281 79822 . + . gene_id "W7K_07785"; transcript_id "KOE99861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99861-1"; +contig33 ena CDS 78281 79819 . + 0 gene_id "W7K_07785"; transcript_id "KOE99861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99861"; +contig33 ena start_codon 78281 78283 . + 0 gene_id "W7K_07785"; transcript_id "KOE99861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 79820 79822 . + 0 gene_id "W7K_07785"; transcript_id "KOE99861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 79839 80816 . + . gene_id "W7K_07790"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 79839 80816 . + . gene_id "W7K_07790"; transcript_id "KOE99725"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 79839 80816 . + . gene_id "W7K_07790"; transcript_id "KOE99725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99725-1"; +contig33 ena CDS 79839 80813 . + 0 gene_id "W7K_07790"; transcript_id "KOE99725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99725"; +contig33 ena start_codon 79839 79841 . + 0 gene_id "W7K_07790"; transcript_id "KOE99725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 80814 80816 . + 0 gene_id "W7K_07790"; transcript_id "KOE99725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 80876 83995 . - . gene_id "W7K_07795"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 80876 83995 . - . gene_id "W7K_07795"; transcript_id "KOE99726"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 80876 83995 . - . gene_id "W7K_07795"; transcript_id "KOE99726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99726-1"; +contig33 ena CDS 80879 83995 . - 0 gene_id "W7K_07795"; transcript_id "KOE99726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99726"; +contig33 ena start_codon 83993 83995 . - 0 gene_id "W7K_07795"; transcript_id "KOE99726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 80876 80878 . - 0 gene_id "W7K_07795"; transcript_id "KOE99726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 84161 85237 . - . gene_id "W7K_07800"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 84161 85237 . - . gene_id "W7K_07800"; transcript_id "KOE99727"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 84161 85237 . - . gene_id "W7K_07800"; transcript_id "KOE99727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99727-1"; +contig33 ena CDS 84164 85237 . - 0 gene_id "W7K_07800"; transcript_id "KOE99727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99727"; +contig33 ena start_codon 85235 85237 . - 0 gene_id "W7K_07800"; transcript_id "KOE99727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 84161 84163 . - 0 gene_id "W7K_07800"; transcript_id "KOE99727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 85342 85953 . + . gene_id "W7K_07805"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 85342 85953 . + . gene_id "W7K_07805"; transcript_id "KOE99728"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 85342 85953 . + . gene_id "W7K_07805"; transcript_id "KOE99728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99728-1"; +contig33 ena CDS 85342 85950 . + 0 gene_id "W7K_07805"; transcript_id "KOE99728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99728"; +contig33 ena start_codon 85342 85344 . + 0 gene_id "W7K_07805"; transcript_id "KOE99728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 85951 85953 . + 0 gene_id "W7K_07805"; transcript_id "KOE99728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 85950 87896 . - . gene_id "W7K_07810"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 85950 87896 . - . gene_id "W7K_07810"; transcript_id "KOE99729"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 85950 87896 . - . gene_id "W7K_07810"; transcript_id "KOE99729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99729-1"; +contig33 ena CDS 85953 87896 . - 0 gene_id "W7K_07810"; transcript_id "KOE99729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99729"; +contig33 ena start_codon 87894 87896 . - 0 gene_id "W7K_07810"; transcript_id "KOE99729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 85950 85952 . - 0 gene_id "W7K_07810"; transcript_id "KOE99729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 87993 88709 . - . gene_id "W7K_07815"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 87993 88709 . - . gene_id "W7K_07815"; transcript_id "KOE99730"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 87993 88709 . - . gene_id "W7K_07815"; transcript_id "KOE99730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99730-1"; +contig33 ena CDS 87996 88709 . - 0 gene_id "W7K_07815"; transcript_id "KOE99730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99730"; +contig33 ena start_codon 88707 88709 . - 0 gene_id "W7K_07815"; transcript_id "KOE99730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 87993 87995 . - 0 gene_id "W7K_07815"; transcript_id "KOE99730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 88800 89603 . + . gene_id "W7K_07820"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 88800 89603 . + . gene_id "W7K_07820"; transcript_id "KOE99731"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 88800 89603 . + . gene_id "W7K_07820"; transcript_id "KOE99731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99731-1"; +contig33 ena CDS 88800 89600 . + 0 gene_id "W7K_07820"; transcript_id "KOE99731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99731"; +contig33 ena start_codon 88800 88802 . + 0 gene_id "W7K_07820"; transcript_id "KOE99731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 89601 89603 . + 0 gene_id "W7K_07820"; transcript_id "KOE99731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 89576 90001 . - . gene_id "W7K_07825"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 89576 90001 . - . gene_id "W7K_07825"; transcript_id "KOE99732"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 89576 90001 . - . gene_id "W7K_07825"; transcript_id "KOE99732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99732-1"; +contig33 ena CDS 89579 90001 . - 0 gene_id "W7K_07825"; transcript_id "KOE99732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99732"; +contig33 ena start_codon 89999 90001 . - 0 gene_id "W7K_07825"; transcript_id "KOE99732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 89576 89578 . - 0 gene_id "W7K_07825"; transcript_id "KOE99732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 90145 90735 . + . gene_id "W7K_07830"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 90145 90735 . + . gene_id "W7K_07830"; transcript_id "KOE99733"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 90145 90735 . + . gene_id "W7K_07830"; transcript_id "KOE99733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99733-1"; +contig33 ena CDS 90145 90732 . + 0 gene_id "W7K_07830"; transcript_id "KOE99733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99733"; +contig33 ena start_codon 90145 90147 . + 0 gene_id "W7K_07830"; transcript_id "KOE99733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 90733 90735 . + 0 gene_id "W7K_07830"; transcript_id "KOE99733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 90732 91766 . + . gene_id "W7K_07835"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 90732 91766 . + . gene_id "W7K_07835"; transcript_id "KOE99734"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 90732 91766 . + . gene_id "W7K_07835"; transcript_id "KOE99734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99734-1"; +contig33 ena CDS 90732 91763 . + 0 gene_id "W7K_07835"; transcript_id "KOE99734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99734"; +contig33 ena start_codon 90732 90734 . + 0 gene_id "W7K_07835"; transcript_id "KOE99734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 91764 91766 . + 0 gene_id "W7K_07835"; transcript_id "KOE99734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 91866 92870 . + . gene_id "W7K_07840"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 91866 92870 . + . gene_id "W7K_07840"; transcript_id "KOE99735"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 91866 92870 . + . gene_id "W7K_07840"; transcript_id "KOE99735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99735-1"; +contig33 ena CDS 91866 92867 . + 0 gene_id "W7K_07840"; transcript_id "KOE99735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99735"; +contig33 ena start_codon 91866 91868 . + 0 gene_id "W7K_07840"; transcript_id "KOE99735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 92868 92870 . + 0 gene_id "W7K_07840"; transcript_id "KOE99735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 92989 93876 . - . gene_id "W7K_07845"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 92989 93876 . - . gene_id "W7K_07845"; transcript_id "KOE99736"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 92989 93876 . - . gene_id "W7K_07845"; transcript_id "KOE99736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99736-1"; +contig33 ena CDS 92992 93876 . - 0 gene_id "W7K_07845"; transcript_id "KOE99736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99736"; +contig33 ena start_codon 93874 93876 . - 0 gene_id "W7K_07845"; transcript_id "KOE99736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 92989 92991 . - 0 gene_id "W7K_07845"; transcript_id "KOE99736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 93909 94970 . - . gene_id "W7K_07850"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 93909 94970 . - . gene_id "W7K_07850"; transcript_id "KOE99737"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 93909 94970 . - . gene_id "W7K_07850"; transcript_id "KOE99737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99737-1"; +contig33 ena CDS 93912 94970 . - 0 gene_id "W7K_07850"; transcript_id "KOE99737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99737"; +contig33 ena start_codon 94968 94970 . - 0 gene_id "W7K_07850"; transcript_id "KOE99737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 93909 93911 . - 0 gene_id "W7K_07850"; transcript_id "KOE99737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 94979 96034 . - . gene_id "W7K_07855"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 94979 96034 . - . gene_id "W7K_07855"; transcript_id "KOE99738"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 94979 96034 . - . gene_id "W7K_07855"; transcript_id "KOE99738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99738-1"; +contig33 ena CDS 94982 96034 . - 0 gene_id "W7K_07855"; transcript_id "KOE99738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99738"; +contig33 ena start_codon 96032 96034 . - 0 gene_id "W7K_07855"; transcript_id "KOE99738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 94979 94981 . - 0 gene_id "W7K_07855"; transcript_id "KOE99738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 96043 96813 . - . gene_id "W7K_07860"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 96043 96813 . - . gene_id "W7K_07860"; transcript_id "KOE99739"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 96043 96813 . - . gene_id "W7K_07860"; transcript_id "KOE99739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99739-1"; +contig33 ena CDS 96046 96813 . - 0 gene_id "W7K_07860"; transcript_id "KOE99739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99739"; +contig33 ena start_codon 96811 96813 . - 0 gene_id "W7K_07860"; transcript_id "KOE99739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 96043 96045 . - 0 gene_id "W7K_07860"; transcript_id "KOE99739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 96819 97103 . - . gene_id "W7K_07865"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 96819 97103 . - . gene_id "W7K_07865"; transcript_id "KOE99740"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 96819 97103 . - . gene_id "W7K_07865"; transcript_id "KOE99740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99740-1"; +contig33 ena CDS 96822 97103 . - 0 gene_id "W7K_07865"; transcript_id "KOE99740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99740"; +contig33 ena start_codon 97101 97103 . - 0 gene_id "W7K_07865"; transcript_id "KOE99740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 96819 96821 . - 0 gene_id "W7K_07865"; transcript_id "KOE99740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 97264 98073 . - . gene_id "W7K_07870"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 97264 98073 . - . gene_id "W7K_07870"; transcript_id "KOE99741"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 97264 98073 . - . gene_id "W7K_07870"; transcript_id "KOE99741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99741-1"; +contig33 ena CDS 97267 98073 . - 0 gene_id "W7K_07870"; transcript_id "KOE99741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99741"; +contig33 ena start_codon 98071 98073 . - 0 gene_id "W7K_07870"; transcript_id "KOE99741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 97264 97266 . - 0 gene_id "W7K_07870"; transcript_id "KOE99741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 98114 99646 . - . gene_id "W7K_07875"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 98114 99646 . - . gene_id "W7K_07875"; transcript_id "KOE99742"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 98114 99646 . - . gene_id "W7K_07875"; transcript_id "KOE99742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99742-1"; +contig33 ena CDS 98117 99646 . - 0 gene_id "W7K_07875"; transcript_id "KOE99742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99742"; +contig33 ena start_codon 99644 99646 . - 0 gene_id "W7K_07875"; transcript_id "KOE99742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 98114 98116 . - 0 gene_id "W7K_07875"; transcript_id "KOE99742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 99805 100848 . - . gene_id "W7K_07880"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 99805 100848 . - . gene_id "W7K_07880"; transcript_id "KOE99743"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 99805 100848 . - . gene_id "W7K_07880"; transcript_id "KOE99743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99743-1"; +contig33 ena CDS 99808 100848 . - 0 gene_id "W7K_07880"; transcript_id "KOE99743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99743"; +contig33 ena start_codon 100846 100848 . - 0 gene_id "W7K_07880"; transcript_id "KOE99743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 99805 99807 . - 0 gene_id "W7K_07880"; transcript_id "KOE99743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 100897 101823 . - . gene_id "W7K_07885"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 100897 101823 . - . gene_id "W7K_07885"; transcript_id "KOE99744"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 100897 101823 . - . gene_id "W7K_07885"; transcript_id "KOE99744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99744-1"; +contig33 ena CDS 100900 101823 . - 0 gene_id "W7K_07885"; transcript_id "KOE99744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99744"; +contig33 ena start_codon 101821 101823 . - 0 gene_id "W7K_07885"; transcript_id "KOE99744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 100897 100899 . - 0 gene_id "W7K_07885"; transcript_id "KOE99744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 101820 102587 . - . gene_id "W7K_07890"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 101820 102587 . - . gene_id "W7K_07890"; transcript_id "KOE99745"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 101820 102587 . - . gene_id "W7K_07890"; transcript_id "KOE99745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99745-1"; +contig33 ena CDS 101823 102587 . - 0 gene_id "W7K_07890"; transcript_id "KOE99745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99745"; +contig33 ena start_codon 102585 102587 . - 0 gene_id "W7K_07890"; transcript_id "KOE99745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 101820 101822 . - 0 gene_id "W7K_07890"; transcript_id "KOE99745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 103003 104406 . - . gene_id "W7K_07895"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 103003 104406 . - . gene_id "W7K_07895"; transcript_id "KOE99746"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 103003 104406 . - . gene_id "W7K_07895"; transcript_id "KOE99746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99746-1"; +contig33 ena CDS 103006 104406 . - 0 gene_id "W7K_07895"; transcript_id "KOE99746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99746"; +contig33 ena start_codon 104404 104406 . - 0 gene_id "W7K_07895"; transcript_id "KOE99746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 103003 103005 . - 0 gene_id "W7K_07895"; transcript_id "KOE99746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 104416 104751 . + . gene_id "W7K_07900"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 104416 104751 . + . gene_id "W7K_07900"; transcript_id "KOE99747"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 104416 104751 . + . gene_id "W7K_07900"; transcript_id "KOE99747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99747-1"; +contig33 ena CDS 104416 104748 . + 0 gene_id "W7K_07900"; transcript_id "KOE99747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99747"; +contig33 ena start_codon 104416 104418 . + 0 gene_id "W7K_07900"; transcript_id "KOE99747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 104749 104751 . + 0 gene_id "W7K_07900"; transcript_id "KOE99747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 104828 106117 . - . gene_id "W7K_07905"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 104828 106117 . - . gene_id "W7K_07905"; transcript_id "KOE99748"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 104828 106117 . - . gene_id "W7K_07905"; transcript_id "KOE99748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99748-1"; +contig33 ena CDS 104831 106117 . - 0 gene_id "W7K_07905"; transcript_id "KOE99748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99748"; +contig33 ena start_codon 106115 106117 . - 0 gene_id "W7K_07905"; transcript_id "KOE99748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 104828 104830 . - 0 gene_id "W7K_07905"; transcript_id "KOE99748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 106139 106963 . - . gene_id "W7K_07910"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 106139 106963 . - . gene_id "W7K_07910"; transcript_id "KOE99749"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 106139 106963 . - . gene_id "W7K_07910"; transcript_id "KOE99749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99749-1"; +contig33 ena CDS 106142 106963 . - 0 gene_id "W7K_07910"; transcript_id "KOE99749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99749"; +contig33 ena start_codon 106961 106963 . - 0 gene_id "W7K_07910"; transcript_id "KOE99749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 106139 106141 . - 0 gene_id "W7K_07910"; transcript_id "KOE99749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 106986 108353 . - . gene_id "W7K_07915"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 106986 108353 . - . gene_id "W7K_07915"; transcript_id "KOE99750"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 106986 108353 . - . gene_id "W7K_07915"; transcript_id "KOE99750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99750-1"; +contig33 ena CDS 106989 108353 . - 0 gene_id "W7K_07915"; transcript_id "KOE99750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99750"; +contig33 ena start_codon 108351 108353 . - 0 gene_id "W7K_07915"; transcript_id "KOE99750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 106986 106988 . - 0 gene_id "W7K_07915"; transcript_id "KOE99750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 108350 109744 . - . gene_id "W7K_07920"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 108350 109744 . - . gene_id "W7K_07920"; transcript_id "KOE99751"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 108350 109744 . - . gene_id "W7K_07920"; transcript_id "KOE99751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99751-1"; +contig33 ena CDS 108353 109744 . - 0 gene_id "W7K_07920"; transcript_id "KOE99751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99751"; +contig33 ena start_codon 109742 109744 . - 0 gene_id "W7K_07920"; transcript_id "KOE99751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 108350 108352 . - 0 gene_id "W7K_07920"; transcript_id "KOE99751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 109853 110914 . - . gene_id "W7K_07925"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 109853 110914 . - . gene_id "W7K_07925"; transcript_id "KOE99752"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 109853 110914 . - . gene_id "W7K_07925"; transcript_id "KOE99752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99752-1"; +contig33 ena CDS 109856 110914 . - 0 gene_id "W7K_07925"; transcript_id "KOE99752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99752"; +contig33 ena start_codon 110912 110914 . - 0 gene_id "W7K_07925"; transcript_id "KOE99752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 109853 109855 . - 0 gene_id "W7K_07925"; transcript_id "KOE99752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 110927 111826 . - . gene_id "W7K_07930"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 110927 111826 . - . gene_id "W7K_07930"; transcript_id "KOE99753"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 110927 111826 . - . gene_id "W7K_07930"; transcript_id "KOE99753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99753-1"; +contig33 ena CDS 110930 111826 . - 0 gene_id "W7K_07930"; transcript_id "KOE99753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99753"; +contig33 ena start_codon 111824 111826 . - 0 gene_id "W7K_07930"; transcript_id "KOE99753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 110927 110929 . - 0 gene_id "W7K_07930"; transcript_id "KOE99753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 111823 112722 . - . gene_id "W7K_07935"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 111823 112722 . - . gene_id "W7K_07935"; transcript_id "KOE99754"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 111823 112722 . - . gene_id "W7K_07935"; transcript_id "KOE99754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99754-1"; +contig33 ena CDS 111826 112722 . - 0 gene_id "W7K_07935"; transcript_id "KOE99754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99754"; +contig33 ena start_codon 112720 112722 . - 0 gene_id "W7K_07935"; transcript_id "KOE99754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 111823 111825 . - 0 gene_id "W7K_07935"; transcript_id "KOE99754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 112724 113302 . - . gene_id "W7K_07940"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 112724 113302 . - . gene_id "W7K_07940"; transcript_id "KOE99755"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 112724 113302 . - . gene_id "W7K_07940"; transcript_id "KOE99755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99755-1"; +contig33 ena CDS 112727 113302 . - 0 gene_id "W7K_07940"; transcript_id "KOE99755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99755"; +contig33 ena start_codon 113300 113302 . - 0 gene_id "W7K_07940"; transcript_id "KOE99755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 112724 112726 . - 0 gene_id "W7K_07940"; transcript_id "KOE99755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 113330 114397 . - . gene_id "W7K_07945"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 113330 114397 . - . gene_id "W7K_07945"; transcript_id "KOE99756"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 113330 114397 . - . gene_id "W7K_07945"; transcript_id "KOE99756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99756-1"; +contig33 ena CDS 113333 114397 . - 0 gene_id "W7K_07945"; transcript_id "KOE99756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99756"; +contig33 ena start_codon 114395 114397 . - 0 gene_id "W7K_07945"; transcript_id "KOE99756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 113330 113332 . - 0 gene_id "W7K_07945"; transcript_id "KOE99756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 114402 115178 . - . gene_id "W7K_07950"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 114402 115178 . - . gene_id "W7K_07950"; transcript_id "KOE99757"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 114402 115178 . - . gene_id "W7K_07950"; transcript_id "KOE99757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99757-1"; +contig33 ena CDS 114405 115178 . - 0 gene_id "W7K_07950"; transcript_id "KOE99757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99757"; +contig33 ena start_codon 115176 115178 . - 0 gene_id "W7K_07950"; transcript_id "KOE99757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 114402 114404 . - 0 gene_id "W7K_07950"; transcript_id "KOE99757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 115312 116448 . - . gene_id "W7K_07955"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 115312 116448 . - . gene_id "W7K_07955"; transcript_id "KOE99758"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 115312 116448 . - . gene_id "W7K_07955"; transcript_id "KOE99758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99758-1"; +contig33 ena CDS 115315 116448 . - 0 gene_id "W7K_07955"; transcript_id "KOE99758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99758"; +contig33 ena start_codon 116446 116448 . - 0 gene_id "W7K_07955"; transcript_id "KOE99758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 115312 115314 . - 0 gene_id "W7K_07955"; transcript_id "KOE99758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 116560 117972 . - . gene_id "W7K_07960"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 116560 117972 . - . gene_id "W7K_07960"; transcript_id "KOE99862"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 116560 117972 . - . gene_id "W7K_07960"; transcript_id "KOE99862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99862-1"; +contig33 ena CDS 116563 117972 . - 0 gene_id "W7K_07960"; transcript_id "KOE99862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99862"; +contig33 ena start_codon 117970 117972 . - 0 gene_id "W7K_07960"; transcript_id "KOE99862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 116560 116562 . - 0 gene_id "W7K_07960"; transcript_id "KOE99862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 118297 118737 . + . gene_id "W7K_07965"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 118297 118737 . + . gene_id "W7K_07965"; transcript_id "KOE99759"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 118297 118737 . + . gene_id "W7K_07965"; transcript_id "KOE99759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99759-1"; +contig33 ena CDS 118297 118734 . + 0 gene_id "W7K_07965"; transcript_id "KOE99759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99759"; +contig33 ena start_codon 118297 118299 . + 0 gene_id "W7K_07965"; transcript_id "KOE99759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 118735 118737 . + 0 gene_id "W7K_07965"; transcript_id "KOE99759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 118776 121004 . + . gene_id "W7K_07970"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 118776 121004 . + . gene_id "W7K_07970"; transcript_id "KOE99760"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 118776 121004 . + . gene_id "W7K_07970"; transcript_id "KOE99760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99760-1"; +contig33 ena CDS 118776 121001 . + 0 gene_id "W7K_07970"; transcript_id "KOE99760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99760"; +contig33 ena start_codon 118776 118778 . + 0 gene_id "W7K_07970"; transcript_id "KOE99760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 121002 121004 . + 0 gene_id "W7K_07970"; transcript_id "KOE99760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 121188 123308 . - . gene_id "W7K_07975"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 121188 123308 . - . gene_id "W7K_07975"; transcript_id "KOE99761"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 121188 123308 . - . gene_id "W7K_07975"; transcript_id "KOE99761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99761-1"; +contig33 ena CDS 121191 123308 . - 0 gene_id "W7K_07975"; transcript_id "KOE99761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99761"; +contig33 ena start_codon 123306 123308 . - 0 gene_id "W7K_07975"; transcript_id "KOE99761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 121188 121190 . - 0 gene_id "W7K_07975"; transcript_id "KOE99761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 123440 123748 . + . gene_id "W7K_07980"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 123440 123748 . + . gene_id "W7K_07980"; transcript_id "KOE99762"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 123440 123748 . + . gene_id "W7K_07980"; transcript_id "KOE99762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99762-1"; +contig33 ena CDS 123440 123745 . + 0 gene_id "W7K_07980"; transcript_id "KOE99762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99762"; +contig33 ena start_codon 123440 123442 . + 0 gene_id "W7K_07980"; transcript_id "KOE99762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 123746 123748 . + 0 gene_id "W7K_07980"; transcript_id "KOE99762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 124078 124770 . - . gene_id "W7K_07985"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 124078 124770 . - . gene_id "W7K_07985"; transcript_id "KOE99863"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 124078 124770 . - . gene_id "W7K_07985"; transcript_id "KOE99863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99863-1"; +contig33 ena CDS 124081 124770 . - 0 gene_id "W7K_07985"; transcript_id "KOE99863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99863"; +contig33 ena start_codon 124768 124770 . - 0 gene_id "W7K_07985"; transcript_id "KOE99863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 124078 124080 . - 0 gene_id "W7K_07985"; transcript_id "KOE99863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 124784 125890 . - . gene_id "W7K_07990"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 124784 125890 . - . gene_id "W7K_07990"; transcript_id "KOE99763"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 124784 125890 . - . gene_id "W7K_07990"; transcript_id "KOE99763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99763-1"; +contig33 ena CDS 124787 125890 . - 0 gene_id "W7K_07990"; transcript_id "KOE99763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99763"; +contig33 ena start_codon 125888 125890 . - 0 gene_id "W7K_07990"; transcript_id "KOE99763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 124784 124786 . - 0 gene_id "W7K_07990"; transcript_id "KOE99763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 125979 126287 . - . gene_id "W7K_07995"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 125979 126287 . - . gene_id "W7K_07995"; transcript_id "KOE99764"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 125979 126287 . - . gene_id "W7K_07995"; transcript_id "KOE99764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99764-1"; +contig33 ena CDS 125982 126287 . - 0 gene_id "W7K_07995"; transcript_id "KOE99764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99764"; +contig33 ena start_codon 126285 126287 . - 0 gene_id "W7K_07995"; transcript_id "KOE99764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 125979 125981 . - 0 gene_id "W7K_07995"; transcript_id "KOE99764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 126397 126987 . - . gene_id "W7K_08000"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 126397 126987 . - . gene_id "W7K_08000"; transcript_id "KOE99765"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 126397 126987 . - . gene_id "W7K_08000"; transcript_id "KOE99765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99765-1"; +contig33 ena CDS 126400 126987 . - 0 gene_id "W7K_08000"; transcript_id "KOE99765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99765"; +contig33 ena start_codon 126985 126987 . - 0 gene_id "W7K_08000"; transcript_id "KOE99765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 126397 126399 . - 0 gene_id "W7K_08000"; transcript_id "KOE99765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 127097 127173 . + . gene_id "W7K_08005"; gene_source "ena"; gene_biotype "tRNA"; +contig33 ena transcript 127097 127173 . + . gene_id "W7K_08005"; transcript_id "EBT00051077642"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_08005"; transcript_source "ena"; transcript_biotype "tRNA"; +contig33 ena exon 127097 127173 . + . gene_id "W7K_08005"; transcript_id "EBT00051077642"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_08005"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_08005-1"; +contig33 ena gene 127322 128251 . + . gene_id "W7K_08010"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 127322 128251 . + . gene_id "W7K_08010"; transcript_id "KOE99766"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 127322 128251 . + . gene_id "W7K_08010"; transcript_id "KOE99766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99766-1"; +contig33 ena CDS 127322 128248 . + 0 gene_id "W7K_08010"; transcript_id "KOE99766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99766"; +contig33 ena start_codon 127322 127324 . + 0 gene_id "W7K_08010"; transcript_id "KOE99766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 128249 128251 . + 0 gene_id "W7K_08010"; transcript_id "KOE99766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 128263 128781 . - . gene_id "W7K_08015"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 128263 128781 . - . gene_id "W7K_08015"; transcript_id "KOE99767"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 128263 128781 . - . gene_id "W7K_08015"; transcript_id "KOE99767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99767-1"; +contig33 ena CDS 128266 128781 . - 0 gene_id "W7K_08015"; transcript_id "KOE99767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99767"; +contig33 ena start_codon 128779 128781 . - 0 gene_id "W7K_08015"; transcript_id "KOE99767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 128263 128265 . - 0 gene_id "W7K_08015"; transcript_id "KOE99767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 128858 129091 . - . gene_id "W7K_08020"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 128858 129091 . - . gene_id "W7K_08020"; transcript_id "KOE99768"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 128858 129091 . - . gene_id "W7K_08020"; transcript_id "KOE99768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99768-1"; +contig33 ena CDS 128861 129091 . - 0 gene_id "W7K_08020"; transcript_id "KOE99768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99768"; +contig33 ena start_codon 129089 129091 . - 0 gene_id "W7K_08020"; transcript_id "KOE99768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 128858 128860 . - 0 gene_id "W7K_08020"; transcript_id "KOE99768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 129156 129470 . - . gene_id "W7K_08025"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 129156 129470 . - . gene_id "W7K_08025"; transcript_id "KOE99864"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 129156 129470 . - . gene_id "W7K_08025"; transcript_id "KOE99864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99864-1"; +contig33 ena CDS 129159 129470 . - 0 gene_id "W7K_08025"; transcript_id "KOE99864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99864"; +contig33 ena start_codon 129468 129470 . - 0 gene_id "W7K_08025"; transcript_id "KOE99864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 129156 129158 . - 0 gene_id "W7K_08025"; transcript_id "KOE99864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 130670 130879 . - . gene_id "W7K_08035"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 130670 130879 . - . gene_id "W7K_08035"; transcript_id "KOE99769"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 130670 130879 . - . gene_id "W7K_08035"; transcript_id "KOE99769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99769-1"; +contig33 ena CDS 130673 130879 . - 0 gene_id "W7K_08035"; transcript_id "KOE99769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99769"; +contig33 ena start_codon 130877 130879 . - 0 gene_id "W7K_08035"; transcript_id "KOE99769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 130670 130672 . - 0 gene_id "W7K_08035"; transcript_id "KOE99769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 131112 131726 . - . gene_id "W7K_08040"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 131112 131726 . - . gene_id "W7K_08040"; transcript_id "KOE99770"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 131112 131726 . - . gene_id "W7K_08040"; transcript_id "KOE99770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99770-1"; +contig33 ena CDS 131115 131726 . - 0 gene_id "W7K_08040"; transcript_id "KOE99770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99770"; +contig33 ena start_codon 131724 131726 . - 0 gene_id "W7K_08040"; transcript_id "KOE99770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 131112 131114 . - 0 gene_id "W7K_08040"; transcript_id "KOE99770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 131723 132019 . - . gene_id "W7K_08045"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 131723 132019 . - . gene_id "W7K_08045"; transcript_id "KOE99771"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 131723 132019 . - . gene_id "W7K_08045"; transcript_id "KOE99771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99771-1"; +contig33 ena CDS 131726 132019 . - 0 gene_id "W7K_08045"; transcript_id "KOE99771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99771"; +contig33 ena start_codon 132017 132019 . - 0 gene_id "W7K_08045"; transcript_id "KOE99771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 131723 131725 . - 0 gene_id "W7K_08045"; transcript_id "KOE99771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 132046 132420 . - . gene_id "W7K_08050"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 132046 132420 . - . gene_id "W7K_08050"; transcript_id "KOE99772"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 132046 132420 . - . gene_id "W7K_08050"; transcript_id "KOE99772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99772-1"; +contig33 ena CDS 132049 132420 . - 0 gene_id "W7K_08050"; transcript_id "KOE99772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99772"; +contig33 ena start_codon 132418 132420 . - 0 gene_id "W7K_08050"; transcript_id "KOE99772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 132046 132048 . - 0 gene_id "W7K_08050"; transcript_id "KOE99772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 132447 132692 . - . gene_id "W7K_08055"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 132447 132692 . - . gene_id "W7K_08055"; transcript_id "KOE99773"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 132447 132692 . - . gene_id "W7K_08055"; transcript_id "KOE99773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99773-1"; +contig33 ena CDS 132450 132692 . - 0 gene_id "W7K_08055"; transcript_id "KOE99773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99773"; +contig33 ena start_codon 132690 132692 . - 0 gene_id "W7K_08055"; transcript_id "KOE99773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 132447 132449 . - 0 gene_id "W7K_08055"; transcript_id "KOE99773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 132667 133050 . - . gene_id "W7K_08060"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 132667 133050 . - . gene_id "W7K_08060"; transcript_id "KOE99774"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 132667 133050 . - . gene_id "W7K_08060"; transcript_id "KOE99774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99774-1"; +contig33 ena CDS 132670 133050 . - 0 gene_id "W7K_08060"; transcript_id "KOE99774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99774"; +contig33 ena start_codon 133048 133050 . - 0 gene_id "W7K_08060"; transcript_id "KOE99774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 132667 132669 . - 0 gene_id "W7K_08060"; transcript_id "KOE99774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 133861 134211 . + . gene_id "W7K_08065"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 133861 134211 . + . gene_id "W7K_08065"; transcript_id "KOE99775"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 133861 134211 . + . gene_id "W7K_08065"; transcript_id "KOE99775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99775-1"; +contig33 ena CDS 133861 134208 . + 0 gene_id "W7K_08065"; transcript_id "KOE99775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99775"; +contig33 ena start_codon 133861 133863 . + 0 gene_id "W7K_08065"; transcript_id "KOE99775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 134209 134211 . + 0 gene_id "W7K_08065"; transcript_id "KOE99775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 134335 134910 . + . gene_id "W7K_08070"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 134335 134910 . + . gene_id "W7K_08070"; transcript_id "KOE99776"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 134335 134910 . + . gene_id "W7K_08070"; transcript_id "KOE99776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99776-1"; +contig33 ena CDS 134335 134907 . + 0 gene_id "W7K_08070"; transcript_id "KOE99776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99776"; +contig33 ena start_codon 134335 134337 . + 0 gene_id "W7K_08070"; transcript_id "KOE99776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 134908 134910 . + 0 gene_id "W7K_08070"; transcript_id "KOE99776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 135922 136536 . + . gene_id "W7K_08075"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 135922 136536 . + . gene_id "W7K_08075"; transcript_id "KOE99865"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 135922 136536 . + . gene_id "W7K_08075"; transcript_id "KOE99865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99865-1"; +contig33 ena CDS 135922 136533 . + 0 gene_id "W7K_08075"; transcript_id "KOE99865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99865"; +contig33 ena start_codon 135922 135924 . + 0 gene_id "W7K_08075"; transcript_id "KOE99865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 136534 136536 . + 0 gene_id "W7K_08075"; transcript_id "KOE99865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 136603 136824 . - . gene_id "W7K_08080"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 136603 136824 . - . gene_id "W7K_08080"; transcript_id "KOE99777"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 136603 136824 . - . gene_id "W7K_08080"; transcript_id "KOE99777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99777-1"; +contig33 ena CDS 136606 136824 . - 0 gene_id "W7K_08080"; transcript_id "KOE99777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99777"; +contig33 ena start_codon 136822 136824 . - 0 gene_id "W7K_08080"; transcript_id "KOE99777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 136603 136605 . - 0 gene_id "W7K_08080"; transcript_id "KOE99777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 137183 137533 . + . gene_id "W7K_08085"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 137183 137533 . + . gene_id "W7K_08085"; transcript_id "KOE99866"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 137183 137533 . + . gene_id "W7K_08085"; transcript_id "KOE99866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99866-1"; +contig33 ena CDS 137183 137530 . + 0 gene_id "W7K_08085"; transcript_id "KOE99866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99866"; +contig33 ena start_codon 137183 137185 . + 0 gene_id "W7K_08085"; transcript_id "KOE99866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 137531 137533 . + 0 gene_id "W7K_08085"; transcript_id "KOE99866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 137704 138150 . + . gene_id "W7K_08090"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 137704 138150 . + . gene_id "W7K_08090"; transcript_id "KOE99778"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 137704 138150 . + . gene_id "W7K_08090"; transcript_id "KOE99778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99778-1"; +contig33 ena CDS 137704 138147 . + 0 gene_id "W7K_08090"; transcript_id "KOE99778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99778"; +contig33 ena start_codon 137704 137706 . + 0 gene_id "W7K_08090"; transcript_id "KOE99778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 138148 138150 . + 0 gene_id "W7K_08090"; transcript_id "KOE99778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 138672 139115 . + . gene_id "W7K_08095"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 138672 139115 . + . gene_id "W7K_08095"; transcript_id "KOE99779"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 138672 139115 . + . gene_id "W7K_08095"; transcript_id "KOE99779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99779-1"; +contig33 ena CDS 138672 139112 . + 0 gene_id "W7K_08095"; transcript_id "KOE99779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99779"; +contig33 ena start_codon 138672 138674 . + 0 gene_id "W7K_08095"; transcript_id "KOE99779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 139113 139115 . + 0 gene_id "W7K_08095"; transcript_id "KOE99779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 139119 140294 . - . gene_id "W7K_08100"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 139119 140294 . - . gene_id "W7K_08100"; transcript_id "KOE99780"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 139119 140294 . - . gene_id "W7K_08100"; transcript_id "KOE99780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99780-1"; +contig33 ena CDS 139122 140294 . - 0 gene_id "W7K_08100"; transcript_id "KOE99780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99780"; +contig33 ena start_codon 140292 140294 . - 0 gene_id "W7K_08100"; transcript_id "KOE99780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 139119 139121 . - 0 gene_id "W7K_08100"; transcript_id "KOE99780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 141090 143843 . - . gene_id "W7K_08105"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 141090 143843 . - . gene_id "W7K_08105"; transcript_id "KOE99781"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 141090 143843 . - . gene_id "W7K_08105"; transcript_id "KOE99781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99781-1"; +contig33 ena CDS 141093 143843 . - 0 gene_id "W7K_08105"; transcript_id "KOE99781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99781"; +contig33 ena start_codon 143841 143843 . - 0 gene_id "W7K_08105"; transcript_id "KOE99781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 141090 141092 . - 0 gene_id "W7K_08105"; transcript_id "KOE99781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 143951 144271 . - . gene_id "W7K_08110"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 143951 144271 . - . gene_id "W7K_08110"; transcript_id "KOE99782"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 143951 144271 . - . gene_id "W7K_08110"; transcript_id "KOE99782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99782-1"; +contig33 ena CDS 143954 144271 . - 0 gene_id "W7K_08110"; transcript_id "KOE99782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99782"; +contig33 ena start_codon 144269 144271 . - 0 gene_id "W7K_08110"; transcript_id "KOE99782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 143951 143953 . - 0 gene_id "W7K_08110"; transcript_id "KOE99782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 144418 145407 . - . gene_id "W7K_08115"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 144418 145407 . - . gene_id "W7K_08115"; transcript_id "KOE99783"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 144418 145407 . - . gene_id "W7K_08115"; transcript_id "KOE99783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99783-1"; +contig33 ena CDS 144421 145407 . - 0 gene_id "W7K_08115"; transcript_id "KOE99783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99783"; +contig33 ena start_codon 145405 145407 . - 0 gene_id "W7K_08115"; transcript_id "KOE99783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 144418 144420 . - 0 gene_id "W7K_08115"; transcript_id "KOE99783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 145510 145848 . + . gene_id "W7K_08120"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 145510 145848 . + . gene_id "W7K_08120"; transcript_id "KOE99784"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 145510 145848 . + . gene_id "W7K_08120"; transcript_id "KOE99784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99784-1"; +contig33 ena CDS 145510 145845 . + 0 gene_id "W7K_08120"; transcript_id "KOE99784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99784"; +contig33 ena start_codon 145510 145512 . + 0 gene_id "W7K_08120"; transcript_id "KOE99784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 145846 145848 . + 0 gene_id "W7K_08120"; transcript_id "KOE99784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 145937 146134 . - . gene_id "W7K_08125"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 145937 146134 . - . gene_id "W7K_08125"; transcript_id "KOE99785"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 145937 146134 . - . gene_id "W7K_08125"; transcript_id "KOE99785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99785-1"; +contig33 ena CDS 145940 146134 . - 0 gene_id "W7K_08125"; transcript_id "KOE99785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99785"; +contig33 ena start_codon 146132 146134 . - 0 gene_id "W7K_08125"; transcript_id "KOE99785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 145937 145939 . - 0 gene_id "W7K_08125"; transcript_id "KOE99785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 146250 146627 . - . gene_id "W7K_08130"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 146250 146627 . - . gene_id "W7K_08130"; transcript_id "KOE99786"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 146250 146627 . - . gene_id "W7K_08130"; transcript_id "KOE99786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99786-1"; +contig33 ena CDS 146253 146627 . - 0 gene_id "W7K_08130"; transcript_id "KOE99786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99786"; +contig33 ena start_codon 146625 146627 . - 0 gene_id "W7K_08130"; transcript_id "KOE99786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 146250 146252 . - 0 gene_id "W7K_08130"; transcript_id "KOE99786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 146655 147053 . - . gene_id "W7K_08135"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 146655 147053 . - . gene_id "W7K_08135"; transcript_id "KOE99787"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 146655 147053 . - . gene_id "W7K_08135"; transcript_id "KOE99787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99787-1"; +contig33 ena CDS 146658 147053 . - 0 gene_id "W7K_08135"; transcript_id "KOE99787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99787"; +contig33 ena start_codon 147051 147053 . - 0 gene_id "W7K_08135"; transcript_id "KOE99787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 146655 146657 . - 0 gene_id "W7K_08135"; transcript_id "KOE99787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 147144 149108 . - . gene_id "W7K_08140"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 147144 149108 . - . gene_id "W7K_08140"; transcript_id "KOE99788"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 147144 149108 . - . gene_id "W7K_08140"; transcript_id "KOE99788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99788-1"; +contig33 ena CDS 147147 149108 . - 0 gene_id "W7K_08140"; transcript_id "KOE99788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99788"; +contig33 ena start_codon 149106 149108 . - 0 gene_id "W7K_08140"; transcript_id "KOE99788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 147144 147146 . - 0 gene_id "W7K_08140"; transcript_id "KOE99788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 149105 150295 . - . gene_id "W7K_08145"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 149105 150295 . - . gene_id "W7K_08145"; transcript_id "KOE99789"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 149105 150295 . - . gene_id "W7K_08145"; transcript_id "KOE99789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99789-1"; +contig33 ena CDS 149108 150295 . - 0 gene_id "W7K_08145"; transcript_id "KOE99789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99789"; +contig33 ena start_codon 150293 150295 . - 0 gene_id "W7K_08145"; transcript_id "KOE99789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 149105 149107 . - 0 gene_id "W7K_08145"; transcript_id "KOE99789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 150431 150847 . - . gene_id "W7K_08150"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 150431 150847 . - . gene_id "W7K_08150"; transcript_id "KOE99790"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 150431 150847 . - . gene_id "W7K_08150"; transcript_id "KOE99790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99790-1"; +contig33 ena CDS 150434 150847 . - 0 gene_id "W7K_08150"; transcript_id "KOE99790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99790"; +contig33 ena start_codon 150845 150847 . - 0 gene_id "W7K_08150"; transcript_id "KOE99790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 150431 150433 . - 0 gene_id "W7K_08150"; transcript_id "KOE99790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 151171 152520 . - . gene_id "W7K_08155"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 151171 152520 . - . gene_id "W7K_08155"; transcript_id "KOE99791"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 151171 152520 . - . gene_id "W7K_08155"; transcript_id "KOE99791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99791-1"; +contig33 ena CDS 151174 152520 . - 0 gene_id "W7K_08155"; transcript_id "KOE99791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99791"; +contig33 ena start_codon 152518 152520 . - 0 gene_id "W7K_08155"; transcript_id "KOE99791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 151171 151173 . - 0 gene_id "W7K_08155"; transcript_id "KOE99791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 152520 153194 . - . gene_id "W7K_08160"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 152520 153194 . - . gene_id "W7K_08160"; transcript_id "KOE99792"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 152520 153194 . - . gene_id "W7K_08160"; transcript_id "KOE99792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99792-1"; +contig33 ena CDS 152523 153194 . - 0 gene_id "W7K_08160"; transcript_id "KOE99792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99792"; +contig33 ena start_codon 153192 153194 . - 0 gene_id "W7K_08160"; transcript_id "KOE99792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 152520 152522 . - 0 gene_id "W7K_08160"; transcript_id "KOE99792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 153404 153685 . + . gene_id "W7K_08165"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 153404 153685 . + . gene_id "W7K_08165"; transcript_id "KOE99793"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 153404 153685 . + . gene_id "W7K_08165"; transcript_id "KOE99793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99793-1"; +contig33 ena CDS 153404 153682 . + 0 gene_id "W7K_08165"; transcript_id "KOE99793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99793"; +contig33 ena start_codon 153404 153406 . + 0 gene_id "W7K_08165"; transcript_id "KOE99793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 153683 153685 . + 0 gene_id "W7K_08165"; transcript_id "KOE99793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 153744 155885 . - . gene_id "W7K_08170"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 153744 155885 . - . gene_id "W7K_08170"; transcript_id "KOE99794"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 153744 155885 . - . gene_id "W7K_08170"; transcript_id "KOE99794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99794-1"; +contig33 ena CDS 153747 155885 . - 0 gene_id "W7K_08170"; transcript_id "KOE99794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99794"; +contig33 ena start_codon 155883 155885 . - 0 gene_id "W7K_08170"; transcript_id "KOE99794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 153744 153746 . - 0 gene_id "W7K_08170"; transcript_id "KOE99794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 155960 156604 . - . gene_id "W7K_08175"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 155960 156604 . - . gene_id "W7K_08175"; transcript_id "KOE99795"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 155960 156604 . - . gene_id "W7K_08175"; transcript_id "KOE99795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99795-1"; +contig33 ena CDS 155963 156604 . - 0 gene_id "W7K_08175"; transcript_id "KOE99795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99795"; +contig33 ena start_codon 156602 156604 . - 0 gene_id "W7K_08175"; transcript_id "KOE99795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 155960 155962 . - 0 gene_id "W7K_08175"; transcript_id "KOE99795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 156687 158210 . + . gene_id "W7K_08180"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 156687 158210 . + . gene_id "W7K_08180"; transcript_id "KOE99796"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 156687 158210 . + . gene_id "W7K_08180"; transcript_id "KOE99796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99796-1"; +contig33 ena CDS 156687 158207 . + 0 gene_id "W7K_08180"; transcript_id "KOE99796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99796"; +contig33 ena start_codon 156687 156689 . + 0 gene_id "W7K_08180"; transcript_id "KOE99796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 158208 158210 . + 0 gene_id "W7K_08180"; transcript_id "KOE99796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 158219 159922 . - . gene_id "W7K_08185"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 158219 159922 . - . gene_id "W7K_08185"; transcript_id "KOE99797"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 158219 159922 . - . gene_id "W7K_08185"; transcript_id "KOE99797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99797-1"; +contig33 ena CDS 158222 159922 . - 0 gene_id "W7K_08185"; transcript_id "KOE99797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99797"; +contig33 ena start_codon 159920 159922 . - 0 gene_id "W7K_08185"; transcript_id "KOE99797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 158219 158221 . - 0 gene_id "W7K_08185"; transcript_id "KOE99797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 160104 160352 . - . gene_id "W7K_08190"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 160104 160352 . - . gene_id "W7K_08190"; transcript_id "KOE99798"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 160104 160352 . - . gene_id "W7K_08190"; transcript_id "KOE99798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99798-1"; +contig33 ena CDS 160107 160352 . - 0 gene_id "W7K_08190"; transcript_id "KOE99798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99798"; +contig33 ena start_codon 160350 160352 . - 0 gene_id "W7K_08190"; transcript_id "KOE99798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 160104 160106 . - 0 gene_id "W7K_08190"; transcript_id "KOE99798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 160450 160695 . - . gene_id "W7K_08195"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 160450 160695 . - . gene_id "W7K_08195"; transcript_id "KOE99799"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 160450 160695 . - . gene_id "W7K_08195"; transcript_id "KOE99799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99799-1"; +contig33 ena CDS 160453 160695 . - 0 gene_id "W7K_08195"; transcript_id "KOE99799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99799"; +contig33 ena start_codon 160693 160695 . - 0 gene_id "W7K_08195"; transcript_id "KOE99799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 160450 160452 . - 0 gene_id "W7K_08195"; transcript_id "KOE99799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 160821 161090 . - . gene_id "W7K_08200"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 160821 161090 . - . gene_id "W7K_08200"; transcript_id "KOE99800"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 160821 161090 . - . gene_id "W7K_08200"; transcript_id "KOE99800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99800-1"; +contig33 ena CDS 160824 161090 . - 0 gene_id "W7K_08200"; transcript_id "KOE99800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99800"; +contig33 ena start_codon 161088 161090 . - 0 gene_id "W7K_08200"; transcript_id "KOE99800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 160821 160823 . - 0 gene_id "W7K_08200"; transcript_id "KOE99800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 161194 161670 . - . gene_id "W7K_08205"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 161194 161670 . - . gene_id "W7K_08205"; transcript_id "KOE99801"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 161194 161670 . - . gene_id "W7K_08205"; transcript_id "KOE99801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99801-1"; +contig33 ena CDS 161197 161670 . - 0 gene_id "W7K_08205"; transcript_id "KOE99801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99801"; +contig33 ena start_codon 161668 161670 . - 0 gene_id "W7K_08205"; transcript_id "KOE99801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 161194 161196 . - 0 gene_id "W7K_08205"; transcript_id "KOE99801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 161764 163002 . - . gene_id "W7K_08210"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 161764 163002 . - . gene_id "W7K_08210"; transcript_id "KOE99802"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 161764 163002 . - . gene_id "W7K_08210"; transcript_id "KOE99802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99802-1"; +contig33 ena CDS 161767 163002 . - 0 gene_id "W7K_08210"; transcript_id "KOE99802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99802"; +contig33 ena start_codon 163000 163002 . - 0 gene_id "W7K_08210"; transcript_id "KOE99802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 161764 161766 . - 0 gene_id "W7K_08210"; transcript_id "KOE99802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 163092 163571 . + . gene_id "W7K_08215"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 163092 163571 . + . gene_id "W7K_08215"; transcript_id "KOE99803"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 163092 163571 . + . gene_id "W7K_08215"; transcript_id "KOE99803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99803-1"; +contig33 ena CDS 163092 163568 . + 0 gene_id "W7K_08215"; transcript_id "KOE99803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99803"; +contig33 ena start_codon 163092 163094 . + 0 gene_id "W7K_08215"; transcript_id "KOE99803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 163569 163571 . + 0 gene_id "W7K_08215"; transcript_id "KOE99803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 163588 164799 . - . gene_id "W7K_08220"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 163588 164799 . - . gene_id "W7K_08220"; transcript_id "KOE99804"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 163588 164799 . - . gene_id "W7K_08220"; transcript_id "KOE99804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99804-1"; +contig33 ena CDS 163591 164799 . - 0 gene_id "W7K_08220"; transcript_id "KOE99804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99804"; +contig33 ena start_codon 164797 164799 . - 0 gene_id "W7K_08220"; transcript_id "KOE99804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 163588 163590 . - 0 gene_id "W7K_08220"; transcript_id "KOE99804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 165034 165291 . + . gene_id "W7K_08225"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 165034 165291 . + . gene_id "W7K_08225"; transcript_id "KOE99867"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 165034 165291 . + . gene_id "W7K_08225"; transcript_id "KOE99867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99867-1"; +contig33 ena CDS 165034 165288 . + 0 gene_id "W7K_08225"; transcript_id "KOE99867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99867"; +contig33 ena start_codon 165034 165036 . + 0 gene_id "W7K_08225"; transcript_id "KOE99867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 165289 165291 . + 0 gene_id "W7K_08225"; transcript_id "KOE99867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 165328 167007 . + . gene_id "W7K_08230"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 165328 167007 . + . gene_id "W7K_08230"; transcript_id "KOE99805"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 165328 167007 . + . gene_id "W7K_08230"; transcript_id "KOE99805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99805-1"; +contig33 ena CDS 165328 167004 . + 0 gene_id "W7K_08230"; transcript_id "KOE99805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99805"; +contig33 ena start_codon 165328 165330 . + 0 gene_id "W7K_08230"; transcript_id "KOE99805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 167005 167007 . + 0 gene_id "W7K_08230"; transcript_id "KOE99805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 167435 167881 . + . gene_id "W7K_08235"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 167435 167881 . + . gene_id "W7K_08235"; transcript_id "KOE99806"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 167435 167881 . + . gene_id "W7K_08235"; transcript_id "KOE99806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99806-1"; +contig33 ena CDS 167435 167878 . + 0 gene_id "W7K_08235"; transcript_id "KOE99806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99806"; +contig33 ena start_codon 167435 167437 . + 0 gene_id "W7K_08235"; transcript_id "KOE99806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 167879 167881 . + 0 gene_id "W7K_08235"; transcript_id "KOE99806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 167971 169026 . + . gene_id "W7K_08240"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 167971 169026 . + . gene_id "W7K_08240"; transcript_id "KOE99807"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 167971 169026 . + . gene_id "W7K_08240"; transcript_id "KOE99807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99807-1"; +contig33 ena CDS 167971 169023 . + 0 gene_id "W7K_08240"; transcript_id "KOE99807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99807"; +contig33 ena start_codon 167971 167973 . + 0 gene_id "W7K_08240"; transcript_id "KOE99807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 169024 169026 . + 0 gene_id "W7K_08240"; transcript_id "KOE99807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 169023 169802 . + . gene_id "W7K_08245"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 169023 169802 . + . gene_id "W7K_08245"; transcript_id "KOE99808"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 169023 169802 . + . gene_id "W7K_08245"; transcript_id "KOE99808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99808-1"; +contig33 ena CDS 169023 169799 . + 0 gene_id "W7K_08245"; transcript_id "KOE99808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99808"; +contig33 ena start_codon 169023 169025 . + 0 gene_id "W7K_08245"; transcript_id "KOE99808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 169800 169802 . + 0 gene_id "W7K_08245"; transcript_id "KOE99808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 169799 171052 . + . gene_id "W7K_08250"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 169799 171052 . + . gene_id "W7K_08250"; transcript_id "KOE99809"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 169799 171052 . + . gene_id "W7K_08250"; transcript_id "KOE99809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99809-1"; +contig33 ena CDS 169799 171049 . + 0 gene_id "W7K_08250"; transcript_id "KOE99809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99809"; +contig33 ena start_codon 169799 169801 . + 0 gene_id "W7K_08250"; transcript_id "KOE99809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 171050 171052 . + 0 gene_id "W7K_08250"; transcript_id "KOE99809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 171067 172110 . + . gene_id "W7K_08255"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 171067 172110 . + . gene_id "W7K_08255"; transcript_id "KOE99810"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 171067 172110 . + . gene_id "W7K_08255"; transcript_id "KOE99810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99810-1"; +contig33 ena CDS 171067 172107 . + 0 gene_id "W7K_08255"; transcript_id "KOE99810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99810"; +contig33 ena start_codon 171067 171069 . + 0 gene_id "W7K_08255"; transcript_id "KOE99810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 172108 172110 . + 0 gene_id "W7K_08255"; transcript_id "KOE99810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 172114 173097 . + . gene_id "W7K_08260"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 172114 173097 . + . gene_id "W7K_08260"; transcript_id "KOE99811"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 172114 173097 . + . gene_id "W7K_08260"; transcript_id "KOE99811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99811-1"; +contig33 ena CDS 172114 173094 . + 0 gene_id "W7K_08260"; transcript_id "KOE99811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99811"; +contig33 ena start_codon 172114 172116 . + 0 gene_id "W7K_08260"; transcript_id "KOE99811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 173095 173097 . + 0 gene_id "W7K_08260"; transcript_id "KOE99811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 173171 173581 . + . gene_id "W7K_08265"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 173171 173581 . + . gene_id "W7K_08265"; transcript_id "KOE99812"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 173171 173581 . + . gene_id "W7K_08265"; transcript_id "KOE99812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99812-1"; +contig33 ena CDS 173171 173578 . + 0 gene_id "W7K_08265"; transcript_id "KOE99812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99812"; +contig33 ena start_codon 173171 173173 . + 0 gene_id "W7K_08265"; transcript_id "KOE99812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 173579 173581 . + 0 gene_id "W7K_08265"; transcript_id "KOE99812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 173616 173882 . + . gene_id "W7K_08270"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 173616 173882 . + . gene_id "W7K_08270"; transcript_id "KOE99813"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 173616 173882 . + . gene_id "W7K_08270"; transcript_id "KOE99813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99813-1"; +contig33 ena CDS 173616 173879 . + 0 gene_id "W7K_08270"; transcript_id "KOE99813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99813"; +contig33 ena start_codon 173616 173618 . + 0 gene_id "W7K_08270"; transcript_id "KOE99813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 173880 173882 . + 0 gene_id "W7K_08270"; transcript_id "KOE99813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 173964 176411 . + . gene_id "W7K_08275"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 173964 176411 . + . gene_id "W7K_08275"; transcript_id "KOE99814"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 173964 176411 . + . gene_id "W7K_08275"; transcript_id "KOE99814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99814-1"; +contig33 ena CDS 173964 176408 . + 0 gene_id "W7K_08275"; transcript_id "KOE99814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99814"; +contig33 ena start_codon 173964 173966 . + 0 gene_id "W7K_08275"; transcript_id "KOE99814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 176409 176411 . + 0 gene_id "W7K_08275"; transcript_id "KOE99814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 176408 177259 . + . gene_id "W7K_08280"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 176408 177259 . + . gene_id "W7K_08280"; transcript_id "KOE99815"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 176408 177259 . + . gene_id "W7K_08280"; transcript_id "KOE99815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99815-1"; +contig33 ena CDS 176408 177256 . + 0 gene_id "W7K_08280"; transcript_id "KOE99815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99815"; +contig33 ena start_codon 176408 176410 . + 0 gene_id "W7K_08280"; transcript_id "KOE99815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 177257 177259 . + 0 gene_id "W7K_08280"; transcript_id "KOE99815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 177321 178466 . + . gene_id "W7K_08285"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 177321 178466 . + . gene_id "W7K_08285"; transcript_id "KOE99816"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 177321 178466 . + . gene_id "W7K_08285"; transcript_id "KOE99816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99816-1"; +contig33 ena CDS 177321 178463 . + 0 gene_id "W7K_08285"; transcript_id "KOE99816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99816"; +contig33 ena start_codon 177321 177323 . + 0 gene_id "W7K_08285"; transcript_id "KOE99816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 178464 178466 . + 0 gene_id "W7K_08285"; transcript_id "KOE99816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 181713 182249 . + . gene_id "W7K_08295"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 181713 182249 . + . gene_id "W7K_08295"; transcript_id "KOE99817"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 181713 182249 . + . gene_id "W7K_08295"; transcript_id "KOE99817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99817-1"; +contig33 ena CDS 181713 182246 . + 0 gene_id "W7K_08295"; transcript_id "KOE99817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99817"; +contig33 ena start_codon 181713 181715 . + 0 gene_id "W7K_08295"; transcript_id "KOE99817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 182247 182249 . + 0 gene_id "W7K_08295"; transcript_id "KOE99817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 182307 183311 . + . gene_id "W7K_08300"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 182307 183311 . + . gene_id "W7K_08300"; transcript_id "KOE99818"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 182307 183311 . + . gene_id "W7K_08300"; transcript_id "KOE99818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99818-1"; +contig33 ena CDS 182307 183308 . + 0 gene_id "W7K_08300"; transcript_id "KOE99818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99818"; +contig33 ena start_codon 182307 182309 . + 0 gene_id "W7K_08300"; transcript_id "KOE99818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 183309 183311 . + 0 gene_id "W7K_08300"; transcript_id "KOE99818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 183823 184677 . + . gene_id "W7K_08305"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 183823 184677 . + . gene_id "W7K_08305"; transcript_id "KOE99819"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 183823 184677 . + . gene_id "W7K_08305"; transcript_id "KOE99819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99819-1"; +contig33 ena CDS 183823 184674 . + 0 gene_id "W7K_08305"; transcript_id "KOE99819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99819"; +contig33 ena start_codon 183823 183825 . + 0 gene_id "W7K_08305"; transcript_id "KOE99819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 184675 184677 . + 0 gene_id "W7K_08305"; transcript_id "KOE99819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 184732 186057 . - . gene_id "W7K_08310"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 184732 186057 . - . gene_id "W7K_08310"; transcript_id "KOE99820"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 184732 186057 . - . gene_id "W7K_08310"; transcript_id "KOE99820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99820-1"; +contig33 ena CDS 184735 186057 . - 0 gene_id "W7K_08310"; transcript_id "KOE99820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99820"; +contig33 ena start_codon 186055 186057 . - 0 gene_id "W7K_08310"; transcript_id "KOE99820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 184732 184734 . - 0 gene_id "W7K_08310"; transcript_id "KOE99820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 186054 186707 . - . gene_id "W7K_08315"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 186054 186707 . - . gene_id "W7K_08315"; transcript_id "KOE99821"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 186054 186707 . - . gene_id "W7K_08315"; transcript_id "KOE99821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99821-1"; +contig33 ena CDS 186057 186707 . - 0 gene_id "W7K_08315"; transcript_id "KOE99821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99821"; +contig33 ena start_codon 186705 186707 . - 0 gene_id "W7K_08315"; transcript_id "KOE99821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 186054 186056 . - 0 gene_id "W7K_08315"; transcript_id "KOE99821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 186748 187419 . - . gene_id "W7K_08320"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 186748 187419 . - . gene_id "W7K_08320"; transcript_id "KOE99822"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 186748 187419 . - . gene_id "W7K_08320"; transcript_id "KOE99822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99822-1"; +contig33 ena CDS 186751 187419 . - 0 gene_id "W7K_08320"; transcript_id "KOE99822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99822"; +contig33 ena start_codon 187417 187419 . - 0 gene_id "W7K_08320"; transcript_id "KOE99822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 186748 186750 . - 0 gene_id "W7K_08320"; transcript_id "KOE99822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 187679 188185 . + . gene_id "W7K_08325"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 187679 188185 . + . gene_id "W7K_08325"; transcript_id "KOE99823"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 187679 188185 . + . gene_id "W7K_08325"; transcript_id "KOE99823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99823-1"; +contig33 ena CDS 187679 188182 . + 0 gene_id "W7K_08325"; transcript_id "KOE99823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99823"; +contig33 ena start_codon 187679 187681 . + 0 gene_id "W7K_08325"; transcript_id "KOE99823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 188183 188185 . + 0 gene_id "W7K_08325"; transcript_id "KOE99823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 188208 188414 . - . gene_id "W7K_08330"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 188208 188414 . - . gene_id "W7K_08330"; transcript_id "KOE99824"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 188208 188414 . - . gene_id "W7K_08330"; transcript_id "KOE99824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99824-1"; +contig33 ena CDS 188211 188414 . - 0 gene_id "W7K_08330"; transcript_id "KOE99824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99824"; +contig33 ena start_codon 188412 188414 . - 0 gene_id "W7K_08330"; transcript_id "KOE99824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 188208 188210 . - 0 gene_id "W7K_08330"; transcript_id "KOE99824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 188473 188910 . - . gene_id "W7K_08335"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 188473 188910 . - . gene_id "W7K_08335"; transcript_id "KOE99825"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 188473 188910 . - . gene_id "W7K_08335"; transcript_id "KOE99825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99825-1"; +contig33 ena CDS 188476 188910 . - 0 gene_id "W7K_08335"; transcript_id "KOE99825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99825"; +contig33 ena start_codon 188908 188910 . - 0 gene_id "W7K_08335"; transcript_id "KOE99825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 188473 188475 . - 0 gene_id "W7K_08335"; transcript_id "KOE99825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 188979 189746 . - . gene_id "W7K_08340"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 188979 189746 . - . gene_id "W7K_08340"; transcript_id "KOE99868"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 188979 189746 . - . gene_id "W7K_08340"; transcript_id "KOE99868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99868-1"; +contig33 ena CDS 188982 189746 . - 0 gene_id "W7K_08340"; transcript_id "KOE99868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99868"; +contig33 ena start_codon 189744 189746 . - 0 gene_id "W7K_08340"; transcript_id "KOE99868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 188979 188981 . - 0 gene_id "W7K_08340"; transcript_id "KOE99868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 189824 190183 . + . gene_id "W7K_08345"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 189824 190183 . + . gene_id "W7K_08345"; transcript_id "KOE99826"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 189824 190183 . + . gene_id "W7K_08345"; transcript_id "KOE99826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99826-1"; +contig33 ena CDS 189824 190180 . + 0 gene_id "W7K_08345"; transcript_id "KOE99826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99826"; +contig33 ena start_codon 189824 189826 . + 0 gene_id "W7K_08345"; transcript_id "KOE99826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 190181 190183 . + 0 gene_id "W7K_08345"; transcript_id "KOE99826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 190259 190783 . + . gene_id "W7K_08350"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 190259 190783 . + . gene_id "W7K_08350"; transcript_id "KOE99827"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 190259 190783 . + . gene_id "W7K_08350"; transcript_id "KOE99827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99827-1"; +contig33 ena CDS 190259 190780 . + 0 gene_id "W7K_08350"; transcript_id "KOE99827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99827"; +contig33 ena start_codon 190259 190261 . + 0 gene_id "W7K_08350"; transcript_id "KOE99827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 190781 190783 . + 0 gene_id "W7K_08350"; transcript_id "KOE99827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 190859 191431 . + . gene_id "W7K_08355"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 190859 191431 . + . gene_id "W7K_08355"; transcript_id "KOE99828"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 190859 191431 . + . gene_id "W7K_08355"; transcript_id "KOE99828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99828-1"; +contig33 ena CDS 190859 191428 . + 0 gene_id "W7K_08355"; transcript_id "KOE99828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99828"; +contig33 ena start_codon 190859 190861 . + 0 gene_id "W7K_08355"; transcript_id "KOE99828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 191429 191431 . + 0 gene_id "W7K_08355"; transcript_id "KOE99828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 191557 192432 . + . gene_id "W7K_08360"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 191557 192432 . + . gene_id "W7K_08360"; transcript_id "KOE99829"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 191557 192432 . + . gene_id "W7K_08360"; transcript_id "KOE99829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99829-1"; +contig33 ena CDS 191557 192429 . + 0 gene_id "W7K_08360"; transcript_id "KOE99829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99829"; +contig33 ena start_codon 191557 191559 . + 0 gene_id "W7K_08360"; transcript_id "KOE99829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 192430 192432 . + 0 gene_id "W7K_08360"; transcript_id "KOE99829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 192572 193687 . + . gene_id "W7K_08365"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 192572 193687 . + . gene_id "W7K_08365"; transcript_id "KOE99869"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 192572 193687 . + . gene_id "W7K_08365"; transcript_id "KOE99869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99869-1"; +contig33 ena CDS 192572 193684 . + 0 gene_id "W7K_08365"; transcript_id "KOE99869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99869"; +contig33 ena start_codon 192572 192574 . + 0 gene_id "W7K_08365"; transcript_id "KOE99869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 193685 193687 . + 0 gene_id "W7K_08365"; transcript_id "KOE99869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 193734 194627 . - . gene_id "W7K_08370"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 193734 194627 . - . gene_id "W7K_08370"; transcript_id "KOE99830"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 193734 194627 . - . gene_id "W7K_08370"; transcript_id "KOE99830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99830-1"; +contig33 ena CDS 193737 194627 . - 0 gene_id "W7K_08370"; transcript_id "KOE99830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99830"; +contig33 ena start_codon 194625 194627 . - 0 gene_id "W7K_08370"; transcript_id "KOE99830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 193734 193736 . - 0 gene_id "W7K_08370"; transcript_id "KOE99830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 194782 197160 . - . gene_id "W7K_08375"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 194782 197160 . - . gene_id "W7K_08375"; transcript_id "KOE99831"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 194782 197160 . - . gene_id "W7K_08375"; transcript_id "KOE99831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99831-1"; +contig33 ena CDS 194785 197160 . - 0 gene_id "W7K_08375"; transcript_id "KOE99831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99831"; +contig33 ena start_codon 197158 197160 . - 0 gene_id "W7K_08375"; transcript_id "KOE99831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 194782 194784 . - 0 gene_id "W7K_08375"; transcript_id "KOE99831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 197305 198126 . + . gene_id "W7K_08380"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 197305 198126 . + . gene_id "W7K_08380"; transcript_id "KOE99832"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 197305 198126 . + . gene_id "W7K_08380"; transcript_id "KOE99832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99832-1"; +contig33 ena CDS 197305 198123 . + 0 gene_id "W7K_08380"; transcript_id "KOE99832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99832"; +contig33 ena start_codon 197305 197307 . + 0 gene_id "W7K_08380"; transcript_id "KOE99832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 198124 198126 . + 0 gene_id "W7K_08380"; transcript_id "KOE99832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 198274 198783 . + . gene_id "W7K_08385"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 198274 198783 . + . gene_id "W7K_08385"; transcript_id "KOE99833"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 198274 198783 . + . gene_id "W7K_08385"; transcript_id "KOE99833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99833-1"; +contig33 ena CDS 198274 198780 . + 0 gene_id "W7K_08385"; transcript_id "KOE99833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99833"; +contig33 ena start_codon 198274 198276 . + 0 gene_id "W7K_08385"; transcript_id "KOE99833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 198781 198783 . + 0 gene_id "W7K_08385"; transcript_id "KOE99833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 198826 199314 . + . gene_id "W7K_08390"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 198826 199314 . + . gene_id "W7K_08390"; transcript_id "KOE99834"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 198826 199314 . + . gene_id "W7K_08390"; transcript_id "KOE99834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99834-1"; +contig33 ena CDS 198826 199311 . + 0 gene_id "W7K_08390"; transcript_id "KOE99834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99834"; +contig33 ena start_codon 198826 198828 . + 0 gene_id "W7K_08390"; transcript_id "KOE99834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 199312 199314 . + 0 gene_id "W7K_08390"; transcript_id "KOE99834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 199458 200075 . + . gene_id "W7K_08395"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 199458 200075 . + . gene_id "W7K_08395"; transcript_id "KOE99835"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 199458 200075 . + . gene_id "W7K_08395"; transcript_id "KOE99835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99835-1"; +contig33 ena CDS 199458 200072 . + 0 gene_id "W7K_08395"; transcript_id "KOE99835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99835"; +contig33 ena start_codon 199458 199460 . + 0 gene_id "W7K_08395"; transcript_id "KOE99835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 200073 200075 . + 0 gene_id "W7K_08395"; transcript_id "KOE99835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 200193 201554 . + . gene_id "W7K_08400"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 200193 201554 . + . gene_id "W7K_08400"; transcript_id "KOE99836"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 200193 201554 . + . gene_id "W7K_08400"; transcript_id "KOE99836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99836-1"; +contig33 ena CDS 200193 201551 . + 0 gene_id "W7K_08400"; transcript_id "KOE99836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99836"; +contig33 ena start_codon 200193 200195 . + 0 gene_id "W7K_08400"; transcript_id "KOE99836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 201552 201554 . + 0 gene_id "W7K_08400"; transcript_id "KOE99836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 201636 202286 . - . gene_id "W7K_08405"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 201636 202286 . - . gene_id "W7K_08405"; transcript_id "KOE99837"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 201636 202286 . - . gene_id "W7K_08405"; transcript_id "KOE99837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99837-1"; +contig33 ena CDS 201639 202286 . - 0 gene_id "W7K_08405"; transcript_id "KOE99837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99837"; +contig33 ena start_codon 202284 202286 . - 0 gene_id "W7K_08405"; transcript_id "KOE99837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 201636 201638 . - 0 gene_id "W7K_08405"; transcript_id "KOE99837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 202630 203244 . + . gene_id "W7K_08410"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 202630 203244 . + . gene_id "W7K_08410"; transcript_id "KOE99838"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 202630 203244 . + . gene_id "W7K_08410"; transcript_id "KOE99838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99838-1"; +contig33 ena CDS 202630 203241 . + 0 gene_id "W7K_08410"; transcript_id "KOE99838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99838"; +contig33 ena start_codon 202630 202632 . + 0 gene_id "W7K_08410"; transcript_id "KOE99838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 203242 203244 . + 0 gene_id "W7K_08410"; transcript_id "KOE99838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 203267 204331 . + . gene_id "W7K_08415"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 203267 204331 . + . gene_id "W7K_08415"; transcript_id "KOE99839"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 203267 204331 . + . gene_id "W7K_08415"; transcript_id "KOE99839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99839-1"; +contig33 ena CDS 203267 204328 . + 0 gene_id "W7K_08415"; transcript_id "KOE99839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99839"; +contig33 ena start_codon 203267 203269 . + 0 gene_id "W7K_08415"; transcript_id "KOE99839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 204329 204331 . + 0 gene_id "W7K_08415"; transcript_id "KOE99839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 204328 205395 . + . gene_id "W7K_08420"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 204328 205395 . + . gene_id "W7K_08420"; transcript_id "KOE99840"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 204328 205395 . + . gene_id "W7K_08420"; transcript_id "KOE99840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99840-1"; +contig33 ena CDS 204328 205392 . + 0 gene_id "W7K_08420"; transcript_id "KOE99840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99840"; +contig33 ena start_codon 204328 204330 . + 0 gene_id "W7K_08420"; transcript_id "KOE99840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 205393 205395 . + 0 gene_id "W7K_08420"; transcript_id "KOE99840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 205429 205797 . + . gene_id "W7K_08425"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 205429 205797 . + . gene_id "W7K_08425"; transcript_id "KOE99870"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 205429 205797 . + . gene_id "W7K_08425"; transcript_id "KOE99870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99870-1"; +contig33 ena CDS 205429 205794 . + 0 gene_id "W7K_08425"; transcript_id "KOE99870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99870"; +contig33 ena start_codon 205429 205431 . + 0 gene_id "W7K_08425"; transcript_id "KOE99870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 205795 205797 . + 0 gene_id "W7K_08425"; transcript_id "KOE99870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 205863 206066 . + . gene_id "W7K_08430"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 205863 206066 . + . gene_id "W7K_08430"; transcript_id "KOE99841"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 205863 206066 . + . gene_id "W7K_08430"; transcript_id "KOE99841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99841-1"; +contig33 ena CDS 205863 206063 . + 0 gene_id "W7K_08430"; transcript_id "KOE99841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99841"; +contig33 ena start_codon 205863 205865 . + 0 gene_id "W7K_08430"; transcript_id "KOE99841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 206064 206066 . + 0 gene_id "W7K_08430"; transcript_id "KOE99841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 206063 206515 . + . gene_id "W7K_08435"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 206063 206515 . + . gene_id "W7K_08435"; transcript_id "KOE99842"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 206063 206515 . + . gene_id "W7K_08435"; transcript_id "KOE99842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99842-1"; +contig33 ena CDS 206063 206512 . + 0 gene_id "W7K_08435"; transcript_id "KOE99842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99842"; +contig33 ena start_codon 206063 206065 . + 0 gene_id "W7K_08435"; transcript_id "KOE99842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 206513 206515 . + 0 gene_id "W7K_08435"; transcript_id "KOE99842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 207255 207470 . + . gene_id "W7K_08440"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 207255 207470 . + . gene_id "W7K_08440"; transcript_id "KOE99843"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 207255 207470 . + . gene_id "W7K_08440"; transcript_id "KOE99843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99843-1"; +contig33 ena CDS 207255 207467 . + 0 gene_id "W7K_08440"; transcript_id "KOE99843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99843"; +contig33 ena start_codon 207255 207257 . + 0 gene_id "W7K_08440"; transcript_id "KOE99843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 207468 207470 . + 0 gene_id "W7K_08440"; transcript_id "KOE99843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 207678 210059 . + . gene_id "W7K_08445"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 207678 210059 . + . gene_id "W7K_08445"; transcript_id "KOE99844"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 207678 210059 . + . gene_id "W7K_08445"; transcript_id "KOE99844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99844-1"; +contig33 ena CDS 207678 210056 . + 0 gene_id "W7K_08445"; transcript_id "KOE99844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99844"; +contig33 ena start_codon 207678 207680 . + 0 gene_id "W7K_08445"; transcript_id "KOE99844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 210057 210059 . + 0 gene_id "W7K_08445"; transcript_id "KOE99844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 210268 212457 . + . gene_id "W7K_08450"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 210268 212457 . + . gene_id "W7K_08450"; transcript_id "KOE99845"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 210268 212457 . + . gene_id "W7K_08450"; transcript_id "KOE99845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99845-1"; +contig33 ena CDS 210268 212454 . + 0 gene_id "W7K_08450"; transcript_id "KOE99845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99845"; +contig33 ena start_codon 210268 210270 . + 0 gene_id "W7K_08450"; transcript_id "KOE99845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 212455 212457 . + 0 gene_id "W7K_08450"; transcript_id "KOE99845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 212520 212750 . + . gene_id "W7K_08455"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 212520 212750 . + . gene_id "W7K_08455"; transcript_id "KOE99846"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 212520 212750 . + . gene_id "W7K_08455"; transcript_id "KOE99846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99846-1"; +contig33 ena CDS 212520 212747 . + 0 gene_id "W7K_08455"; transcript_id "KOE99846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99846"; +contig33 ena start_codon 212520 212522 . + 0 gene_id "W7K_08455"; transcript_id "KOE99846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 212748 212750 . + 0 gene_id "W7K_08455"; transcript_id "KOE99846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 212790 213878 . - . gene_id "W7K_08460"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 212790 213878 . - . gene_id "W7K_08460"; transcript_id "KOE99847"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 212790 213878 . - . gene_id "W7K_08460"; transcript_id "KOE99847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99847-1"; +contig33 ena CDS 212793 213878 . - 0 gene_id "W7K_08460"; transcript_id "KOE99847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99847"; +contig33 ena start_codon 213876 213878 . - 0 gene_id "W7K_08460"; transcript_id "KOE99847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 212790 212792 . - 0 gene_id "W7K_08460"; transcript_id "KOE99847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 214031 214576 . + . gene_id "W7K_08465"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 214031 214576 . + . gene_id "W7K_08465"; transcript_id "KOE99871"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 214031 214576 . + . gene_id "W7K_08465"; transcript_id "KOE99871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99871-1"; +contig33 ena CDS 214031 214573 . + 0 gene_id "W7K_08465"; transcript_id "KOE99871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99871"; +contig33 ena start_codon 214031 214033 . + 0 gene_id "W7K_08465"; transcript_id "KOE99871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 214574 214576 . + 0 gene_id "W7K_08465"; transcript_id "KOE99871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 214832 216658 . + . gene_id "W7K_08470"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 214832 216658 . + . gene_id "W7K_08470"; transcript_id "KOE99848"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 214832 216658 . + . gene_id "W7K_08470"; transcript_id "KOE99848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99848-1"; +contig33 ena CDS 214832 216655 . + 0 gene_id "W7K_08470"; transcript_id "KOE99848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99848"; +contig33 ena start_codon 214832 214834 . + 0 gene_id "W7K_08470"; transcript_id "KOE99848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 216656 216658 . + 0 gene_id "W7K_08470"; transcript_id "KOE99848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 216655 218091 . - . gene_id "W7K_08475"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 216655 218091 . - . gene_id "W7K_08475"; transcript_id "KOE99849"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 216655 218091 . - . gene_id "W7K_08475"; transcript_id "KOE99849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99849-1"; +contig33 ena CDS 216658 218091 . - 0 gene_id "W7K_08475"; transcript_id "KOE99849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99849"; +contig33 ena start_codon 218089 218091 . - 0 gene_id "W7K_08475"; transcript_id "KOE99849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 216655 216657 . - 0 gene_id "W7K_08475"; transcript_id "KOE99849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 218535 218620 . - . gene_id "W7K_08485"; gene_source "ena"; gene_biotype "tRNA"; +contig33 ena transcript 218535 218620 . - . gene_id "W7K_08485"; transcript_id "EBT00051077641"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_08485"; transcript_source "ena"; transcript_biotype "tRNA"; +contig33 ena exon 218535 218620 . - . gene_id "W7K_08485"; transcript_id "EBT00051077641"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_08485"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_08485-1"; +contig33 ena gene 218753 219133 . + . gene_id "W7K_08490"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 218753 219133 . + . gene_id "W7K_08490"; transcript_id "KOE99850"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 218753 219133 . + . gene_id "W7K_08490"; transcript_id "KOE99850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99850-1"; +contig33 ena CDS 218753 219130 . + 0 gene_id "W7K_08490"; transcript_id "KOE99850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99850"; +contig33 ena start_codon 218753 218755 . + 0 gene_id "W7K_08490"; transcript_id "KOE99850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 219131 219133 . + 0 gene_id "W7K_08490"; transcript_id "KOE99850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 219203 219400 . + . gene_id "W7K_08495"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 219203 219400 . + . gene_id "W7K_08495"; transcript_id "KOE99851"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 219203 219400 . + . gene_id "W7K_08495"; transcript_id "KOE99851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99851-1"; +contig33 ena CDS 219203 219397 . + 0 gene_id "W7K_08495"; transcript_id "KOE99851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99851"; +contig33 ena start_codon 219203 219205 . + 0 gene_id "W7K_08495"; transcript_id "KOE99851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 219398 219400 . + 0 gene_id "W7K_08495"; transcript_id "KOE99851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 219446 220402 . - . gene_id "W7K_08500"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 219446 220402 . - . gene_id "W7K_08500"; transcript_id "KOE99852"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 219446 220402 . - . gene_id "W7K_08500"; transcript_id "KOE99852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99852-1"; +contig33 ena CDS 219449 220402 . - 0 gene_id "W7K_08500"; transcript_id "KOE99852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99852"; +contig33 ena start_codon 220400 220402 . - 0 gene_id "W7K_08500"; transcript_id "KOE99852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 219446 219448 . - 0 gene_id "W7K_08500"; transcript_id "KOE99852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena gene 220480 220896 . + . gene_id "W7K_08505"; gene_source "ena"; gene_biotype "protein_coding"; +contig33 ena transcript 220480 220896 . + . gene_id "W7K_08505"; transcript_id "KOE99853"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena exon 220480 220896 . + . gene_id "W7K_08505"; transcript_id "KOE99853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99853-1"; +contig33 ena CDS 220480 220893 . + 0 gene_id "W7K_08505"; transcript_id "KOE99853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99853"; +contig33 ena start_codon 220480 220482 . + 0 gene_id "W7K_08505"; transcript_id "KOE99853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig33 ena stop_codon 220894 220896 . + 0 gene_id "W7K_08505"; transcript_id "KOE99853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 1 325 . + . gene_id "W7K_04985"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 1 325 . + . gene_id "W7K_04985"; transcript_id "KOF00181"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 1 325 . + . gene_id "W7K_04985"; transcript_id "KOF00181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00181-1"; +contig35 ena CDS 2 322 . + 0 gene_id "W7K_04985"; transcript_id "KOF00181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00181"; +contig35 ena stop_codon 323 325 . + 0 gene_id "W7K_04985"; transcript_id "KOF00181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena five_prime_utr 1 1 . + . gene_id "W7K_04985"; transcript_id "KOF00181"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 449 1342 . + . gene_id "W7K_04990"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 449 1342 . + . gene_id "W7K_04990"; transcript_id "KOF00182"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 449 1342 . + . gene_id "W7K_04990"; transcript_id "KOF00182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00182-1"; +contig35 ena CDS 449 1339 . + 0 gene_id "W7K_04990"; transcript_id "KOF00182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00182"; +contig35 ena start_codon 449 451 . + 0 gene_id "W7K_04990"; transcript_id "KOF00182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 1340 1342 . + 0 gene_id "W7K_04990"; transcript_id "KOF00182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 1360 2379 . - . gene_id "W7K_04995"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 1360 2379 . - . gene_id "W7K_04995"; transcript_id "KOF00183"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 1360 2379 . - . gene_id "W7K_04995"; transcript_id "KOF00183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00183-1"; +contig35 ena CDS 1363 2379 . - 0 gene_id "W7K_04995"; transcript_id "KOF00183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00183"; +contig35 ena start_codon 2377 2379 . - 0 gene_id "W7K_04995"; transcript_id "KOF00183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 1360 1362 . - 0 gene_id "W7K_04995"; transcript_id "KOF00183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 2390 3577 . - . gene_id "W7K_05000"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 2390 3577 . - . gene_id "W7K_05000"; transcript_id "KOF00184"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 2390 3577 . - . gene_id "W7K_05000"; transcript_id "KOF00184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00184-1"; +contig35 ena CDS 2393 3577 . - 0 gene_id "W7K_05000"; transcript_id "KOF00184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00184"; +contig35 ena start_codon 3575 3577 . - 0 gene_id "W7K_05000"; transcript_id "KOF00184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 2390 2392 . - 0 gene_id "W7K_05000"; transcript_id "KOF00184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 3592 4344 . - . gene_id "W7K_05005"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 3592 4344 . - . gene_id "W7K_05005"; transcript_id "KOF00185"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 3592 4344 . - . gene_id "W7K_05005"; transcript_id "KOF00185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00185-1"; +contig35 ena CDS 3595 4344 . - 0 gene_id "W7K_05005"; transcript_id "KOF00185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00185"; +contig35 ena start_codon 4342 4344 . - 0 gene_id "W7K_05005"; transcript_id "KOF00185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 3592 3594 . - 0 gene_id "W7K_05005"; transcript_id "KOF00185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 4405 5709 . - . gene_id "W7K_05010"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 4405 5709 . - . gene_id "W7K_05010"; transcript_id "KOF00186"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 4405 5709 . - . gene_id "W7K_05010"; transcript_id "KOF00186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00186-1"; +contig35 ena CDS 4408 5709 . - 0 gene_id "W7K_05010"; transcript_id "KOF00186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00186"; +contig35 ena start_codon 5707 5709 . - 0 gene_id "W7K_05010"; transcript_id "KOF00186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 4405 4407 . - 0 gene_id "W7K_05010"; transcript_id "KOF00186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 5706 7934 . - . gene_id "W7K_05015"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 5706 7934 . - . gene_id "W7K_05015"; transcript_id "KOF00187"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 5706 7934 . - . gene_id "W7K_05015"; transcript_id "KOF00187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00187-1"; +contig35 ena CDS 5709 7934 . - 0 gene_id "W7K_05015"; transcript_id "KOF00187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00187"; +contig35 ena start_codon 7932 7934 . - 0 gene_id "W7K_05015"; transcript_id "KOF00187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 5706 5708 . - 0 gene_id "W7K_05015"; transcript_id "KOF00187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 7931 9370 . - . gene_id "W7K_05020"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 7931 9370 . - . gene_id "W7K_05020"; transcript_id "KOF00188"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 7931 9370 . - . gene_id "W7K_05020"; transcript_id "KOF00188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00188-1"; +contig35 ena CDS 7934 9370 . - 0 gene_id "W7K_05020"; transcript_id "KOF00188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00188"; +contig35 ena start_codon 9368 9370 . - 0 gene_id "W7K_05020"; transcript_id "KOF00188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 7931 7933 . - 0 gene_id "W7K_05020"; transcript_id "KOF00188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 9612 12503 . + . gene_id "W7K_05025"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 9612 12503 . + . gene_id "W7K_05025"; transcript_id "KOF00189"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 9612 12503 . + . gene_id "W7K_05025"; transcript_id "KOF00189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00189-1"; +contig35 ena CDS 9612 12500 . + 0 gene_id "W7K_05025"; transcript_id "KOF00189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00189"; +contig35 ena start_codon 9612 9614 . + 0 gene_id "W7K_05025"; transcript_id "KOF00189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 12501 12503 . + 0 gene_id "W7K_05025"; transcript_id "KOF00189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 12606 13349 . + . gene_id "W7K_05030"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 12606 13349 . + . gene_id "W7K_05030"; transcript_id "KOF00190"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 12606 13349 . + . gene_id "W7K_05030"; transcript_id "KOF00190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00190-1"; +contig35 ena CDS 12606 13346 . + 0 gene_id "W7K_05030"; transcript_id "KOF00190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00190"; +contig35 ena start_codon 12606 12608 . + 0 gene_id "W7K_05030"; transcript_id "KOF00190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 13347 13349 . + 0 gene_id "W7K_05030"; transcript_id "KOF00190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 13418 14344 . - . gene_id "W7K_05035"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 13418 14344 . - . gene_id "W7K_05035"; transcript_id "KOF00191"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 13418 14344 . - . gene_id "W7K_05035"; transcript_id "KOF00191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00191-1"; +contig35 ena CDS 13421 14344 . - 0 gene_id "W7K_05035"; transcript_id "KOF00191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00191"; +contig35 ena start_codon 14342 14344 . - 0 gene_id "W7K_05035"; transcript_id "KOF00191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 13418 13420 . - 0 gene_id "W7K_05035"; transcript_id "KOF00191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 14774 15475 . + . gene_id "W7K_05040"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 14774 15475 . + . gene_id "W7K_05040"; transcript_id "KOF00192"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 14774 15475 . + . gene_id "W7K_05040"; transcript_id "KOF00192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00192-1"; +contig35 ena CDS 14774 15472 . + 0 gene_id "W7K_05040"; transcript_id "KOF00192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00192"; +contig35 ena start_codon 14774 14776 . + 0 gene_id "W7K_05040"; transcript_id "KOF00192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 15473 15475 . + 0 gene_id "W7K_05040"; transcript_id "KOF00192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 15488 17329 . + . gene_id "W7K_05045"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 15488 17329 . + . gene_id "W7K_05045"; transcript_id "KOF00193"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 15488 17329 . + . gene_id "W7K_05045"; transcript_id "KOF00193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00193-1"; +contig35 ena CDS 15488 17326 . + 0 gene_id "W7K_05045"; transcript_id "KOF00193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00193"; +contig35 ena start_codon 15488 15490 . + 0 gene_id "W7K_05045"; transcript_id "KOF00193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 17327 17329 . + 0 gene_id "W7K_05045"; transcript_id "KOF00193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 17326 18036 . - . gene_id "W7K_05050"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 17326 18036 . - . gene_id "W7K_05050"; transcript_id "KOF00194"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 17326 18036 . - . gene_id "W7K_05050"; transcript_id "KOF00194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00194-1"; +contig35 ena CDS 17329 18036 . - 0 gene_id "W7K_05050"; transcript_id "KOF00194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00194"; +contig35 ena start_codon 18034 18036 . - 0 gene_id "W7K_05050"; transcript_id "KOF00194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 17326 17328 . - 0 gene_id "W7K_05050"; transcript_id "KOF00194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 18049 19407 . - . gene_id "W7K_05055"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 18049 19407 . - . gene_id "W7K_05055"; transcript_id "KOF00195"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 18049 19407 . - . gene_id "W7K_05055"; transcript_id "KOF00195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00195-1"; +contig35 ena CDS 18052 19407 . - 0 gene_id "W7K_05055"; transcript_id "KOF00195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00195"; +contig35 ena start_codon 19405 19407 . - 0 gene_id "W7K_05055"; transcript_id "KOF00195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 18049 18051 . - 0 gene_id "W7K_05055"; transcript_id "KOF00195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 19404 20867 . - . gene_id "W7K_05060"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 19404 20867 . - . gene_id "W7K_05060"; transcript_id "KOF00196"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 19404 20867 . - . gene_id "W7K_05060"; transcript_id "KOF00196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00196-1"; +contig35 ena CDS 19407 20867 . - 0 gene_id "W7K_05060"; transcript_id "KOF00196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00196"; +contig35 ena start_codon 20865 20867 . - 0 gene_id "W7K_05060"; transcript_id "KOF00196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 19404 19406 . - 0 gene_id "W7K_05060"; transcript_id "KOF00196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 20878 23262 . - . gene_id "W7K_05065"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 20878 23262 . - . gene_id "W7K_05065"; transcript_id "KOF00197"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 20878 23262 . - . gene_id "W7K_05065"; transcript_id "KOF00197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00197-1"; +contig35 ena CDS 20881 23262 . - 0 gene_id "W7K_05065"; transcript_id "KOF00197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00197"; +contig35 ena start_codon 23260 23262 . - 0 gene_id "W7K_05065"; transcript_id "KOF00197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 20878 20880 . - 0 gene_id "W7K_05065"; transcript_id "KOF00197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 23436 25085 . + . gene_id "W7K_05070"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 23436 25085 . + . gene_id "W7K_05070"; transcript_id "KOF00198"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 23436 25085 . + . gene_id "W7K_05070"; transcript_id "KOF00198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00198-1"; +contig35 ena CDS 23436 25082 . + 0 gene_id "W7K_05070"; transcript_id "KOF00198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00198"; +contig35 ena start_codon 23436 23438 . + 0 gene_id "W7K_05070"; transcript_id "KOF00198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 25083 25085 . + 0 gene_id "W7K_05070"; transcript_id "KOF00198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 25223 25822 . + . gene_id "W7K_05075"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 25223 25822 . + . gene_id "W7K_05075"; transcript_id "KOF00199"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 25223 25822 . + . gene_id "W7K_05075"; transcript_id "KOF00199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00199-1"; +contig35 ena CDS 25223 25819 . + 0 gene_id "W7K_05075"; transcript_id "KOF00199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00199"; +contig35 ena start_codon 25223 25225 . + 0 gene_id "W7K_05075"; transcript_id "KOF00199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 25820 25822 . + 0 gene_id "W7K_05075"; transcript_id "KOF00199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 25842 27488 . - . gene_id "W7K_05080"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 25842 27488 . - . gene_id "W7K_05080"; transcript_id "KOF00200"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 25842 27488 . - . gene_id "W7K_05080"; transcript_id "KOF00200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00200-1"; +contig35 ena CDS 25845 27488 . - 0 gene_id "W7K_05080"; transcript_id "KOF00200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00200"; +contig35 ena start_codon 27486 27488 . - 0 gene_id "W7K_05080"; transcript_id "KOF00200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 25842 25844 . - 0 gene_id "W7K_05080"; transcript_id "KOF00200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 27618 28292 . + . gene_id "W7K_05085"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 27618 28292 . + . gene_id "W7K_05085"; transcript_id "KOF00201"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 27618 28292 . + . gene_id "W7K_05085"; transcript_id "KOF00201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00201-1"; +contig35 ena CDS 27618 28289 . + 0 gene_id "W7K_05085"; transcript_id "KOF00201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00201"; +contig35 ena start_codon 27618 27620 . + 0 gene_id "W7K_05085"; transcript_id "KOF00201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 28290 28292 . + 0 gene_id "W7K_05085"; transcript_id "KOF00201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 28297 31626 . - . gene_id "W7K_05090"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 28297 31626 . - . gene_id "W7K_05090"; transcript_id "KOF00202"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 28297 31626 . - . gene_id "W7K_05090"; transcript_id "KOF00202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00202-1"; +contig35 ena CDS 28300 31626 . - 0 gene_id "W7K_05090"; transcript_id "KOF00202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00202"; +contig35 ena start_codon 31624 31626 . - 0 gene_id "W7K_05090"; transcript_id "KOF00202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 28297 28299 . - 0 gene_id "W7K_05090"; transcript_id "KOF00202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 31663 32139 . - . gene_id "W7K_05095"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 31663 32139 . - . gene_id "W7K_05095"; transcript_id "KOF00203"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 31663 32139 . - . gene_id "W7K_05095"; transcript_id "KOF00203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00203-1"; +contig35 ena CDS 31666 32139 . - 0 gene_id "W7K_05095"; transcript_id "KOF00203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00203"; +contig35 ena start_codon 32137 32139 . - 0 gene_id "W7K_05095"; transcript_id "KOF00203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 31663 31665 . - 0 gene_id "W7K_05095"; transcript_id "KOF00203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 32136 33014 . - . gene_id "W7K_05100"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 32136 33014 . - . gene_id "W7K_05100"; transcript_id "KOF00204"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 32136 33014 . - . gene_id "W7K_05100"; transcript_id "KOF00204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00204-1"; +contig35 ena CDS 32139 33014 . - 0 gene_id "W7K_05100"; transcript_id "KOF00204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00204"; +contig35 ena start_codon 33012 33014 . - 0 gene_id "W7K_05100"; transcript_id "KOF00204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 32136 32138 . - 0 gene_id "W7K_05100"; transcript_id "KOF00204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 33047 35221 . - . gene_id "W7K_05105"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 33047 35221 . - . gene_id "W7K_05105"; transcript_id "KOF00205"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 33047 35221 . - . gene_id "W7K_05105"; transcript_id "KOF00205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00205-1"; +contig35 ena CDS 33050 35221 . - 0 gene_id "W7K_05105"; transcript_id "KOF00205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00205"; +contig35 ena start_codon 35219 35221 . - 0 gene_id "W7K_05105"; transcript_id "KOF00205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 33047 33049 . - 0 gene_id "W7K_05105"; transcript_id "KOF00205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 35443 36447 . + . gene_id "W7K_05110"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 35443 36447 . + . gene_id "W7K_05110"; transcript_id "KOF00206"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 35443 36447 . + . gene_id "W7K_05110"; transcript_id "KOF00206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00206-1"; +contig35 ena CDS 35443 36444 . + 0 gene_id "W7K_05110"; transcript_id "KOF00206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00206"; +contig35 ena start_codon 35443 35445 . + 0 gene_id "W7K_05110"; transcript_id "KOF00206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 36445 36447 . + 0 gene_id "W7K_05110"; transcript_id "KOF00206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 37024 37839 . + . gene_id "W7K_05115"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 37024 37839 . + . gene_id "W7K_05115"; transcript_id "KOF00351"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 37024 37839 . + . gene_id "W7K_05115"; transcript_id "KOF00351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00351-1"; +contig35 ena CDS 37024 37836 . + 0 gene_id "W7K_05115"; transcript_id "KOF00351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00351"; +contig35 ena start_codon 37024 37026 . + 0 gene_id "W7K_05115"; transcript_id "KOF00351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 37837 37839 . + 0 gene_id "W7K_05115"; transcript_id "KOF00351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 38444 39478 . - . gene_id "W7K_05120"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 38444 39478 . - . gene_id "W7K_05120"; transcript_id "KOF00207"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 38444 39478 . - . gene_id "W7K_05120"; transcript_id "KOF00207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00207-1"; +contig35 ena CDS 38447 39478 . - 0 gene_id "W7K_05120"; transcript_id "KOF00207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00207"; +contig35 ena start_codon 39476 39478 . - 0 gene_id "W7K_05120"; transcript_id "KOF00207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 38444 38446 . - 0 gene_id "W7K_05120"; transcript_id "KOF00207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 39518 40495 . - . gene_id "W7K_05125"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 39518 40495 . - . gene_id "W7K_05125"; transcript_id "KOF00208"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 39518 40495 . - . gene_id "W7K_05125"; transcript_id "KOF00208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00208-1"; +contig35 ena CDS 39521 40495 . - 0 gene_id "W7K_05125"; transcript_id "KOF00208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00208"; +contig35 ena start_codon 40493 40495 . - 0 gene_id "W7K_05125"; transcript_id "KOF00208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 39518 39520 . - 0 gene_id "W7K_05125"; transcript_id "KOF00208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 40552 41139 . - . gene_id "W7K_05130"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 40552 41139 . - . gene_id "W7K_05130"; transcript_id "KOF00209"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 40552 41139 . - . gene_id "W7K_05130"; transcript_id "KOF00209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00209-1"; +contig35 ena CDS 40555 41139 . - 0 gene_id "W7K_05130"; transcript_id "KOF00209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00209"; +contig35 ena start_codon 41137 41139 . - 0 gene_id "W7K_05130"; transcript_id "KOF00209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 40552 40554 . - 0 gene_id "W7K_05130"; transcript_id "KOF00209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 41215 42129 . + . gene_id "W7K_05135"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 41215 42129 . + . gene_id "W7K_05135"; transcript_id "KOF00210"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 41215 42129 . + . gene_id "W7K_05135"; transcript_id "KOF00210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00210-1"; +contig35 ena CDS 41215 42126 . + 0 gene_id "W7K_05135"; transcript_id "KOF00210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00210"; +contig35 ena start_codon 41215 41217 . + 0 gene_id "W7K_05135"; transcript_id "KOF00210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 42127 42129 . + 0 gene_id "W7K_05135"; transcript_id "KOF00210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 42129 43013 . + . gene_id "W7K_05140"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 42129 43013 . + . gene_id "W7K_05140"; transcript_id "KOF00211"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 42129 43013 . + . gene_id "W7K_05140"; transcript_id "KOF00211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00211-1"; +contig35 ena CDS 42129 43010 . + 0 gene_id "W7K_05140"; transcript_id "KOF00211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00211"; +contig35 ena start_codon 42129 42131 . + 0 gene_id "W7K_05140"; transcript_id "KOF00211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 43011 43013 . + 0 gene_id "W7K_05140"; transcript_id "KOF00211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 43290 43670 . + . gene_id "W7K_05145"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 43290 43670 . + . gene_id "W7K_05145"; transcript_id "KOF00212"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 43290 43670 . + . gene_id "W7K_05145"; transcript_id "KOF00212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00212-1"; +contig35 ena CDS 43290 43667 . + 0 gene_id "W7K_05145"; transcript_id "KOF00212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00212"; +contig35 ena start_codon 43290 43292 . + 0 gene_id "W7K_05145"; transcript_id "KOF00212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 43668 43670 . + 0 gene_id "W7K_05145"; transcript_id "KOF00212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 43732 44634 . - . gene_id "W7K_05150"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 43732 44634 . - . gene_id "W7K_05150"; transcript_id "KOF00213"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 43732 44634 . - . gene_id "W7K_05150"; transcript_id "KOF00213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00213-1"; +contig35 ena CDS 43735 44634 . - 0 gene_id "W7K_05150"; transcript_id "KOF00213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00213"; +contig35 ena start_codon 44632 44634 . - 0 gene_id "W7K_05150"; transcript_id "KOF00213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 43732 43734 . - 0 gene_id "W7K_05150"; transcript_id "KOF00213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 44744 45865 . + . gene_id "W7K_05155"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 44744 45865 . + . gene_id "W7K_05155"; transcript_id "KOF00214"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 44744 45865 . + . gene_id "W7K_05155"; transcript_id "KOF00214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00214-1"; +contig35 ena CDS 44744 45862 . + 0 gene_id "W7K_05155"; transcript_id "KOF00214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00214"; +contig35 ena start_codon 44744 44746 . + 0 gene_id "W7K_05155"; transcript_id "KOF00214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 45863 45865 . + 0 gene_id "W7K_05155"; transcript_id "KOF00214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 45941 46999 . + . gene_id "W7K_05160"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 45941 46999 . + . gene_id "W7K_05160"; transcript_id "KOF00215"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 45941 46999 . + . gene_id "W7K_05160"; transcript_id "KOF00215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00215-1"; +contig35 ena CDS 45941 46996 . + 0 gene_id "W7K_05160"; transcript_id "KOF00215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00215"; +contig35 ena start_codon 45941 45943 . + 0 gene_id "W7K_05160"; transcript_id "KOF00215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 46997 46999 . + 0 gene_id "W7K_05160"; transcript_id "KOF00215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 47014 47847 . + . gene_id "W7K_05165"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 47014 47847 . + . gene_id "W7K_05165"; transcript_id "KOF00216"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 47014 47847 . + . gene_id "W7K_05165"; transcript_id "KOF00216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00216-1"; +contig35 ena CDS 47014 47844 . + 0 gene_id "W7K_05165"; transcript_id "KOF00216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00216"; +contig35 ena start_codon 47014 47016 . + 0 gene_id "W7K_05165"; transcript_id "KOF00216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 47845 47847 . + 0 gene_id "W7K_05165"; transcript_id "KOF00216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 47831 48607 . + . gene_id "W7K_05170"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 47831 48607 . + . gene_id "W7K_05170"; transcript_id "KOF00217"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 47831 48607 . + . gene_id "W7K_05170"; transcript_id "KOF00217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00217-1"; +contig35 ena CDS 47831 48604 . + 0 gene_id "W7K_05170"; transcript_id "KOF00217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00217"; +contig35 ena start_codon 47831 47833 . + 0 gene_id "W7K_05170"; transcript_id "KOF00217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 48605 48607 . + 0 gene_id "W7K_05170"; transcript_id "KOF00217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 48742 50175 . + . gene_id "W7K_05175"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 48742 50175 . + . gene_id "W7K_05175"; transcript_id "KOF00218"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 48742 50175 . + . gene_id "W7K_05175"; transcript_id "KOF00218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00218-1"; +contig35 ena CDS 48742 50172 . + 0 gene_id "W7K_05175"; transcript_id "KOF00218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00218"; +contig35 ena start_codon 48742 48744 . + 0 gene_id "W7K_05175"; transcript_id "KOF00218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 50173 50175 . + 0 gene_id "W7K_05175"; transcript_id "KOF00218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 50200 51447 . - . gene_id "W7K_05180"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 50200 51447 . - . gene_id "W7K_05180"; transcript_id "KOF00219"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 50200 51447 . - . gene_id "W7K_05180"; transcript_id "KOF00219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00219-1"; +contig35 ena CDS 50203 51447 . - 0 gene_id "W7K_05180"; transcript_id "KOF00219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00219"; +contig35 ena start_codon 51445 51447 . - 0 gene_id "W7K_05180"; transcript_id "KOF00219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 50200 50202 . - 0 gene_id "W7K_05180"; transcript_id "KOF00219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 51742 52923 . + . gene_id "W7K_05185"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 51742 52923 . + . gene_id "W7K_05185"; transcript_id "KOF00220"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 51742 52923 . + . gene_id "W7K_05185"; transcript_id "KOF00220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00220-1"; +contig35 ena CDS 51742 52920 . + 0 gene_id "W7K_05185"; transcript_id "KOF00220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00220"; +contig35 ena start_codon 51742 51744 . + 0 gene_id "W7K_05185"; transcript_id "KOF00220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 52921 52923 . + 0 gene_id "W7K_05185"; transcript_id "KOF00220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 53030 53242 . + . gene_id "W7K_05190"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 53030 53242 . + . gene_id "W7K_05190"; transcript_id "KOF00221"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 53030 53242 . + . gene_id "W7K_05190"; transcript_id "KOF00221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00221-1"; +contig35 ena CDS 53030 53239 . + 0 gene_id "W7K_05190"; transcript_id "KOF00221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00221"; +contig35 ena start_codon 53030 53032 . + 0 gene_id "W7K_05190"; transcript_id "KOF00221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 53240 53242 . + 0 gene_id "W7K_05190"; transcript_id "KOF00221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 53339 53899 . - . gene_id "W7K_05195"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 53339 53899 . - . gene_id "W7K_05195"; transcript_id "KOF00222"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 53339 53899 . - . gene_id "W7K_05195"; transcript_id "KOF00222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00222-1"; +contig35 ena CDS 53342 53899 . - 0 gene_id "W7K_05195"; transcript_id "KOF00222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00222"; +contig35 ena start_codon 53897 53899 . - 0 gene_id "W7K_05195"; transcript_id "KOF00222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 53339 53341 . - 0 gene_id "W7K_05195"; transcript_id "KOF00222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 54323 57451 . + . gene_id "W7K_05200"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 54323 57451 . + . gene_id "W7K_05200"; transcript_id "KOF00223"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 54323 57451 . + . gene_id "W7K_05200"; transcript_id "KOF00223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00223-1"; +contig35 ena CDS 54323 57448 . + 0 gene_id "W7K_05200"; transcript_id "KOF00223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00223"; +contig35 ena start_codon 54323 54325 . + 0 gene_id "W7K_05200"; transcript_id "KOF00223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 57449 57451 . + 0 gene_id "W7K_05200"; transcript_id "KOF00223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 57582 58340 . + . gene_id "W7K_05205"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 57582 58340 . + . gene_id "W7K_05205"; transcript_id "KOF00224"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 57582 58340 . + . gene_id "W7K_05205"; transcript_id "KOF00224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00224-1"; +contig35 ena CDS 57582 58337 . + 0 gene_id "W7K_05205"; transcript_id "KOF00224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00224"; +contig35 ena start_codon 57582 57584 . + 0 gene_id "W7K_05205"; transcript_id "KOF00224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 58338 58340 . + 0 gene_id "W7K_05205"; transcript_id "KOF00224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 58362 59366 . + . gene_id "W7K_05210"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 58362 59366 . + . gene_id "W7K_05210"; transcript_id "KOF00352"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 58362 59366 . + . gene_id "W7K_05210"; transcript_id "KOF00352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00352-1"; +contig35 ena CDS 58362 59363 . + 0 gene_id "W7K_05210"; transcript_id "KOF00352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00352"; +contig35 ena start_codon 58362 58364 . + 0 gene_id "W7K_05210"; transcript_id "KOF00352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 59364 59366 . + 0 gene_id "W7K_05210"; transcript_id "KOF00352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 59378 60910 . + . gene_id "W7K_05215"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 59378 60910 . + . gene_id "W7K_05215"; transcript_id "KOF00225"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 59378 60910 . + . gene_id "W7K_05215"; transcript_id "KOF00225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00225-1"; +contig35 ena CDS 59378 60907 . + 0 gene_id "W7K_05215"; transcript_id "KOF00225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00225"; +contig35 ena start_codon 59378 59380 . + 0 gene_id "W7K_05215"; transcript_id "KOF00225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 60908 60910 . + 0 gene_id "W7K_05215"; transcript_id "KOF00225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 61074 62567 . + . gene_id "W7K_05220"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 61074 62567 . + . gene_id "W7K_05220"; transcript_id "KOF00226"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 61074 62567 . + . gene_id "W7K_05220"; transcript_id "KOF00226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00226-1"; +contig35 ena CDS 61074 62564 . + 0 gene_id "W7K_05220"; transcript_id "KOF00226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00226"; +contig35 ena start_codon 61074 61076 . + 0 gene_id "W7K_05220"; transcript_id "KOF00226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 62565 62567 . + 0 gene_id "W7K_05220"; transcript_id "KOF00226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 62611 63945 . + . gene_id "W7K_05225"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 62611 63945 . + . gene_id "W7K_05225"; transcript_id "KOF00227"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 62611 63945 . + . gene_id "W7K_05225"; transcript_id "KOF00227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00227-1"; +contig35 ena CDS 62611 63942 . + 0 gene_id "W7K_05225"; transcript_id "KOF00227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00227"; +contig35 ena start_codon 62611 62613 . + 0 gene_id "W7K_05225"; transcript_id "KOF00227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 63943 63945 . + 0 gene_id "W7K_05225"; transcript_id "KOF00227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 63990 65399 . + . gene_id "W7K_05230"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 63990 65399 . + . gene_id "W7K_05230"; transcript_id "KOF00228"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 63990 65399 . + . gene_id "W7K_05230"; transcript_id "KOF00228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00228-1"; +contig35 ena CDS 63990 65396 . + 0 gene_id "W7K_05230"; transcript_id "KOF00228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00228"; +contig35 ena start_codon 63990 63992 . + 0 gene_id "W7K_05230"; transcript_id "KOF00228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 65397 65399 . + 0 gene_id "W7K_05230"; transcript_id "KOF00228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 65405 67954 . + . gene_id "W7K_05235"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 65405 67954 . + . gene_id "W7K_05235"; transcript_id "KOF00353"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 65405 67954 . + . gene_id "W7K_05235"; transcript_id "KOF00353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00353-1"; +contig35 ena CDS 65405 67951 . + 0 gene_id "W7K_05235"; transcript_id "KOF00353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00353"; +contig35 ena start_codon 65405 65407 . + 0 gene_id "W7K_05235"; transcript_id "KOF00353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 67952 67954 . + 0 gene_id "W7K_05235"; transcript_id "KOF00353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 67963 69021 . - . gene_id "W7K_05240"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 67963 69021 . - . gene_id "W7K_05240"; transcript_id "KOF00229"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 67963 69021 . - . gene_id "W7K_05240"; transcript_id "KOF00229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00229-1"; +contig35 ena CDS 67966 69021 . - 0 gene_id "W7K_05240"; transcript_id "KOF00229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00229"; +contig35 ena start_codon 69019 69021 . - 0 gene_id "W7K_05240"; transcript_id "KOF00229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 67963 67965 . - 0 gene_id "W7K_05240"; transcript_id "KOF00229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 69114 71288 . + . gene_id "W7K_05245"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 69114 71288 . + . gene_id "W7K_05245"; transcript_id "KOF00230"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 69114 71288 . + . gene_id "W7K_05245"; transcript_id "KOF00230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00230-1"; +contig35 ena CDS 69114 71285 . + 0 gene_id "W7K_05245"; transcript_id "KOF00230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00230"; +contig35 ena start_codon 69114 69116 . + 0 gene_id "W7K_05245"; transcript_id "KOF00230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 71286 71288 . + 0 gene_id "W7K_05245"; transcript_id "KOF00230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 71321 73273 . + . gene_id "W7K_05250"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 71321 73273 . + . gene_id "W7K_05250"; transcript_id "KOF00231"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 71321 73273 . + . gene_id "W7K_05250"; transcript_id "KOF00231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00231-1"; +contig35 ena CDS 71321 73270 . + 0 gene_id "W7K_05250"; transcript_id "KOF00231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00231"; +contig35 ena start_codon 71321 71323 . + 0 gene_id "W7K_05250"; transcript_id "KOF00231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 73271 73273 . + 0 gene_id "W7K_05250"; transcript_id "KOF00231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 73327 75021 . + . gene_id "W7K_05255"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 73327 75021 . + . gene_id "W7K_05255"; transcript_id "KOF00232"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 73327 75021 . + . gene_id "W7K_05255"; transcript_id "KOF00232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00232-1"; +contig35 ena CDS 73327 75018 . + 0 gene_id "W7K_05255"; transcript_id "KOF00232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00232"; +contig35 ena start_codon 73327 73329 . + 0 gene_id "W7K_05255"; transcript_id "KOF00232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 75019 75021 . + 0 gene_id "W7K_05255"; transcript_id "KOF00232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 75018 77711 . + . gene_id "W7K_05260"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 75018 77711 . + . gene_id "W7K_05260"; transcript_id "KOF00233"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 75018 77711 . + . gene_id "W7K_05260"; transcript_id "KOF00233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00233-1"; +contig35 ena CDS 75018 77708 . + 0 gene_id "W7K_05260"; transcript_id "KOF00233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00233"; +contig35 ena start_codon 75018 75020 . + 0 gene_id "W7K_05260"; transcript_id "KOF00233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 77709 77711 . + 0 gene_id "W7K_05260"; transcript_id "KOF00233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 77771 79255 . + . gene_id "W7K_05265"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 77771 79255 . + . gene_id "W7K_05265"; transcript_id "KOF00234"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 77771 79255 . + . gene_id "W7K_05265"; transcript_id "KOF00234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00234-1"; +contig35 ena CDS 77771 79252 . + 0 gene_id "W7K_05265"; transcript_id "KOF00234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00234"; +contig35 ena start_codon 77771 77773 . + 0 gene_id "W7K_05265"; transcript_id "KOF00234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 79253 79255 . + 0 gene_id "W7K_05265"; transcript_id "KOF00234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 79272 80309 . + . gene_id "W7K_05270"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 79272 80309 . + . gene_id "W7K_05270"; transcript_id "KOF00235"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 79272 80309 . + . gene_id "W7K_05270"; transcript_id "KOF00235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00235-1"; +contig35 ena CDS 79272 80306 . + 0 gene_id "W7K_05270"; transcript_id "KOF00235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00235"; +contig35 ena start_codon 79272 79274 . + 0 gene_id "W7K_05270"; transcript_id "KOF00235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 80307 80309 . + 0 gene_id "W7K_05270"; transcript_id "KOF00235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 80299 81144 . + . gene_id "W7K_05275"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 80299 81144 . + . gene_id "W7K_05275"; transcript_id "KOF00236"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 80299 81144 . + . gene_id "W7K_05275"; transcript_id "KOF00236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00236-1"; +contig35 ena CDS 80299 81141 . + 0 gene_id "W7K_05275"; transcript_id "KOF00236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00236"; +contig35 ena start_codon 80299 80301 . + 0 gene_id "W7K_05275"; transcript_id "KOF00236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 81142 81144 . + 0 gene_id "W7K_05275"; transcript_id "KOF00236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 81258 82511 . - . gene_id "W7K_05280"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 81258 82511 . - . gene_id "W7K_05280"; transcript_id "KOF00237"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 81258 82511 . - . gene_id "W7K_05280"; transcript_id "KOF00237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00237-1"; +contig35 ena CDS 81261 82511 . - 0 gene_id "W7K_05280"; transcript_id "KOF00237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00237"; +contig35 ena start_codon 82509 82511 . - 0 gene_id "W7K_05280"; transcript_id "KOF00237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 81258 81260 . - 0 gene_id "W7K_05280"; transcript_id "KOF00237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 82595 84298 . - . gene_id "W7K_05285"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 82595 84298 . - . gene_id "W7K_05285"; transcript_id "KOF00238"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 82595 84298 . - . gene_id "W7K_05285"; transcript_id "KOF00238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00238-1"; +contig35 ena CDS 82598 84298 . - 0 gene_id "W7K_05285"; transcript_id "KOF00238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00238"; +contig35 ena start_codon 84296 84298 . - 0 gene_id "W7K_05285"; transcript_id "KOF00238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 82595 82597 . - 0 gene_id "W7K_05285"; transcript_id "KOF00238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 84386 85342 . - . gene_id "W7K_05290"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 84386 85342 . - . gene_id "W7K_05290"; transcript_id "KOF00239"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 84386 85342 . - . gene_id "W7K_05290"; transcript_id "KOF00239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00239-1"; +contig35 ena CDS 84389 85342 . - 0 gene_id "W7K_05290"; transcript_id "KOF00239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00239"; +contig35 ena start_codon 85340 85342 . - 0 gene_id "W7K_05290"; transcript_id "KOF00239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 84386 84388 . - 0 gene_id "W7K_05290"; transcript_id "KOF00239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 85339 87849 . - . gene_id "W7K_05295"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 85339 87849 . - . gene_id "W7K_05295"; transcript_id "KOF00240"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 85339 87849 . - . gene_id "W7K_05295"; transcript_id "KOF00240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00240-1"; +contig35 ena CDS 85342 87849 . - 0 gene_id "W7K_05295"; transcript_id "KOF00240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00240"; +contig35 ena start_codon 87847 87849 . - 0 gene_id "W7K_05295"; transcript_id "KOF00240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 85339 85341 . - 0 gene_id "W7K_05295"; transcript_id "KOF00240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 88006 88989 . + . gene_id "W7K_05300"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 88006 88989 . + . gene_id "W7K_05300"; transcript_id "KOF00241"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 88006 88989 . + . gene_id "W7K_05300"; transcript_id "KOF00241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00241-1"; +contig35 ena CDS 88006 88986 . + 0 gene_id "W7K_05300"; transcript_id "KOF00241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00241"; +contig35 ena start_codon 88006 88008 . + 0 gene_id "W7K_05300"; transcript_id "KOF00241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 88987 88989 . + 0 gene_id "W7K_05300"; transcript_id "KOF00241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 89087 89716 . + . gene_id "W7K_05305"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 89087 89716 . + . gene_id "W7K_05305"; transcript_id "KOF00242"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 89087 89716 . + . gene_id "W7K_05305"; transcript_id "KOF00242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00242-1"; +contig35 ena CDS 89087 89713 . + 0 gene_id "W7K_05305"; transcript_id "KOF00242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00242"; +contig35 ena start_codon 89087 89089 . + 0 gene_id "W7K_05305"; transcript_id "KOF00242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 89714 89716 . + 0 gene_id "W7K_05305"; transcript_id "KOF00242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 90271 90648 . - . gene_id "W7K_05310"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 90271 90648 . - . gene_id "W7K_05310"; transcript_id "KOF00243"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 90271 90648 . - . gene_id "W7K_05310"; transcript_id "KOF00243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00243-1"; +contig35 ena CDS 90274 90648 . - 0 gene_id "W7K_05310"; transcript_id "KOF00243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00243"; +contig35 ena start_codon 90646 90648 . - 0 gene_id "W7K_05310"; transcript_id "KOF00243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 90271 90273 . - 0 gene_id "W7K_05310"; transcript_id "KOF00243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 90978 91202 . + . gene_id "W7K_05315"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 90978 91202 . + . gene_id "W7K_05315"; transcript_id "KOF00354"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 90978 91202 . + . gene_id "W7K_05315"; transcript_id "KOF00354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00354-1"; +contig35 ena CDS 90978 91199 . + 0 gene_id "W7K_05315"; transcript_id "KOF00354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00354"; +contig35 ena start_codon 90978 90980 . + 0 gene_id "W7K_05315"; transcript_id "KOF00354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 91200 91202 . + 0 gene_id "W7K_05315"; transcript_id "KOF00354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 91563 94214 . + . gene_id "W7K_05320"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 91563 94214 . + . gene_id "W7K_05320"; transcript_id "KOF00244"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 91563 94214 . + . gene_id "W7K_05320"; transcript_id "KOF00244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00244-1"; +contig35 ena CDS 91563 94211 . + 0 gene_id "W7K_05320"; transcript_id "KOF00244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00244"; +contig35 ena start_codon 91563 91565 . + 0 gene_id "W7K_05320"; transcript_id "KOF00244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 94212 94214 . + 0 gene_id "W7K_05320"; transcript_id "KOF00244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 94306 94614 . + . gene_id "W7K_05325"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 94306 94614 . + . gene_id "W7K_05325"; transcript_id "KOF00245"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 94306 94614 . + . gene_id "W7K_05325"; transcript_id "KOF00245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00245-1"; +contig35 ena CDS 94306 94611 . + 0 gene_id "W7K_05325"; transcript_id "KOF00245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00245"; +contig35 ena start_codon 94306 94308 . + 0 gene_id "W7K_05325"; transcript_id "KOF00245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 94612 94614 . + 0 gene_id "W7K_05325"; transcript_id "KOF00245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 94611 94892 . - . gene_id "W7K_05330"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 94611 94892 . - . gene_id "W7K_05330"; transcript_id "KOF00246"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 94611 94892 . - . gene_id "W7K_05330"; transcript_id "KOF00246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00246-1"; +contig35 ena CDS 94614 94892 . - 0 gene_id "W7K_05330"; transcript_id "KOF00246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00246"; +contig35 ena start_codon 94890 94892 . - 0 gene_id "W7K_05330"; transcript_id "KOF00246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 94611 94613 . - 0 gene_id "W7K_05330"; transcript_id "KOF00246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 95046 95261 . + . gene_id "W7K_05335"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 95046 95261 . + . gene_id "W7K_05335"; transcript_id "KOF00247"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 95046 95261 . + . gene_id "W7K_05335"; transcript_id "KOF00247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00247-1"; +contig35 ena CDS 95046 95258 . + 0 gene_id "W7K_05335"; transcript_id "KOF00247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00247"; +contig35 ena start_codon 95046 95048 . + 0 gene_id "W7K_05335"; transcript_id "KOF00247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 95259 95261 . + 0 gene_id "W7K_05335"; transcript_id "KOF00247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 95851 96150 . + . gene_id "W7K_05340"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 95851 96150 . + . gene_id "W7K_05340"; transcript_id "KOF00248"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 95851 96150 . + . gene_id "W7K_05340"; transcript_id "KOF00248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00248-1"; +contig35 ena CDS 95851 96147 . + 0 gene_id "W7K_05340"; transcript_id "KOF00248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00248"; +contig35 ena start_codon 95851 95853 . + 0 gene_id "W7K_05340"; transcript_id "KOF00248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 96148 96150 . + 0 gene_id "W7K_05340"; transcript_id "KOF00248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 96196 96507 . - . gene_id "W7K_05345"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 96196 96507 . - . gene_id "W7K_05345"; transcript_id "KOF00249"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 96196 96507 . - . gene_id "W7K_05345"; transcript_id "KOF00249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00249-1"; +contig35 ena CDS 96199 96507 . - 0 gene_id "W7K_05345"; transcript_id "KOF00249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00249"; +contig35 ena start_codon 96505 96507 . - 0 gene_id "W7K_05345"; transcript_id "KOF00249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 96196 96198 . - 0 gene_id "W7K_05345"; transcript_id "KOF00249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 96745 97698 . - . gene_id "W7K_05350"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 96745 97698 . - . gene_id "W7K_05350"; transcript_id "KOF00250"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 96745 97698 . - . gene_id "W7K_05350"; transcript_id "KOF00250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00250-1"; +contig35 ena CDS 96748 97698 . - 0 gene_id "W7K_05350"; transcript_id "KOF00250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00250"; +contig35 ena start_codon 97696 97698 . - 0 gene_id "W7K_05350"; transcript_id "KOF00250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 96745 96747 . - 0 gene_id "W7K_05350"; transcript_id "KOF00250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 97868 98461 . + . gene_id "W7K_05355"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 97868 98461 . + . gene_id "W7K_05355"; transcript_id "KOF00251"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 97868 98461 . + . gene_id "W7K_05355"; transcript_id "KOF00251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00251-1"; +contig35 ena CDS 97868 98458 . + 0 gene_id "W7K_05355"; transcript_id "KOF00251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00251"; +contig35 ena start_codon 97868 97870 . + 0 gene_id "W7K_05355"; transcript_id "KOF00251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 98459 98461 . + 0 gene_id "W7K_05355"; transcript_id "KOF00251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 98499 98975 . + . gene_id "W7K_05360"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 98499 98975 . + . gene_id "W7K_05360"; transcript_id "KOF00252"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 98499 98975 . + . gene_id "W7K_05360"; transcript_id "KOF00252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00252-1"; +contig35 ena CDS 98499 98972 . + 0 gene_id "W7K_05360"; transcript_id "KOF00252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00252"; +contig35 ena start_codon 98499 98501 . + 0 gene_id "W7K_05360"; transcript_id "KOF00252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 98973 98975 . + 0 gene_id "W7K_05360"; transcript_id "KOF00252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 99057 99788 . + . gene_id "W7K_05365"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 99057 99788 . + . gene_id "W7K_05365"; transcript_id "KOF00253"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 99057 99788 . + . gene_id "W7K_05365"; transcript_id "KOF00253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00253-1"; +contig35 ena CDS 99057 99785 . + 0 gene_id "W7K_05365"; transcript_id "KOF00253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00253"; +contig35 ena start_codon 99057 99059 . + 0 gene_id "W7K_05365"; transcript_id "KOF00253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 99786 99788 . + 0 gene_id "W7K_05365"; transcript_id "KOF00253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 100057 100704 . + . gene_id "W7K_05370"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 100057 100704 . + . gene_id "W7K_05370"; transcript_id "KOF00254"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 100057 100704 . + . gene_id "W7K_05370"; transcript_id "KOF00254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00254-1"; +contig35 ena CDS 100057 100701 . + 0 gene_id "W7K_05370"; transcript_id "KOF00254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00254"; +contig35 ena start_codon 100057 100059 . + 0 gene_id "W7K_05370"; transcript_id "KOF00254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 100702 100704 . + 0 gene_id "W7K_05370"; transcript_id "KOF00254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 100701 101651 . + . gene_id "W7K_05375"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 100701 101651 . + . gene_id "W7K_05375"; transcript_id "KOF00255"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 100701 101651 . + . gene_id "W7K_05375"; transcript_id "KOF00255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00255-1"; +contig35 ena CDS 100701 101648 . + 0 gene_id "W7K_05375"; transcript_id "KOF00255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00255"; +contig35 ena start_codon 100701 100703 . + 0 gene_id "W7K_05375"; transcript_id "KOF00255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 101649 101651 . + 0 gene_id "W7K_05375"; transcript_id "KOF00255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 101651 103855 . + . gene_id "W7K_05380"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 101651 103855 . + . gene_id "W7K_05380"; transcript_id "KOF00256"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 101651 103855 . + . gene_id "W7K_05380"; transcript_id "KOF00256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00256-1"; +contig35 ena CDS 101651 103852 . + 0 gene_id "W7K_05380"; transcript_id "KOF00256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00256"; +contig35 ena start_codon 101651 101653 . + 0 gene_id "W7K_05380"; transcript_id "KOF00256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 103853 103855 . + 0 gene_id "W7K_05380"; transcript_id "KOF00256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 103864 104925 . + . gene_id "W7K_05385"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 103864 104925 . + . gene_id "W7K_05385"; transcript_id "KOF00257"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 103864 104925 . + . gene_id "W7K_05385"; transcript_id "KOF00257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00257-1"; +contig35 ena CDS 103864 104922 . + 0 gene_id "W7K_05385"; transcript_id "KOF00257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00257"; +contig35 ena start_codon 103864 103866 . + 0 gene_id "W7K_05385"; transcript_id "KOF00257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 104923 104925 . + 0 gene_id "W7K_05385"; transcript_id "KOF00257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 104901 105527 . + . gene_id "W7K_05390"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 104901 105527 . + . gene_id "W7K_05390"; transcript_id "KOF00258"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 104901 105527 . + . gene_id "W7K_05390"; transcript_id "KOF00258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00258-1"; +contig35 ena CDS 104901 105524 . + 0 gene_id "W7K_05390"; transcript_id "KOF00258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00258"; +contig35 ena start_codon 104901 104903 . + 0 gene_id "W7K_05390"; transcript_id "KOF00258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 105525 105527 . + 0 gene_id "W7K_05390"; transcript_id "KOF00258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 105619 106089 . - . gene_id "W7K_05395"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 105619 106089 . - . gene_id "W7K_05395"; transcript_id "KOF00259"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 105619 106089 . - . gene_id "W7K_05395"; transcript_id "KOF00259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00259-1"; +contig35 ena CDS 105622 106089 . - 0 gene_id "W7K_05395"; transcript_id "KOF00259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00259"; +contig35 ena start_codon 106087 106089 . - 0 gene_id "W7K_05395"; transcript_id "KOF00259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 105619 105621 . - 0 gene_id "W7K_05395"; transcript_id "KOF00259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 106090 106446 . - . gene_id "W7K_05400"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 106090 106446 . - . gene_id "W7K_05400"; transcript_id "KOF00260"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 106090 106446 . - . gene_id "W7K_05400"; transcript_id "KOF00260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00260-1"; +contig35 ena CDS 106093 106446 . - 0 gene_id "W7K_05400"; transcript_id "KOF00260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00260"; +contig35 ena start_codon 106444 106446 . - 0 gene_id "W7K_05400"; transcript_id "KOF00260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 106090 106092 . - 0 gene_id "W7K_05400"; transcript_id "KOF00260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 106906 107661 . - . gene_id "W7K_05405"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 106906 107661 . - . gene_id "W7K_05405"; transcript_id "KOF00261"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 106906 107661 . - . gene_id "W7K_05405"; transcript_id "KOF00261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00261-1"; +contig35 ena CDS 106909 107661 . - 0 gene_id "W7K_05405"; transcript_id "KOF00261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00261"; +contig35 ena start_codon 107659 107661 . - 0 gene_id "W7K_05405"; transcript_id "KOF00261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 106906 106908 . - 0 gene_id "W7K_05405"; transcript_id "KOF00261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 107829 108545 . + . gene_id "W7K_05410"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 107829 108545 . + . gene_id "W7K_05410"; transcript_id "KOF00262"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 107829 108545 . + . gene_id "W7K_05410"; transcript_id "KOF00262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00262-1"; +contig35 ena CDS 107829 108542 . + 0 gene_id "W7K_05410"; transcript_id "KOF00262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00262"; +contig35 ena start_codon 107829 107831 . + 0 gene_id "W7K_05410"; transcript_id "KOF00262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 108543 108545 . + 0 gene_id "W7K_05410"; transcript_id "KOF00262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 108817 116430 . + . gene_id "W7K_05415"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 108817 116430 . + . gene_id "W7K_05415"; transcript_id "KOF00263"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 108817 116430 . + . gene_id "W7K_05415"; transcript_id "KOF00263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00263-1"; +contig35 ena CDS 108817 116427 . + 0 gene_id "W7K_05415"; transcript_id "KOF00263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00263"; +contig35 ena start_codon 108817 108819 . + 0 gene_id "W7K_05415"; transcript_id "KOF00263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 116428 116430 . + 0 gene_id "W7K_05415"; transcript_id "KOF00263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 117452 117883 . - . gene_id "W7K_05425"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 117452 117883 . - . gene_id "W7K_05425"; transcript_id "KOF00264"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 117452 117883 . - . gene_id "W7K_05425"; transcript_id "KOF00264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00264-1"; +contig35 ena CDS 117455 117883 . - 0 gene_id "W7K_05425"; transcript_id "KOF00264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00264"; +contig35 ena start_codon 117881 117883 . - 0 gene_id "W7K_05425"; transcript_id "KOF00264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 117452 117454 . - 0 gene_id "W7K_05425"; transcript_id "KOF00264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 118064 120259 . + . gene_id "W7K_05430"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 118064 120259 . + . gene_id "W7K_05430"; transcript_id "KOF00355"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 118064 120259 . + . gene_id "W7K_05430"; transcript_id "KOF00355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00355-1"; +contig35 ena CDS 118064 120256 . + 0 gene_id "W7K_05430"; transcript_id "KOF00355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00355"; +contig35 ena start_codon 118064 118066 . + 0 gene_id "W7K_05430"; transcript_id "KOF00355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 120257 120259 . + 0 gene_id "W7K_05430"; transcript_id "KOF00355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 120334 120819 . + . gene_id "W7K_05435"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 120334 120819 . + . gene_id "W7K_05435"; transcript_id "KOF00265"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 120334 120819 . + . gene_id "W7K_05435"; transcript_id "KOF00265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00265-1"; +contig35 ena CDS 120334 120816 . + 0 gene_id "W7K_05435"; transcript_id "KOF00265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00265"; +contig35 ena start_codon 120334 120336 . + 0 gene_id "W7K_05435"; transcript_id "KOF00265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 120817 120819 . + 0 gene_id "W7K_05435"; transcript_id "KOF00265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 120836 121129 . - . gene_id "W7K_05440"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 120836 121129 . - . gene_id "W7K_05440"; transcript_id "KOF00266"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 120836 121129 . - . gene_id "W7K_05440"; transcript_id "KOF00266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00266-1"; +contig35 ena CDS 120839 121129 . - 0 gene_id "W7K_05440"; transcript_id "KOF00266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00266"; +contig35 ena start_codon 121127 121129 . - 0 gene_id "W7K_05440"; transcript_id "KOF00266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 120836 120838 . - 0 gene_id "W7K_05440"; transcript_id "KOF00266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 121381 123618 . + . gene_id "W7K_05445"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 121381 123618 . + . gene_id "W7K_05445"; transcript_id "KOF00267"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 121381 123618 . + . gene_id "W7K_05445"; transcript_id "KOF00267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00267-1"; +contig35 ena CDS 121381 123615 . + 0 gene_id "W7K_05445"; transcript_id "KOF00267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00267"; +contig35 ena start_codon 121381 121383 . + 0 gene_id "W7K_05445"; transcript_id "KOF00267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 123616 123618 . + 0 gene_id "W7K_05445"; transcript_id "KOF00267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 123615 124082 . + . gene_id "W7K_05450"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 123615 124082 . + . gene_id "W7K_05450"; transcript_id "KOF00268"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 123615 124082 . + . gene_id "W7K_05450"; transcript_id "KOF00268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00268-1"; +contig35 ena CDS 123615 124079 . + 0 gene_id "W7K_05450"; transcript_id "KOF00268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00268"; +contig35 ena start_codon 123615 123617 . + 0 gene_id "W7K_05450"; transcript_id "KOF00268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 124080 124082 . + 0 gene_id "W7K_05450"; transcript_id "KOF00268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 124075 126474 . + . gene_id "W7K_05455"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 124075 126474 . + . gene_id "W7K_05455"; transcript_id "KOF00269"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 124075 126474 . + . gene_id "W7K_05455"; transcript_id "KOF00269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00269-1"; +contig35 ena CDS 124075 126471 . + 0 gene_id "W7K_05455"; transcript_id "KOF00269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00269"; +contig35 ena start_codon 124075 124077 . + 0 gene_id "W7K_05455"; transcript_id "KOF00269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 126472 126474 . + 0 gene_id "W7K_05455"; transcript_id "KOF00269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 126477 127169 . - . gene_id "W7K_05460"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 126477 127169 . - . gene_id "W7K_05460"; transcript_id "KOF00270"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 126477 127169 . - . gene_id "W7K_05460"; transcript_id "KOF00270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00270-1"; +contig35 ena CDS 126480 127169 . - 0 gene_id "W7K_05460"; transcript_id "KOF00270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00270"; +contig35 ena start_codon 127167 127169 . - 0 gene_id "W7K_05460"; transcript_id "KOF00270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 126477 126479 . - 0 gene_id "W7K_05460"; transcript_id "KOF00270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 127181 127855 . - . gene_id "W7K_05465"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 127181 127855 . - . gene_id "W7K_05465"; transcript_id "KOF00271"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 127181 127855 . - . gene_id "W7K_05465"; transcript_id "KOF00271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00271-1"; +contig35 ena CDS 127184 127855 . - 0 gene_id "W7K_05465"; transcript_id "KOF00271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00271"; +contig35 ena start_codon 127853 127855 . - 0 gene_id "W7K_05465"; transcript_id "KOF00271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 127181 127183 . - 0 gene_id "W7K_05465"; transcript_id "KOF00271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 127852 128475 . - . gene_id "W7K_05470"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 127852 128475 . - . gene_id "W7K_05470"; transcript_id "KOF00272"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 127852 128475 . - . gene_id "W7K_05470"; transcript_id "KOF00272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00272-1"; +contig35 ena CDS 127855 128475 . - 0 gene_id "W7K_05470"; transcript_id "KOF00272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00272"; +contig35 ena start_codon 128473 128475 . - 0 gene_id "W7K_05470"; transcript_id "KOF00272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 127852 127854 . - 0 gene_id "W7K_05470"; transcript_id "KOF00272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 128607 129374 . + . gene_id "W7K_05475"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 128607 129374 . + . gene_id "W7K_05475"; transcript_id "KOF00273"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 128607 129374 . + . gene_id "W7K_05475"; transcript_id "KOF00273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00273-1"; +contig35 ena CDS 128607 129371 . + 0 gene_id "W7K_05475"; transcript_id "KOF00273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00273"; +contig35 ena start_codon 128607 128609 . + 0 gene_id "W7K_05475"; transcript_id "KOF00273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 129372 129374 . + 0 gene_id "W7K_05475"; transcript_id "KOF00273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 129456 130406 . + . gene_id "W7K_05480"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 129456 130406 . + . gene_id "W7K_05480"; transcript_id "KOF00274"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 129456 130406 . + . gene_id "W7K_05480"; transcript_id "KOF00274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00274-1"; +contig35 ena CDS 129456 130403 . + 0 gene_id "W7K_05480"; transcript_id "KOF00274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00274"; +contig35 ena start_codon 129456 129458 . + 0 gene_id "W7K_05480"; transcript_id "KOF00274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 130404 130406 . + 0 gene_id "W7K_05480"; transcript_id "KOF00274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 130408 131685 . + . gene_id "W7K_05485"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 130408 131685 . + . gene_id "W7K_05485"; transcript_id "KOF00275"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 130408 131685 . + . gene_id "W7K_05485"; transcript_id "KOF00275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00275-1"; +contig35 ena CDS 130408 131682 . + 0 gene_id "W7K_05485"; transcript_id "KOF00275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00275"; +contig35 ena start_codon 130408 130410 . + 0 gene_id "W7K_05485"; transcript_id "KOF00275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 131683 131685 . + 0 gene_id "W7K_05485"; transcript_id "KOF00275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 131682 132449 . + . gene_id "W7K_05490"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 131682 132449 . + . gene_id "W7K_05490"; transcript_id "KOF00276"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 131682 132449 . + . gene_id "W7K_05490"; transcript_id "KOF00276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00276-1"; +contig35 ena CDS 131682 132446 . + 0 gene_id "W7K_05490"; transcript_id "KOF00276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00276"; +contig35 ena start_codon 131682 131684 . + 0 gene_id "W7K_05490"; transcript_id "KOF00276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 132447 132449 . + 0 gene_id "W7K_05490"; transcript_id "KOF00276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 132446 133705 . + . gene_id "W7K_05495"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 132446 133705 . + . gene_id "W7K_05495"; transcript_id "KOF00277"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 132446 133705 . + . gene_id "W7K_05495"; transcript_id "KOF00277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00277-1"; +contig35 ena CDS 132446 133702 . + 0 gene_id "W7K_05495"; transcript_id "KOF00277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00277"; +contig35 ena start_codon 132446 132448 . + 0 gene_id "W7K_05495"; transcript_id "KOF00277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 133703 133705 . + 0 gene_id "W7K_05495"; transcript_id "KOF00277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 133707 134255 . + . gene_id "W7K_05500"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 133707 134255 . + . gene_id "W7K_05500"; transcript_id "KOF00278"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 133707 134255 . + . gene_id "W7K_05500"; transcript_id "KOF00278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00278-1"; +contig35 ena CDS 133707 134252 . + 0 gene_id "W7K_05500"; transcript_id "KOF00278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00278"; +contig35 ena start_codon 133707 133709 . + 0 gene_id "W7K_05500"; transcript_id "KOF00278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 134253 134255 . + 0 gene_id "W7K_05500"; transcript_id "KOF00278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 134252 135037 . + . gene_id "W7K_05505"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 134252 135037 . + . gene_id "W7K_05505"; transcript_id "KOF00279"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 134252 135037 . + . gene_id "W7K_05505"; transcript_id "KOF00279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00279-1"; +contig35 ena CDS 134252 135034 . + 0 gene_id "W7K_05505"; transcript_id "KOF00279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00279"; +contig35 ena start_codon 134252 134254 . + 0 gene_id "W7K_05505"; transcript_id "KOF00279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 135035 135037 . + 0 gene_id "W7K_05505"; transcript_id "KOF00279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 135034 136107 . + . gene_id "W7K_05510"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 135034 136107 . + . gene_id "W7K_05510"; transcript_id "KOF00280"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 135034 136107 . + . gene_id "W7K_05510"; transcript_id "KOF00280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00280-1"; +contig35 ena CDS 135034 136104 . + 0 gene_id "W7K_05510"; transcript_id "KOF00280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00280"; +contig35 ena start_codon 135034 135036 . + 0 gene_id "W7K_05510"; transcript_id "KOF00280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 136105 136107 . + 0 gene_id "W7K_05510"; transcript_id "KOF00280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 136116 136649 . + . gene_id "W7K_05515"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 136116 136649 . + . gene_id "W7K_05515"; transcript_id "KOF00281"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 136116 136649 . + . gene_id "W7K_05515"; transcript_id "KOF00281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00281-1"; +contig35 ena CDS 136116 136646 . + 0 gene_id "W7K_05515"; transcript_id "KOF00281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00281"; +contig35 ena start_codon 136116 136118 . + 0 gene_id "W7K_05515"; transcript_id "KOF00281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 136647 136649 . + 0 gene_id "W7K_05515"; transcript_id "KOF00281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 136785 137303 . + . gene_id "W7K_05520"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 136785 137303 . + . gene_id "W7K_05520"; transcript_id "KOF00282"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 136785 137303 . + . gene_id "W7K_05520"; transcript_id "KOF00282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00282-1"; +contig35 ena CDS 136785 137300 . + 0 gene_id "W7K_05520"; transcript_id "KOF00282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00282"; +contig35 ena start_codon 136785 136787 . + 0 gene_id "W7K_05520"; transcript_id "KOF00282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 137301 137303 . + 0 gene_id "W7K_05520"; transcript_id "KOF00282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 137477 138103 . + . gene_id "W7K_05525"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 137477 138103 . + . gene_id "W7K_05525"; transcript_id "KOF00283"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 137477 138103 . + . gene_id "W7K_05525"; transcript_id "KOF00283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00283-1"; +contig35 ena CDS 137477 138100 . + 0 gene_id "W7K_05525"; transcript_id "KOF00283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00283"; +contig35 ena start_codon 137477 137479 . + 0 gene_id "W7K_05525"; transcript_id "KOF00283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 138101 138103 . + 0 gene_id "W7K_05525"; transcript_id "KOF00283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 138244 140424 . + . gene_id "W7K_05530"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 138244 140424 . + . gene_id "W7K_05530"; transcript_id "KOF00356"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 138244 140424 . + . gene_id "W7K_05530"; transcript_id "KOF00356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00356-1"; +contig35 ena CDS 138244 140421 . + 0 gene_id "W7K_05530"; transcript_id "KOF00356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00356"; +contig35 ena start_codon 138244 138246 . + 0 gene_id "W7K_05530"; transcript_id "KOF00356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 140422 140424 . + 0 gene_id "W7K_05530"; transcript_id "KOF00356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 140425 141180 . - . gene_id "W7K_05535"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 140425 141180 . - . gene_id "W7K_05535"; transcript_id "KOF00284"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 140425 141180 . - . gene_id "W7K_05535"; transcript_id "KOF00284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00284-1"; +contig35 ena CDS 140428 141180 . - 0 gene_id "W7K_05535"; transcript_id "KOF00284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00284"; +contig35 ena start_codon 141178 141180 . - 0 gene_id "W7K_05535"; transcript_id "KOF00284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 140425 140427 . - 0 gene_id "W7K_05535"; transcript_id "KOF00284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 141291 141563 . - . gene_id "W7K_05540"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 141291 141563 . - . gene_id "W7K_05540"; transcript_id "KOF00285"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 141291 141563 . - . gene_id "W7K_05540"; transcript_id "KOF00285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00285-1"; +contig35 ena CDS 141294 141563 . - 0 gene_id "W7K_05540"; transcript_id "KOF00285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00285"; +contig35 ena start_codon 141561 141563 . - 0 gene_id "W7K_05540"; transcript_id "KOF00285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 141291 141293 . - 0 gene_id "W7K_05540"; transcript_id "KOF00285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 141838 143874 . - . gene_id "W7K_05545"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 141838 143874 . - . gene_id "W7K_05545"; transcript_id "KOF00286"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 141838 143874 . - . gene_id "W7K_05545"; transcript_id "KOF00286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00286-1"; +contig35 ena CDS 141841 143874 . - 0 gene_id "W7K_05545"; transcript_id "KOF00286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00286"; +contig35 ena start_codon 143872 143874 . - 0 gene_id "W7K_05545"; transcript_id "KOF00286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 141838 141840 . - 0 gene_id "W7K_05545"; transcript_id "KOF00286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 144291 145040 . - . gene_id "W7K_05550"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 144291 145040 . - . gene_id "W7K_05550"; transcript_id "KOF00287"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 144291 145040 . - . gene_id "W7K_05550"; transcript_id "KOF00287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00287-1"; +contig35 ena CDS 144294 145040 . - 0 gene_id "W7K_05550"; transcript_id "KOF00287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00287"; +contig35 ena start_codon 145038 145040 . - 0 gene_id "W7K_05550"; transcript_id "KOF00287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 144291 144293 . - 0 gene_id "W7K_05550"; transcript_id "KOF00287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 145104 145865 . - . gene_id "W7K_05555"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 145104 145865 . - . gene_id "W7K_05555"; transcript_id "KOF00288"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 145104 145865 . - . gene_id "W7K_05555"; transcript_id "KOF00288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00288-1"; +contig35 ena CDS 145107 145865 . - 0 gene_id "W7K_05555"; transcript_id "KOF00288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00288"; +contig35 ena start_codon 145863 145865 . - 0 gene_id "W7K_05555"; transcript_id "KOF00288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 145104 145106 . - 0 gene_id "W7K_05555"; transcript_id "KOF00288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 145862 146905 . - . gene_id "W7K_05560"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 145862 146905 . - . gene_id "W7K_05560"; transcript_id "KOF00289"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 145862 146905 . - . gene_id "W7K_05560"; transcript_id "KOF00289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00289-1"; +contig35 ena CDS 145865 146905 . - 0 gene_id "W7K_05560"; transcript_id "KOF00289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00289"; +contig35 ena start_codon 146903 146905 . - 0 gene_id "W7K_05560"; transcript_id "KOF00289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 145862 145864 . - 0 gene_id "W7K_05560"; transcript_id "KOF00289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 146902 147948 . - . gene_id "W7K_05565"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 146902 147948 . - . gene_id "W7K_05565"; transcript_id "KOF00290"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 146902 147948 . - . gene_id "W7K_05565"; transcript_id "KOF00290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00290-1"; +contig35 ena CDS 146905 147948 . - 0 gene_id "W7K_05565"; transcript_id "KOF00290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00290"; +contig35 ena start_codon 147946 147948 . - 0 gene_id "W7K_05565"; transcript_id "KOF00290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 146902 146904 . - 0 gene_id "W7K_05565"; transcript_id "KOF00290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 148000 149376 . - . gene_id "W7K_05570"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 148000 149376 . - . gene_id "W7K_05570"; transcript_id "KOF00291"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 148000 149376 . - . gene_id "W7K_05570"; transcript_id "KOF00291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00291-1"; +contig35 ena CDS 148003 149376 . - 0 gene_id "W7K_05570"; transcript_id "KOF00291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00291"; +contig35 ena start_codon 149374 149376 . - 0 gene_id "W7K_05570"; transcript_id "KOF00291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 148000 148002 . - 0 gene_id "W7K_05570"; transcript_id "KOF00291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 149499 150527 . - . gene_id "W7K_05575"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 149499 150527 . - . gene_id "W7K_05575"; transcript_id "KOF00292"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 149499 150527 . - . gene_id "W7K_05575"; transcript_id "KOF00292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00292-1"; +contig35 ena CDS 149502 150527 . - 0 gene_id "W7K_05575"; transcript_id "KOF00292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00292"; +contig35 ena start_codon 150525 150527 . - 0 gene_id "W7K_05575"; transcript_id "KOF00292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 149499 149501 . - 0 gene_id "W7K_05575"; transcript_id "KOF00292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 151133 151342 . - . gene_id "W7K_05580"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 151133 151342 . - . gene_id "W7K_05580"; transcript_id "KOF00293"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 151133 151342 . - . gene_id "W7K_05580"; transcript_id "KOF00293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00293-1"; +contig35 ena CDS 151136 151342 . - 0 gene_id "W7K_05580"; transcript_id "KOF00293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00293"; +contig35 ena start_codon 151340 151342 . - 0 gene_id "W7K_05580"; transcript_id "KOF00293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 151133 151135 . - 0 gene_id "W7K_05580"; transcript_id "KOF00293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 151341 151976 . + . gene_id "W7K_05585"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 151341 151976 . + . gene_id "W7K_05585"; transcript_id "KOF00294"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 151341 151976 . + . gene_id "W7K_05585"; transcript_id "KOF00294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00294-1"; +contig35 ena CDS 151341 151973 . + 0 gene_id "W7K_05585"; transcript_id "KOF00294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00294"; +contig35 ena start_codon 151341 151343 . + 0 gene_id "W7K_05585"; transcript_id "KOF00294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 151974 151976 . + 0 gene_id "W7K_05585"; transcript_id "KOF00294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 152069 152458 . - . gene_id "W7K_05590"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 152069 152458 . - . gene_id "W7K_05590"; transcript_id "KOF00295"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 152069 152458 . - . gene_id "W7K_05590"; transcript_id "KOF00295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00295-1"; +contig35 ena CDS 152072 152458 . - 0 gene_id "W7K_05590"; transcript_id "KOF00295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00295"; +contig35 ena start_codon 152456 152458 . - 0 gene_id "W7K_05590"; transcript_id "KOF00295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 152069 152071 . - 0 gene_id "W7K_05590"; transcript_id "KOF00295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 152648 154009 . - . gene_id "W7K_05595"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 152648 154009 . - . gene_id "W7K_05595"; transcript_id "KOF00296"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 152648 154009 . - . gene_id "W7K_05595"; transcript_id "KOF00296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00296-1"; +contig35 ena CDS 152651 154009 . - 0 gene_id "W7K_05595"; transcript_id "KOF00296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00296"; +contig35 ena start_codon 154007 154009 . - 0 gene_id "W7K_05595"; transcript_id "KOF00296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 152648 152650 . - 0 gene_id "W7K_05595"; transcript_id "KOF00296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 154120 154758 . - . gene_id "W7K_05600"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 154120 154758 . - . gene_id "W7K_05600"; transcript_id "KOF00297"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 154120 154758 . - . gene_id "W7K_05600"; transcript_id "KOF00297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00297-1"; +contig35 ena CDS 154123 154758 . - 0 gene_id "W7K_05600"; transcript_id "KOF00297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00297"; +contig35 ena start_codon 154756 154758 . - 0 gene_id "W7K_05600"; transcript_id "KOF00297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 154120 154122 . - 0 gene_id "W7K_05600"; transcript_id "KOF00297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 154870 156813 . - . gene_id "W7K_05605"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 154870 156813 . - . gene_id "W7K_05605"; transcript_id "KOF00298"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 154870 156813 . - . gene_id "W7K_05605"; transcript_id "KOF00298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00298-1"; +contig35 ena CDS 154873 156813 . - 0 gene_id "W7K_05605"; transcript_id "KOF00298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00298"; +contig35 ena start_codon 156811 156813 . - 0 gene_id "W7K_05605"; transcript_id "KOF00298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 154870 154872 . - 0 gene_id "W7K_05605"; transcript_id "KOF00298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 156853 159213 . - . gene_id "W7K_05610"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 156853 159213 . - . gene_id "W7K_05610"; transcript_id "KOF00299"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 156853 159213 . - . gene_id "W7K_05610"; transcript_id "KOF00299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00299-1"; +contig35 ena CDS 156856 159213 . - 0 gene_id "W7K_05610"; transcript_id "KOF00299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00299"; +contig35 ena start_codon 159211 159213 . - 0 gene_id "W7K_05610"; transcript_id "KOF00299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 156853 156855 . - 0 gene_id "W7K_05610"; transcript_id "KOF00299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 159447 160418 . + . gene_id "W7K_05615"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 159447 160418 . + . gene_id "W7K_05615"; transcript_id "KOF00300"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 159447 160418 . + . gene_id "W7K_05615"; transcript_id "KOF00300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00300-1"; +contig35 ena CDS 159447 160415 . + 0 gene_id "W7K_05615"; transcript_id "KOF00300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00300"; +contig35 ena start_codon 159447 159449 . + 0 gene_id "W7K_05615"; transcript_id "KOF00300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 160416 160418 . + 0 gene_id "W7K_05615"; transcript_id "KOF00300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 160521 161645 . + . gene_id "W7K_05620"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 160521 161645 . + . gene_id "W7K_05620"; transcript_id "KOF00301"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 160521 161645 . + . gene_id "W7K_05620"; transcript_id "KOF00301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00301-1"; +contig35 ena CDS 160521 161642 . + 0 gene_id "W7K_05620"; transcript_id "KOF00301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00301"; +contig35 ena start_codon 160521 160523 . + 0 gene_id "W7K_05620"; transcript_id "KOF00301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 161643 161645 . + 0 gene_id "W7K_05620"; transcript_id "KOF00301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 161769 163037 . - . gene_id "W7K_05625"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 161769 163037 . - . gene_id "W7K_05625"; transcript_id "KOF00302"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 161769 163037 . - . gene_id "W7K_05625"; transcript_id "KOF00302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00302-1"; +contig35 ena CDS 161772 163037 . - 0 gene_id "W7K_05625"; transcript_id "KOF00302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00302"; +contig35 ena start_codon 163035 163037 . - 0 gene_id "W7K_05625"; transcript_id "KOF00302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 161769 161771 . - 0 gene_id "W7K_05625"; transcript_id "KOF00302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 163110 163850 . + . gene_id "W7K_05630"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 163110 163850 . + . gene_id "W7K_05630"; transcript_id "KOF00357"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 163110 163850 . + . gene_id "W7K_05630"; transcript_id "KOF00357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00357-1"; +contig35 ena CDS 163110 163847 . + 0 gene_id "W7K_05630"; transcript_id "KOF00357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00357"; +contig35 ena start_codon 163110 163112 . + 0 gene_id "W7K_05630"; transcript_id "KOF00357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 163848 163850 . + 0 gene_id "W7K_05630"; transcript_id "KOF00357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 163937 164155 . + . gene_id "W7K_05635"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 163937 164155 . + . gene_id "W7K_05635"; transcript_id "KOF00303"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 163937 164155 . + . gene_id "W7K_05635"; transcript_id "KOF00303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00303-1"; +contig35 ena CDS 163937 164152 . + 0 gene_id "W7K_05635"; transcript_id "KOF00303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00303"; +contig35 ena start_codon 163937 163939 . + 0 gene_id "W7K_05635"; transcript_id "KOF00303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 164153 164155 . + 0 gene_id "W7K_05635"; transcript_id "KOF00303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 164327 164599 . + . gene_id "W7K_05640"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 164327 164599 . + . gene_id "W7K_05640"; transcript_id "KOF00304"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 164327 164599 . + . gene_id "W7K_05640"; transcript_id "KOF00304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00304-1"; +contig35 ena CDS 164327 164596 . + 0 gene_id "W7K_05640"; transcript_id "KOF00304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00304"; +contig35 ena start_codon 164327 164329 . + 0 gene_id "W7K_05640"; transcript_id "KOF00304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 164597 164599 . + 0 gene_id "W7K_05640"; transcript_id "KOF00304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 164729 165106 . + . gene_id "W7K_05645"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 164729 165106 . + . gene_id "W7K_05645"; transcript_id "KOF00305"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 164729 165106 . + . gene_id "W7K_05645"; transcript_id "KOF00305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00305-1"; +contig35 ena CDS 164729 165103 . + 0 gene_id "W7K_05645"; transcript_id "KOF00305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00305"; +contig35 ena start_codon 164729 164731 . + 0 gene_id "W7K_05645"; transcript_id "KOF00305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 165104 165106 . + 0 gene_id "W7K_05645"; transcript_id "KOF00305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 165175 167460 . - . gene_id "W7K_05650"; gene_name "clpA"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 165175 167460 . - . gene_id "W7K_05650"; transcript_id "KOF00306"; gene_name "clpA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 165175 167460 . - . gene_id "W7K_05650"; transcript_id "KOF00306"; exon_number "1"; gene_name "clpA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00306-1"; +contig35 ena CDS 165178 167460 . - 0 gene_id "W7K_05650"; transcript_id "KOF00306"; exon_number "1"; gene_name "clpA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00306"; +contig35 ena start_codon 167458 167460 . - 0 gene_id "W7K_05650"; transcript_id "KOF00306"; exon_number "1"; gene_name "clpA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 165175 165177 . - 0 gene_id "W7K_05650"; transcript_id "KOF00306"; exon_number "1"; gene_name "clpA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 167599 168411 . + . gene_id "W7K_05655"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 167599 168411 . + . gene_id "W7K_05655"; transcript_id "KOF00307"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 167599 168411 . + . gene_id "W7K_05655"; transcript_id "KOF00307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00307-1"; +contig35 ena CDS 167599 168408 . + 0 gene_id "W7K_05655"; transcript_id "KOF00307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00307"; +contig35 ena start_codon 167599 167601 . + 0 gene_id "W7K_05655"; transcript_id "KOF00307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 168409 168411 . + 0 gene_id "W7K_05655"; transcript_id "KOF00307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 168516 168842 . - . gene_id "W7K_05660"; gene_name "clpS"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 168516 168842 . - . gene_id "W7K_05660"; transcript_id "KOF00308"; gene_name "clpS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 168516 168842 . - . gene_id "W7K_05660"; transcript_id "KOF00308"; exon_number "1"; gene_name "clpS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00308-1"; +contig35 ena CDS 168519 168842 . - 0 gene_id "W7K_05660"; transcript_id "KOF00308"; exon_number "1"; gene_name "clpS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00308"; +contig35 ena start_codon 168840 168842 . - 0 gene_id "W7K_05660"; transcript_id "KOF00308"; exon_number "1"; gene_name "clpS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 168516 168518 . - 0 gene_id "W7K_05660"; transcript_id "KOF00308"; exon_number "1"; gene_name "clpS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "clpS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 168955 169428 . + . gene_id "W7K_05665"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 168955 169428 . + . gene_id "W7K_05665"; transcript_id "KOF00309"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 168955 169428 . + . gene_id "W7K_05665"; transcript_id "KOF00309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00309-1"; +contig35 ena CDS 168955 169425 . + 0 gene_id "W7K_05665"; transcript_id "KOF00309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00309"; +contig35 ena start_codon 168955 168957 . + 0 gene_id "W7K_05665"; transcript_id "KOF00309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 169426 169428 . + 0 gene_id "W7K_05665"; transcript_id "KOF00309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 169430 169891 . + . gene_id "W7K_05670"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 169430 169891 . + . gene_id "W7K_05670"; transcript_id "KOF00310"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 169430 169891 . + . gene_id "W7K_05670"; transcript_id "KOF00310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00310-1"; +contig35 ena CDS 169430 169888 . + 0 gene_id "W7K_05670"; transcript_id "KOF00310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00310"; +contig35 ena start_codon 169430 169432 . + 0 gene_id "W7K_05670"; transcript_id "KOF00310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 169889 169891 . + 0 gene_id "W7K_05670"; transcript_id "KOF00310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 169888 171030 . + . gene_id "W7K_05675"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 169888 171030 . + . gene_id "W7K_05675"; transcript_id "KOF00311"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 169888 171030 . + . gene_id "W7K_05675"; transcript_id "KOF00311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00311-1"; +contig35 ena CDS 169888 171027 . + 0 gene_id "W7K_05675"; transcript_id "KOF00311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00311"; +contig35 ena start_codon 169888 169890 . + 0 gene_id "W7K_05675"; transcript_id "KOF00311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 171028 171030 . + 0 gene_id "W7K_05675"; transcript_id "KOF00311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 171027 171641 . + . gene_id "W7K_05680"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 171027 171641 . + . gene_id "W7K_05680"; transcript_id "KOF00312"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 171027 171641 . + . gene_id "W7K_05680"; transcript_id "KOF00312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00312-1"; +contig35 ena CDS 171027 171638 . + 0 gene_id "W7K_05680"; transcript_id "KOF00312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00312"; +contig35 ena start_codon 171027 171029 . + 0 gene_id "W7K_05680"; transcript_id "KOF00312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 171639 171641 . + 0 gene_id "W7K_05680"; transcript_id "KOF00312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 171805 172995 . + . gene_id "W7K_05685"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 171805 172995 . + . gene_id "W7K_05685"; transcript_id "KOF00313"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 171805 172995 . + . gene_id "W7K_05685"; transcript_id "KOF00313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00313-1"; +contig35 ena CDS 171805 172992 . + 0 gene_id "W7K_05685"; transcript_id "KOF00313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00313"; +contig35 ena start_codon 171805 171807 . + 0 gene_id "W7K_05685"; transcript_id "KOF00313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 172993 172995 . + 0 gene_id "W7K_05685"; transcript_id "KOF00313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 173094 173309 . + . gene_id "W7K_05690"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 173094 173309 . + . gene_id "W7K_05690"; transcript_id "KOF00314"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 173094 173309 . + . gene_id "W7K_05690"; transcript_id "KOF00314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00314-1"; +contig35 ena CDS 173094 173306 . + 0 gene_id "W7K_05690"; transcript_id "KOF00314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00314"; +contig35 ena start_codon 173094 173096 . + 0 gene_id "W7K_05690"; transcript_id "KOF00314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 173307 173309 . + 0 gene_id "W7K_05690"; transcript_id "KOF00314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 173451 173957 . + . gene_id "W7K_05695"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 173451 173957 . + . gene_id "W7K_05695"; transcript_id "KOF00315"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 173451 173957 . + . gene_id "W7K_05695"; transcript_id "KOF00315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00315-1"; +contig35 ena CDS 173451 173954 . + 0 gene_id "W7K_05695"; transcript_id "KOF00315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00315"; +contig35 ena start_codon 173451 173453 . + 0 gene_id "W7K_05695"; transcript_id "KOF00315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 173955 173957 . + 0 gene_id "W7K_05695"; transcript_id "KOF00315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 174099 176858 . - . gene_id "W7K_05700"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 174099 176858 . - . gene_id "W7K_05700"; transcript_id "KOF00316"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 174099 176858 . - . gene_id "W7K_05700"; transcript_id "KOF00316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00316-1"; +contig35 ena CDS 174102 176858 . - 0 gene_id "W7K_05700"; transcript_id "KOF00316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00316"; +contig35 ena start_codon 176856 176858 . - 0 gene_id "W7K_05700"; transcript_id "KOF00316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 174099 174101 . - 0 gene_id "W7K_05700"; transcript_id "KOF00316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 176990 179092 . + . gene_id "W7K_05705"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 176990 179092 . + . gene_id "W7K_05705"; transcript_id "KOF00317"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 176990 179092 . + . gene_id "W7K_05705"; transcript_id "KOF00317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00317-1"; +contig35 ena CDS 176990 179089 . + 0 gene_id "W7K_05705"; transcript_id "KOF00317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00317"; +contig35 ena start_codon 176990 176992 . + 0 gene_id "W7K_05705"; transcript_id "KOF00317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 179090 179092 . + 0 gene_id "W7K_05705"; transcript_id "KOF00317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 179097 180869 . + . gene_id "W7K_05710"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 179097 180869 . + . gene_id "W7K_05710"; transcript_id "KOF00318"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 179097 180869 . + . gene_id "W7K_05710"; transcript_id "KOF00318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00318-1"; +contig35 ena CDS 179097 180866 . + 0 gene_id "W7K_05710"; transcript_id "KOF00318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00318"; +contig35 ena start_codon 179097 179099 . + 0 gene_id "W7K_05710"; transcript_id "KOF00318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 180867 180869 . + 0 gene_id "W7K_05710"; transcript_id "KOF00318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 180887 182107 . - . gene_id "W7K_05715"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 180887 182107 . - . gene_id "W7K_05715"; transcript_id "KOF00319"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 180887 182107 . - . gene_id "W7K_05715"; transcript_id "KOF00319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00319-1"; +contig35 ena CDS 180890 182107 . - 0 gene_id "W7K_05715"; transcript_id "KOF00319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00319"; +contig35 ena start_codon 182105 182107 . - 0 gene_id "W7K_05715"; transcript_id "KOF00319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 180887 180889 . - 0 gene_id "W7K_05715"; transcript_id "KOF00319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 182199 182537 . - . gene_id "W7K_05720"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 182199 182537 . - . gene_id "W7K_05720"; transcript_id "KOF00320"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 182199 182537 . - . gene_id "W7K_05720"; transcript_id "KOF00320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00320-1"; +contig35 ena CDS 182202 182537 . - 0 gene_id "W7K_05720"; transcript_id "KOF00320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00320"; +contig35 ena start_codon 182535 182537 . - 0 gene_id "W7K_05720"; transcript_id "KOF00320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 182199 182201 . - 0 gene_id "W7K_05720"; transcript_id "KOF00320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 182534 182839 . - . gene_id "W7K_05725"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 182534 182839 . - . gene_id "W7K_05725"; transcript_id "KOF00321"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 182534 182839 . - . gene_id "W7K_05725"; transcript_id "KOF00321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00321-1"; +contig35 ena CDS 182537 182839 . - 0 gene_id "W7K_05725"; transcript_id "KOF00321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00321"; +contig35 ena start_codon 182837 182839 . - 0 gene_id "W7K_05725"; transcript_id "KOF00321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 182534 182536 . - 0 gene_id "W7K_05725"; transcript_id "KOF00321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 182915 183571 . - . gene_id "W7K_05730"; gene_name "flgA"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 182915 183571 . - . gene_id "W7K_05730"; transcript_id "KOF00322"; gene_name "flgA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 182915 183571 . - . gene_id "W7K_05730"; transcript_id "KOF00322"; exon_number "1"; gene_name "flgA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00322-1"; +contig35 ena CDS 182918 183571 . - 0 gene_id "W7K_05730"; transcript_id "KOF00322"; exon_number "1"; gene_name "flgA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00322"; +contig35 ena start_codon 183569 183571 . - 0 gene_id "W7K_05730"; transcript_id "KOF00322"; exon_number "1"; gene_name "flgA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 182915 182917 . - 0 gene_id "W7K_05730"; transcript_id "KOF00322"; exon_number "1"; gene_name "flgA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 183752 184696 . + . gene_id "W7K_05735"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 183752 184696 . + . gene_id "W7K_05735"; transcript_id "KOF00323"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 183752 184696 . + . gene_id "W7K_05735"; transcript_id "KOF00323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00323-1"; +contig35 ena CDS 183752 184693 . + 0 gene_id "W7K_05735"; transcript_id "KOF00323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00323"; +contig35 ena start_codon 183752 183754 . + 0 gene_id "W7K_05735"; transcript_id "KOF00323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 184694 184696 . + 0 gene_id "W7K_05735"; transcript_id "KOF00323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 184853 185248 . + . gene_id "W7K_05740"; gene_name "flgB"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 184853 185248 . + . gene_id "W7K_05740"; transcript_id "KOF00324"; gene_name "flgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 184853 185248 . + . gene_id "W7K_05740"; transcript_id "KOF00324"; exon_number "1"; gene_name "flgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00324-1"; +contig35 ena CDS 184853 185245 . + 0 gene_id "W7K_05740"; transcript_id "KOF00324"; exon_number "1"; gene_name "flgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00324"; +contig35 ena start_codon 184853 184855 . + 0 gene_id "W7K_05740"; transcript_id "KOF00324"; exon_number "1"; gene_name "flgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 185246 185248 . + 0 gene_id "W7K_05740"; transcript_id "KOF00324"; exon_number "1"; gene_name "flgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 185252 185659 . + . gene_id "W7K_05745"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 185252 185659 . + . gene_id "W7K_05745"; transcript_id "KOF00325"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 185252 185659 . + . gene_id "W7K_05745"; transcript_id "KOF00325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00325-1"; +contig35 ena CDS 185252 185656 . + 0 gene_id "W7K_05745"; transcript_id "KOF00325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00325"; +contig35 ena start_codon 185252 185254 . + 0 gene_id "W7K_05745"; transcript_id "KOF00325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 185657 185659 . + 0 gene_id "W7K_05745"; transcript_id "KOF00325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 185683 186366 . + . gene_id "W7K_05750"; gene_name "flgD"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 185683 186366 . + . gene_id "W7K_05750"; transcript_id "KOF00326"; gene_name "flgD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 185683 186366 . + . gene_id "W7K_05750"; transcript_id "KOF00326"; exon_number "1"; gene_name "flgD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00326-1"; +contig35 ena CDS 185683 186363 . + 0 gene_id "W7K_05750"; transcript_id "KOF00326"; exon_number "1"; gene_name "flgD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00326"; +contig35 ena start_codon 185683 185685 . + 0 gene_id "W7K_05750"; transcript_id "KOF00326"; exon_number "1"; gene_name "flgD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 186364 186366 . + 0 gene_id "W7K_05750"; transcript_id "KOF00326"; exon_number "1"; gene_name "flgD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 186399 187622 . + . gene_id "W7K_05755"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 186399 187622 . + . gene_id "W7K_05755"; transcript_id "KOF00327"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 186399 187622 . + . gene_id "W7K_05755"; transcript_id "KOF00327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00327-1"; +contig35 ena CDS 186399 187619 . + 0 gene_id "W7K_05755"; transcript_id "KOF00327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00327"; +contig35 ena start_codon 186399 186401 . + 0 gene_id "W7K_05755"; transcript_id "KOF00327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 187620 187622 . + 0 gene_id "W7K_05755"; transcript_id "KOF00327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 187655 188404 . + . gene_id "W7K_05760"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 187655 188404 . + . gene_id "W7K_05760"; transcript_id "KOF00328"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 187655 188404 . + . gene_id "W7K_05760"; transcript_id "KOF00328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00328-1"; +contig35 ena CDS 187655 188401 . + 0 gene_id "W7K_05760"; transcript_id "KOF00328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00328"; +contig35 ena start_codon 187655 187657 . + 0 gene_id "W7K_05760"; transcript_id "KOF00328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 188402 188404 . + 0 gene_id "W7K_05760"; transcript_id "KOF00328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 188507 189292 . + . gene_id "W7K_05765"; gene_name "flgG"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 188507 189292 . + . gene_id "W7K_05765"; transcript_id "KOF00329"; gene_name "flgG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 188507 189292 . + . gene_id "W7K_05765"; transcript_id "KOF00329"; exon_number "1"; gene_name "flgG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00329-1"; +contig35 ena CDS 188507 189289 . + 0 gene_id "W7K_05765"; transcript_id "KOF00329"; exon_number "1"; gene_name "flgG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00329"; +contig35 ena start_codon 188507 188509 . + 0 gene_id "W7K_05765"; transcript_id "KOF00329"; exon_number "1"; gene_name "flgG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 189290 189292 . + 0 gene_id "W7K_05765"; transcript_id "KOF00329"; exon_number "1"; gene_name "flgG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 189315 190007 . + . gene_id "W7K_05770"; gene_name "flgH"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 189315 190007 . + . gene_id "W7K_05770"; transcript_id "KOF00330"; gene_name "flgH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 189315 190007 . + . gene_id "W7K_05770"; transcript_id "KOF00330"; exon_number "1"; gene_name "flgH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00330-1"; +contig35 ena CDS 189315 190004 . + 0 gene_id "W7K_05770"; transcript_id "KOF00330"; exon_number "1"; gene_name "flgH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00330"; +contig35 ena start_codon 189315 189317 . + 0 gene_id "W7K_05770"; transcript_id "KOF00330"; exon_number "1"; gene_name "flgH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 190005 190007 . + 0 gene_id "W7K_05770"; transcript_id "KOF00330"; exon_number "1"; gene_name "flgH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 190010 191152 . + . gene_id "W7K_05775"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 190010 191152 . + . gene_id "W7K_05775"; transcript_id "KOF00331"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 190010 191152 . + . gene_id "W7K_05775"; transcript_id "KOF00331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00331-1"; +contig35 ena CDS 190010 191149 . + 0 gene_id "W7K_05775"; transcript_id "KOF00331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00331"; +contig35 ena start_codon 190010 190012 . + 0 gene_id "W7K_05775"; transcript_id "KOF00331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 191150 191152 . + 0 gene_id "W7K_05775"; transcript_id "KOF00331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 191154 192353 . + . gene_id "W7K_05780"; gene_name "flgJ"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 191154 192353 . + . gene_id "W7K_05780"; transcript_id "KOF00332"; gene_name "flgJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 191154 192353 . + . gene_id "W7K_05780"; transcript_id "KOF00332"; exon_number "1"; gene_name "flgJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00332-1"; +contig35 ena CDS 191154 192350 . + 0 gene_id "W7K_05780"; transcript_id "KOF00332"; exon_number "1"; gene_name "flgJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00332"; +contig35 ena start_codon 191154 191156 . + 0 gene_id "W7K_05780"; transcript_id "KOF00332"; exon_number "1"; gene_name "flgJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 192351 192353 . + 0 gene_id "W7K_05780"; transcript_id "KOF00332"; exon_number "1"; gene_name "flgJ"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgJ-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 192362 194242 . + . gene_id "W7K_05785"; gene_name "flgK"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 192362 194242 . + . gene_id "W7K_05785"; transcript_id "KOF00333"; gene_name "flgK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 192362 194242 . + . gene_id "W7K_05785"; transcript_id "KOF00333"; exon_number "1"; gene_name "flgK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00333-1"; +contig35 ena CDS 192362 194239 . + 0 gene_id "W7K_05785"; transcript_id "KOF00333"; exon_number "1"; gene_name "flgK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00333"; +contig35 ena start_codon 192362 192364 . + 0 gene_id "W7K_05785"; transcript_id "KOF00333"; exon_number "1"; gene_name "flgK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 194240 194242 . + 0 gene_id "W7K_05785"; transcript_id "KOF00333"; exon_number "1"; gene_name "flgK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "flgK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 194239 195441 . + . gene_id "W7K_05790"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 194239 195441 . + . gene_id "W7K_05790"; transcript_id "KOF00334"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 194239 195441 . + . gene_id "W7K_05790"; transcript_id "KOF00334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00334-1"; +contig35 ena CDS 194239 195438 . + 0 gene_id "W7K_05790"; transcript_id "KOF00334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00334"; +contig35 ena start_codon 194239 194241 . + 0 gene_id "W7K_05790"; transcript_id "KOF00334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 195439 195441 . + 0 gene_id "W7K_05790"; transcript_id "KOF00334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 195846 197021 . + . gene_id "W7K_05795"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 195846 197021 . + . gene_id "W7K_05795"; transcript_id "KOF00335"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 195846 197021 . + . gene_id "W7K_05795"; transcript_id "KOF00335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00335-1"; +contig35 ena CDS 195846 197018 . + 0 gene_id "W7K_05795"; transcript_id "KOF00335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00335"; +contig35 ena start_codon 195846 195848 . + 0 gene_id "W7K_05795"; transcript_id "KOF00335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 197019 197021 . + 0 gene_id "W7K_05795"; transcript_id "KOF00335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 197094 198323 . + . gene_id "W7K_05800"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 197094 198323 . + . gene_id "W7K_05800"; transcript_id "KOF00336"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 197094 198323 . + . gene_id "W7K_05800"; transcript_id "KOF00336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00336-1"; +contig35 ena CDS 197094 198320 . + 0 gene_id "W7K_05800"; transcript_id "KOF00336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00336"; +contig35 ena start_codon 197094 197096 . + 0 gene_id "W7K_05800"; transcript_id "KOF00336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 198321 198323 . + 0 gene_id "W7K_05800"; transcript_id "KOF00336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 198763 200181 . + . gene_id "W7K_05805"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 198763 200181 . + . gene_id "W7K_05805"; transcript_id "KOF00337"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 198763 200181 . + . gene_id "W7K_05805"; transcript_id "KOF00337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00337-1"; +contig35 ena CDS 198763 200178 . + 0 gene_id "W7K_05805"; transcript_id "KOF00337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00337"; +contig35 ena start_codon 198763 198765 . + 0 gene_id "W7K_05805"; transcript_id "KOF00337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 200179 200181 . + 0 gene_id "W7K_05805"; transcript_id "KOF00337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 200310 200726 . + . gene_id "W7K_05810"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 200310 200726 . + . gene_id "W7K_05810"; transcript_id "KOF00338"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 200310 200726 . + . gene_id "W7K_05810"; transcript_id "KOF00338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00338-1"; +contig35 ena CDS 200310 200723 . + 0 gene_id "W7K_05810"; transcript_id "KOF00338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00338"; +contig35 ena start_codon 200310 200312 . + 0 gene_id "W7K_05810"; transcript_id "KOF00338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 200724 200726 . + 0 gene_id "W7K_05810"; transcript_id "KOF00338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 200723 201016 . + . gene_id "W7K_05815"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 200723 201016 . + . gene_id "W7K_05815"; transcript_id "KOF00339"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 200723 201016 . + . gene_id "W7K_05815"; transcript_id "KOF00339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00339-1"; +contig35 ena CDS 200723 201013 . + 0 gene_id "W7K_05815"; transcript_id "KOF00339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00339"; +contig35 ena start_codon 200723 200725 . + 0 gene_id "W7K_05815"; transcript_id "KOF00339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 201014 201016 . + 0 gene_id "W7K_05815"; transcript_id "KOF00339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 201013 201591 . + . gene_id "W7K_05820"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 201013 201591 . + . gene_id "W7K_05820"; transcript_id "KOF00340"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 201013 201591 . + . gene_id "W7K_05820"; transcript_id "KOF00340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00340-1"; +contig35 ena CDS 201013 201588 . + 0 gene_id "W7K_05820"; transcript_id "KOF00340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00340"; +contig35 ena start_codon 201013 201015 . + 0 gene_id "W7K_05820"; transcript_id "KOF00340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 201589 201591 . + 0 gene_id "W7K_05820"; transcript_id "KOF00340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 201683 202315 . + . gene_id "W7K_05825"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 201683 202315 . + . gene_id "W7K_05825"; transcript_id "KOF00341"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 201683 202315 . + . gene_id "W7K_05825"; transcript_id "KOF00341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00341-1"; +contig35 ena CDS 201683 202312 . + 0 gene_id "W7K_05825"; transcript_id "KOF00341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00341"; +contig35 ena start_codon 201683 201685 . + 0 gene_id "W7K_05825"; transcript_id "KOF00341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 202313 202315 . + 0 gene_id "W7K_05825"; transcript_id "KOF00341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 202639 204048 . + . gene_id "W7K_05830"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 202639 204048 . + . gene_id "W7K_05830"; transcript_id "KOF00342"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 202639 204048 . + . gene_id "W7K_05830"; transcript_id "KOF00342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00342-1"; +contig35 ena CDS 202639 204045 . + 0 gene_id "W7K_05830"; transcript_id "KOF00342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00342"; +contig35 ena start_codon 202639 202641 . + 0 gene_id "W7K_05830"; transcript_id "KOF00342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 204046 204048 . + 0 gene_id "W7K_05830"; transcript_id "KOF00342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 204063 204440 . + . gene_id "W7K_05835"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 204063 204440 . + . gene_id "W7K_05835"; transcript_id "KOF00343"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 204063 204440 . + . gene_id "W7K_05835"; transcript_id "KOF00343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00343-1"; +contig35 ena CDS 204063 204437 . + 0 gene_id "W7K_05835"; transcript_id "KOF00343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00343"; +contig35 ena start_codon 204063 204065 . + 0 gene_id "W7K_05835"; transcript_id "KOF00343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 204438 204440 . + 0 gene_id "W7K_05835"; transcript_id "KOF00343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 204437 205942 . + . gene_id "W7K_05840"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 204437 205942 . + . gene_id "W7K_05840"; transcript_id "KOF00344"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 204437 205942 . + . gene_id "W7K_05840"; transcript_id "KOF00344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00344-1"; +contig35 ena CDS 204437 205939 . + 0 gene_id "W7K_05840"; transcript_id "KOF00344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00344"; +contig35 ena start_codon 204437 204439 . + 0 gene_id "W7K_05840"; transcript_id "KOF00344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 205940 205942 . + 0 gene_id "W7K_05840"; transcript_id "KOF00344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 206512 206877 . + . gene_id "W7K_05845"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 206512 206877 . + . gene_id "W7K_05845"; transcript_id "KOF00345"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 206512 206877 . + . gene_id "W7K_05845"; transcript_id "KOF00345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00345-1"; +contig35 ena CDS 206512 206874 . + 0 gene_id "W7K_05845"; transcript_id "KOF00345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00345"; +contig35 ena start_codon 206512 206514 . + 0 gene_id "W7K_05845"; transcript_id "KOF00345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 206875 206877 . + 0 gene_id "W7K_05845"; transcript_id "KOF00345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 206891 208537 . + . gene_id "W7K_05850"; gene_name "fliF"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 206891 208537 . + . gene_id "W7K_05850"; transcript_id "KOF00346"; gene_name "fliF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 206891 208537 . + . gene_id "W7K_05850"; transcript_id "KOF00346"; exon_number "1"; gene_name "fliF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00346-1"; +contig35 ena CDS 206891 208534 . + 0 gene_id "W7K_05850"; transcript_id "KOF00346"; exon_number "1"; gene_name "fliF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00346"; +contig35 ena start_codon 206891 206893 . + 0 gene_id "W7K_05850"; transcript_id "KOF00346"; exon_number "1"; gene_name "fliF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 208535 208537 . + 0 gene_id "W7K_05850"; transcript_id "KOF00346"; exon_number "1"; gene_name "fliF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 208545 209531 . + . gene_id "W7K_05855"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 208545 209531 . + . gene_id "W7K_05855"; transcript_id "KOF00358"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 208545 209531 . + . gene_id "W7K_05855"; transcript_id "KOF00358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00358-1"; +contig35 ena CDS 208545 209528 . + 0 gene_id "W7K_05855"; transcript_id "KOF00358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00358"; +contig35 ena start_codon 208545 208547 . + 0 gene_id "W7K_05855"; transcript_id "KOF00358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 209529 209531 . + 0 gene_id "W7K_05855"; transcript_id "KOF00358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 209528 210169 . + . gene_id "W7K_05860"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 209528 210169 . + . gene_id "W7K_05860"; transcript_id "KOF00347"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 209528 210169 . + . gene_id "W7K_05860"; transcript_id "KOF00347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00347-1"; +contig35 ena CDS 209528 210166 . + 0 gene_id "W7K_05860"; transcript_id "KOF00347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00347"; +contig35 ena start_codon 209528 209530 . + 0 gene_id "W7K_05860"; transcript_id "KOF00347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 210167 210169 . + 0 gene_id "W7K_05860"; transcript_id "KOF00347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 210166 211551 . + . gene_id "W7K_05865"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 210166 211551 . + . gene_id "W7K_05865"; transcript_id "KOF00348"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 210166 211551 . + . gene_id "W7K_05865"; transcript_id "KOF00348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00348-1"; +contig35 ena CDS 210166 211548 . + 0 gene_id "W7K_05865"; transcript_id "KOF00348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00348"; +contig35 ena start_codon 210166 210168 . + 0 gene_id "W7K_05865"; transcript_id "KOF00348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 211549 211551 . + 0 gene_id "W7K_05865"; transcript_id "KOF00348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 211555 212022 . + . gene_id "W7K_05870"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 211555 212022 . + . gene_id "W7K_05870"; transcript_id "KOF00349"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 211555 212022 . + . gene_id "W7K_05870"; transcript_id "KOF00349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00349-1"; +contig35 ena CDS 211555 212019 . + 0 gene_id "W7K_05870"; transcript_id "KOF00349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00349"; +contig35 ena start_codon 211555 211557 . + 0 gene_id "W7K_05870"; transcript_id "KOF00349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 212020 212022 . + 0 gene_id "W7K_05870"; transcript_id "KOF00349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena gene 212022 213167 . + . gene_id "W7K_05875"; gene_source "ena"; gene_biotype "protein_coding"; +contig35 ena transcript 212022 213167 . + . gene_id "W7K_05875"; transcript_id "KOF00350"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena exon 212022 213167 . + . gene_id "W7K_05875"; transcript_id "KOF00350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00350-1"; +contig35 ena CDS 212022 213164 . + 0 gene_id "W7K_05875"; transcript_id "KOF00350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00350"; +contig35 ena start_codon 212022 212024 . + 0 gene_id "W7K_05875"; transcript_id "KOF00350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig35 ena stop_codon 213165 213167 . + 0 gene_id "W7K_05875"; transcript_id "KOF00350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 465 2513 . + . gene_id "W7K_13595"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 465 2513 . + . gene_id "W7K_13595"; transcript_id "KOE98514"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 465 2513 . + . gene_id "W7K_13595"; transcript_id "KOE98514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98514-1"; +contig22 ena CDS 465 2510 . + 0 gene_id "W7K_13595"; transcript_id "KOE98514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98514"; +contig22 ena start_codon 465 467 . + 0 gene_id "W7K_13595"; transcript_id "KOE98514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 2511 2513 . + 0 gene_id "W7K_13595"; transcript_id "KOE98514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 2523 3236 . + . gene_id "W7K_13600"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 2523 3236 . + . gene_id "W7K_13600"; transcript_id "KOE98515"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 2523 3236 . + . gene_id "W7K_13600"; transcript_id "KOE98515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98515-1"; +contig22 ena CDS 2523 3233 . + 0 gene_id "W7K_13600"; transcript_id "KOE98515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98515"; +contig22 ena start_codon 2523 2525 . + 0 gene_id "W7K_13600"; transcript_id "KOE98515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 3234 3236 . + 0 gene_id "W7K_13600"; transcript_id "KOE98515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 3809 4693 . - . gene_id "W7K_13605"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 3809 4693 . - . gene_id "W7K_13605"; transcript_id "KOE98516"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 3809 4693 . - . gene_id "W7K_13605"; transcript_id "KOE98516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98516-1"; +contig22 ena CDS 3812 4693 . - 0 gene_id "W7K_13605"; transcript_id "KOE98516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98516"; +contig22 ena start_codon 4691 4693 . - 0 gene_id "W7K_13605"; transcript_id "KOE98516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 3809 3811 . - 0 gene_id "W7K_13605"; transcript_id "KOE98516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 4693 5640 . - . gene_id "W7K_13610"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 4693 5640 . - . gene_id "W7K_13610"; transcript_id "KOE98517"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 4693 5640 . - . gene_id "W7K_13610"; transcript_id "KOE98517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98517-1"; +contig22 ena CDS 4696 5640 . - 0 gene_id "W7K_13610"; transcript_id "KOE98517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98517"; +contig22 ena start_codon 5638 5640 . - 0 gene_id "W7K_13610"; transcript_id "KOE98517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 4693 4695 . - 0 gene_id "W7K_13610"; transcript_id "KOE98517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 5881 6282 . + . gene_id "W7K_13615"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 5881 6282 . + . gene_id "W7K_13615"; transcript_id "KOE98518"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 5881 6282 . + . gene_id "W7K_13615"; transcript_id "KOE98518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98518-1"; +contig22 ena CDS 5881 6279 . + 0 gene_id "W7K_13615"; transcript_id "KOE98518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98518"; +contig22 ena start_codon 5881 5883 . + 0 gene_id "W7K_13615"; transcript_id "KOE98518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 6280 6282 . + 0 gene_id "W7K_13615"; transcript_id "KOE98518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 6301 6663 . + . gene_id "W7K_13620"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 6301 6663 . + . gene_id "W7K_13620"; transcript_id "KOE98519"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 6301 6663 . + . gene_id "W7K_13620"; transcript_id "KOE98519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98519-1"; +contig22 ena CDS 6301 6660 . + 0 gene_id "W7K_13620"; transcript_id "KOE98519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98519"; +contig22 ena start_codon 6301 6303 . + 0 gene_id "W7K_13620"; transcript_id "KOE98519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 6661 6663 . + 0 gene_id "W7K_13620"; transcript_id "KOE98519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 6663 7193 . + . gene_id "W7K_13625"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 6663 7193 . + . gene_id "W7K_13625"; transcript_id "KOE98520"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 6663 7193 . + . gene_id "W7K_13625"; transcript_id "KOE98520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98520-1"; +contig22 ena CDS 6663 7190 . + 0 gene_id "W7K_13625"; transcript_id "KOE98520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98520"; +contig22 ena start_codon 6663 6665 . + 0 gene_id "W7K_13625"; transcript_id "KOE98520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 7191 7193 . + 0 gene_id "W7K_13625"; transcript_id "KOE98520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 7235 9271 . + . gene_id "W7K_13630"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 7235 9271 . + . gene_id "W7K_13630"; transcript_id "KOE98521"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 7235 9271 . + . gene_id "W7K_13630"; transcript_id "KOE98521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98521-1"; +contig22 ena CDS 7235 9268 . + 0 gene_id "W7K_13630"; transcript_id "KOE98521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98521"; +contig22 ena start_codon 7235 7237 . + 0 gene_id "W7K_13630"; transcript_id "KOE98521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 9269 9271 . + 0 gene_id "W7K_13630"; transcript_id "KOE98521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 9372 16064 . + . gene_id "W7K_13635"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 9372 16064 . + . gene_id "W7K_13635"; transcript_id "KOE98522"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 9372 16064 . + . gene_id "W7K_13635"; transcript_id "KOE98522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98522-1"; +contig22 ena CDS 9372 16061 . + 0 gene_id "W7K_13635"; transcript_id "KOE98522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98522"; +contig22 ena start_codon 9372 9374 . + 0 gene_id "W7K_13635"; transcript_id "KOE98522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 16062 16064 . + 0 gene_id "W7K_13635"; transcript_id "KOE98522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 16051 17391 . + . gene_id "W7K_13640"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 16051 17391 . + . gene_id "W7K_13640"; transcript_id "KOE98523"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 16051 17391 . + . gene_id "W7K_13640"; transcript_id "KOE98523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98523-1"; +contig22 ena CDS 16051 17388 . + 0 gene_id "W7K_13640"; transcript_id "KOE98523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98523"; +contig22 ena start_codon 16051 16053 . + 0 gene_id "W7K_13640"; transcript_id "KOE98523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 17389 17391 . + 0 gene_id "W7K_13640"; transcript_id "KOE98523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 17388 17852 . + . gene_id "W7K_13645"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 17388 17852 . + . gene_id "W7K_13645"; transcript_id "KOE98524"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 17388 17852 . + . gene_id "W7K_13645"; transcript_id "KOE98524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98524-1"; +contig22 ena CDS 17388 17849 . + 0 gene_id "W7K_13645"; transcript_id "KOE98524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98524"; +contig22 ena start_codon 17388 17390 . + 0 gene_id "W7K_13645"; transcript_id "KOE98524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 17850 17852 . + 0 gene_id "W7K_13645"; transcript_id "KOE98524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 17957 18694 . - . gene_id "W7K_13650"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 17957 18694 . - . gene_id "W7K_13650"; transcript_id "KOE98525"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 17957 18694 . - . gene_id "W7K_13650"; transcript_id "KOE98525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98525-1"; +contig22 ena CDS 17960 18694 . - 0 gene_id "W7K_13650"; transcript_id "KOE98525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98525"; +contig22 ena start_codon 18692 18694 . - 0 gene_id "W7K_13650"; transcript_id "KOE98525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 17957 17959 . - 0 gene_id "W7K_13650"; transcript_id "KOE98525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 18685 20076 . - . gene_id "W7K_13655"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 18685 20076 . - . gene_id "W7K_13655"; transcript_id "KOE98526"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 18685 20076 . - . gene_id "W7K_13655"; transcript_id "KOE98526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98526-1"; +contig22 ena CDS 18688 20076 . - 0 gene_id "W7K_13655"; transcript_id "KOE98526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98526"; +contig22 ena start_codon 20074 20076 . - 0 gene_id "W7K_13655"; transcript_id "KOE98526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 18685 18687 . - 0 gene_id "W7K_13655"; transcript_id "KOE98526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 20154 20717 . + . gene_id "W7K_13660"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 20154 20717 . + . gene_id "W7K_13660"; transcript_id "KOE98527"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 20154 20717 . + . gene_id "W7K_13660"; transcript_id "KOE98527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98527-1"; +contig22 ena CDS 20154 20714 . + 0 gene_id "W7K_13660"; transcript_id "KOE98527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98527"; +contig22 ena start_codon 20154 20156 . + 0 gene_id "W7K_13660"; transcript_id "KOE98527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 20715 20717 . + 0 gene_id "W7K_13660"; transcript_id "KOE98527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 20714 21517 . + . gene_id "W7K_13665"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 20714 21517 . + . gene_id "W7K_13665"; transcript_id "KOE98528"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 20714 21517 . + . gene_id "W7K_13665"; transcript_id "KOE98528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98528-1"; +contig22 ena CDS 20714 21514 . + 0 gene_id "W7K_13665"; transcript_id "KOE98528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98528"; +contig22 ena start_codon 20714 20716 . + 0 gene_id "W7K_13665"; transcript_id "KOE98528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 21515 21517 . + 0 gene_id "W7K_13665"; transcript_id "KOE98528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 21531 22370 . + . gene_id "W7K_13670"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 21531 22370 . + . gene_id "W7K_13670"; transcript_id "KOE98529"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 21531 22370 . + . gene_id "W7K_13670"; transcript_id "KOE98529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98529-1"; +contig22 ena CDS 21531 22367 . + 0 gene_id "W7K_13670"; transcript_id "KOE98529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98529"; +contig22 ena start_codon 21531 21533 . + 0 gene_id "W7K_13670"; transcript_id "KOE98529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 22368 22370 . + 0 gene_id "W7K_13670"; transcript_id "KOE98529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 22367 22696 . + . gene_id "W7K_13675"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 22367 22696 . + . gene_id "W7K_13675"; transcript_id "KOE98530"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 22367 22696 . + . gene_id "W7K_13675"; transcript_id "KOE98530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98530-1"; +contig22 ena CDS 22367 22693 . + 0 gene_id "W7K_13675"; transcript_id "KOE98530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98530"; +contig22 ena start_codon 22367 22369 . + 0 gene_id "W7K_13675"; transcript_id "KOE98530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 22694 22696 . + 0 gene_id "W7K_13675"; transcript_id "KOE98530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 22857 23159 . + . gene_id "W7K_13680"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 22857 23159 . + . gene_id "W7K_13680"; transcript_id "KOE98531"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 22857 23159 . + . gene_id "W7K_13680"; transcript_id "KOE98531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98531-1"; +contig22 ena CDS 22857 23156 . + 0 gene_id "W7K_13680"; transcript_id "KOE98531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98531"; +contig22 ena start_codon 22857 22859 . + 0 gene_id "W7K_13680"; transcript_id "KOE98531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 23157 23159 . + 0 gene_id "W7K_13680"; transcript_id "KOE98531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 23226 24185 . + . gene_id "W7K_13685"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 23226 24185 . + . gene_id "W7K_13685"; transcript_id "KOE98532"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 23226 24185 . + . gene_id "W7K_13685"; transcript_id "KOE98532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98532-1"; +contig22 ena CDS 23226 24182 . + 0 gene_id "W7K_13685"; transcript_id "KOE98532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98532"; +contig22 ena start_codon 23226 23228 . + 0 gene_id "W7K_13685"; transcript_id "KOE98532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 24183 24185 . + 0 gene_id "W7K_13685"; transcript_id "KOE98532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 24187 24630 . + . gene_id "W7K_13690"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 24187 24630 . + . gene_id "W7K_13690"; transcript_id "KOE98533"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 24187 24630 . + . gene_id "W7K_13690"; transcript_id "KOE98533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98533-1"; +contig22 ena CDS 24187 24627 . + 0 gene_id "W7K_13690"; transcript_id "KOE98533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98533"; +contig22 ena start_codon 24187 24189 . + 0 gene_id "W7K_13690"; transcript_id "KOE98533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 24628 24630 . + 0 gene_id "W7K_13690"; transcript_id "KOE98533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 24775 25887 . + . gene_id "W7K_13695"; gene_name "gcvT"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 24775 25887 . + . gene_id "W7K_13695"; transcript_id "KOE98534"; gene_name "gcvT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gcvT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 24775 25887 . + . gene_id "W7K_13695"; transcript_id "KOE98534"; exon_number "1"; gene_name "gcvT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gcvT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98534-1"; +contig22 ena CDS 24775 25884 . + 0 gene_id "W7K_13695"; transcript_id "KOE98534"; exon_number "1"; gene_name "gcvT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gcvT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98534"; +contig22 ena start_codon 24775 24777 . + 0 gene_id "W7K_13695"; transcript_id "KOE98534"; exon_number "1"; gene_name "gcvT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gcvT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 25885 25887 . + 0 gene_id "W7K_13695"; transcript_id "KOE98534"; exon_number "1"; gene_name "gcvT"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gcvT-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 25981 26376 . + . gene_id "W7K_13700"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 25981 26376 . + . gene_id "W7K_13700"; transcript_id "KOE98535"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 25981 26376 . + . gene_id "W7K_13700"; transcript_id "KOE98535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98535-1"; +contig22 ena CDS 25981 26373 . + 0 gene_id "W7K_13700"; transcript_id "KOE98535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98535"; +contig22 ena start_codon 25981 25983 . + 0 gene_id "W7K_13700"; transcript_id "KOE98535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 26374 26376 . + 0 gene_id "W7K_13700"; transcript_id "KOE98535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 27152 27658 . + . gene_id "W7K_13705"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 27152 27658 . + . gene_id "W7K_13705"; transcript_id "KOE98536"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 27152 27658 . + . gene_id "W7K_13705"; transcript_id "KOE98536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98536-1"; +contig22 ena CDS 27152 27655 . + 0 gene_id "W7K_13705"; transcript_id "KOE98536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98536"; +contig22 ena start_codon 27152 27154 . + 0 gene_id "W7K_13705"; transcript_id "KOE98536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 27656 27658 . + 0 gene_id "W7K_13705"; transcript_id "KOE98536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 27779 28672 . - . gene_id "W7K_13710"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 27779 28672 . - . gene_id "W7K_13710"; transcript_id "KOE98537"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 27779 28672 . - . gene_id "W7K_13710"; transcript_id "KOE98537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98537-1"; +contig22 ena CDS 27782 28672 . - 0 gene_id "W7K_13710"; transcript_id "KOE98537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98537"; +contig22 ena start_codon 28670 28672 . - 0 gene_id "W7K_13710"; transcript_id "KOE98537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 27779 27781 . - 0 gene_id "W7K_13710"; transcript_id "KOE98537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 28787 29545 . + . gene_id "W7K_13715"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 28787 29545 . + . gene_id "W7K_13715"; transcript_id "KOE98538"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 28787 29545 . + . gene_id "W7K_13715"; transcript_id "KOE98538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98538-1"; +contig22 ena CDS 28787 29542 . + 0 gene_id "W7K_13715"; transcript_id "KOE98538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98538"; +contig22 ena start_codon 28787 28789 . + 0 gene_id "W7K_13715"; transcript_id "KOE98538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 29543 29545 . + 0 gene_id "W7K_13715"; transcript_id "KOE98538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 29687 31084 . - . gene_id "W7K_13720"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 29687 31084 . - . gene_id "W7K_13720"; transcript_id "KOE98539"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 29687 31084 . - . gene_id "W7K_13720"; transcript_id "KOE98539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98539-1"; +contig22 ena CDS 29690 31084 . - 0 gene_id "W7K_13720"; transcript_id "KOE98539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98539"; +contig22 ena start_codon 31082 31084 . - 0 gene_id "W7K_13720"; transcript_id "KOE98539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 29687 29689 . - 0 gene_id "W7K_13720"; transcript_id "KOE98539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 31371 32699 . + . gene_id "W7K_13725"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 31371 32699 . + . gene_id "W7K_13725"; transcript_id "KOE98540"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 31371 32699 . + . gene_id "W7K_13725"; transcript_id "KOE98540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98540-1"; +contig22 ena CDS 31371 32696 . + 0 gene_id "W7K_13725"; transcript_id "KOE98540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98540"; +contig22 ena start_codon 31371 31373 . + 0 gene_id "W7K_13725"; transcript_id "KOE98540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 32697 32699 . + 0 gene_id "W7K_13725"; transcript_id "KOE98540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 32730 33080 . + . gene_id "W7K_13730"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 32730 33080 . + . gene_id "W7K_13730"; transcript_id "KOE98541"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 32730 33080 . + . gene_id "W7K_13730"; transcript_id "KOE98541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98541-1"; +contig22 ena CDS 32730 33077 . + 0 gene_id "W7K_13730"; transcript_id "KOE98541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98541"; +contig22 ena start_codon 32730 32732 . + 0 gene_id "W7K_13730"; transcript_id "KOE98541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 33078 33080 . + 0 gene_id "W7K_13730"; transcript_id "KOE98541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 33579 34046 . - . gene_id "W7K_13735"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 33579 34046 . - . gene_id "W7K_13735"; transcript_id "KOE98542"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 33579 34046 . - . gene_id "W7K_13735"; transcript_id "KOE98542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98542-1"; +contig22 ena CDS 33582 34046 . - 0 gene_id "W7K_13735"; transcript_id "KOE98542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98542"; +contig22 ena start_codon 34044 34046 . - 0 gene_id "W7K_13735"; transcript_id "KOE98542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 33579 33581 . - 0 gene_id "W7K_13735"; transcript_id "KOE98542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 34122 36599 . - . gene_id "W7K_13740"; gene_name "fadE"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 34122 36599 . - . gene_id "W7K_13740"; transcript_id "KOE98543"; gene_name "fadE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fadE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 34122 36599 . - . gene_id "W7K_13740"; transcript_id "KOE98543"; exon_number "1"; gene_name "fadE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fadE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98543-1"; +contig22 ena CDS 34125 36599 . - 0 gene_id "W7K_13740"; transcript_id "KOE98543"; exon_number "1"; gene_name "fadE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fadE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98543"; +contig22 ena start_codon 36597 36599 . - 0 gene_id "W7K_13740"; transcript_id "KOE98543"; exon_number "1"; gene_name "fadE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fadE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 34122 34124 . - 0 gene_id "W7K_13740"; transcript_id "KOE98543"; exon_number "1"; gene_name "fadE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fadE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 36596 37513 . - . gene_id "W7K_13745"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 36596 37513 . - . gene_id "W7K_13745"; transcript_id "KOE98544"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 36596 37513 . - . gene_id "W7K_13745"; transcript_id "KOE98544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98544-1"; +contig22 ena CDS 36599 37513 . - 0 gene_id "W7K_13745"; transcript_id "KOE98544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98544"; +contig22 ena start_codon 37511 37513 . - 0 gene_id "W7K_13745"; transcript_id "KOE98544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 36596 36598 . - 0 gene_id "W7K_13745"; transcript_id "KOE98544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 37655 38257 . + . gene_id "W7K_13750"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 37655 38257 . + . gene_id "W7K_13750"; transcript_id "KOE98545"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 37655 38257 . + . gene_id "W7K_13750"; transcript_id "KOE98545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98545-1"; +contig22 ena CDS 37655 38254 . + 0 gene_id "W7K_13750"; transcript_id "KOE98545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98545"; +contig22 ena start_codon 37655 37657 . + 0 gene_id "W7K_13750"; transcript_id "KOE98545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 38255 38257 . + 0 gene_id "W7K_13750"; transcript_id "KOE98545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 38395 41157 . - . gene_id "W7K_13755"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 38395 41157 . - . gene_id "W7K_13755"; transcript_id "KOE98546"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 38395 41157 . - . gene_id "W7K_13755"; transcript_id "KOE98546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98546-1"; +contig22 ena CDS 38398 41157 . - 0 gene_id "W7K_13755"; transcript_id "KOE98546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98546"; +contig22 ena start_codon 41155 41157 . - 0 gene_id "W7K_13755"; transcript_id "KOE98546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 38395 38397 . - 0 gene_id "W7K_13755"; transcript_id "KOE98546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 41541 42389 . - . gene_id "W7K_13760"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 41541 42389 . - . gene_id "W7K_13760"; transcript_id "KOE98547"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 41541 42389 . - . gene_id "W7K_13760"; transcript_id "KOE98547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98547-1"; +contig22 ena CDS 41544 42389 . - 0 gene_id "W7K_13760"; transcript_id "KOE98547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98547"; +contig22 ena start_codon 42387 42389 . - 0 gene_id "W7K_13760"; transcript_id "KOE98547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 41541 41543 . - 0 gene_id "W7K_13760"; transcript_id "KOE98547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 42506 43399 . - . gene_id "W7K_13765"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 42506 43399 . - . gene_id "W7K_13765"; transcript_id "KOE98548"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 42506 43399 . - . gene_id "W7K_13765"; transcript_id "KOE98548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98548-1"; +contig22 ena CDS 42509 43399 . - 0 gene_id "W7K_13765"; transcript_id "KOE98548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98548"; +contig22 ena start_codon 43397 43399 . - 0 gene_id "W7K_13765"; transcript_id "KOE98548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 42506 42508 . - 0 gene_id "W7K_13765"; transcript_id "KOE98548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 43477 44226 . + . gene_id "W7K_13770"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 43477 44226 . + . gene_id "W7K_13770"; transcript_id "KOE98549"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 43477 44226 . + . gene_id "W7K_13770"; transcript_id "KOE98549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98549-1"; +contig22 ena CDS 43477 44223 . + 0 gene_id "W7K_13770"; transcript_id "KOE98549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98549"; +contig22 ena start_codon 43477 43479 . + 0 gene_id "W7K_13770"; transcript_id "KOE98549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 44224 44226 . + 0 gene_id "W7K_13770"; transcript_id "KOE98549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 44291 45310 . + . gene_id "W7K_13775"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 44291 45310 . + . gene_id "W7K_13775"; transcript_id "KOE98550"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 44291 45310 . + . gene_id "W7K_13775"; transcript_id "KOE98550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98550-1"; +contig22 ena CDS 44291 45307 . + 0 gene_id "W7K_13775"; transcript_id "KOE98550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98550"; +contig22 ena start_codon 44291 44293 . + 0 gene_id "W7K_13775"; transcript_id "KOE98550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 45308 45310 . + 0 gene_id "W7K_13775"; transcript_id "KOE98550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 45270 45701 . + . gene_id "W7K_13780"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 45270 45701 . + . gene_id "W7K_13780"; transcript_id "KOE98551"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 45270 45701 . + . gene_id "W7K_13780"; transcript_id "KOE98551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98551-1"; +contig22 ena CDS 45270 45698 . + 0 gene_id "W7K_13780"; transcript_id "KOE98551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98551"; +contig22 ena start_codon 45270 45272 . + 0 gene_id "W7K_13780"; transcript_id "KOE98551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 45699 45701 . + 0 gene_id "W7K_13780"; transcript_id "KOE98551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 46303 48276 . - . gene_id "W7K_13785"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 46303 48276 . - . gene_id "W7K_13785"; transcript_id "KOE98552"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 46303 48276 . - . gene_id "W7K_13785"; transcript_id "KOE98552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98552-1"; +contig22 ena CDS 46306 48276 . - 0 gene_id "W7K_13785"; transcript_id "KOE98552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98552"; +contig22 ena start_codon 48274 48276 . - 0 gene_id "W7K_13785"; transcript_id "KOE98552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 46303 46305 . - 0 gene_id "W7K_13785"; transcript_id "KOE98552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 48350 48988 . - . gene_id "W7K_13790"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 48350 48988 . - . gene_id "W7K_13790"; transcript_id "KOE98553"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 48350 48988 . - . gene_id "W7K_13790"; transcript_id "KOE98553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98553-1"; +contig22 ena CDS 48353 48988 . - 0 gene_id "W7K_13790"; transcript_id "KOE98553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98553"; +contig22 ena start_codon 48986 48988 . - 0 gene_id "W7K_13790"; transcript_id "KOE98553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 48350 48352 . - 0 gene_id "W7K_13790"; transcript_id "KOE98553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 49193 50797 . - . gene_id "W7K_13795"; gene_name "prfC"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 49193 50797 . - . gene_id "W7K_13795"; transcript_id "KOE98554"; gene_name "prfC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 49193 50797 . - . gene_id "W7K_13795"; transcript_id "KOE98554"; exon_number "1"; gene_name "prfC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98554-1"; +contig22 ena CDS 49196 50797 . - 0 gene_id "W7K_13795"; transcript_id "KOE98554"; exon_number "1"; gene_name "prfC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98554"; +contig22 ena start_codon 50795 50797 . - 0 gene_id "W7K_13795"; transcript_id "KOE98554"; exon_number "1"; gene_name "prfC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 49193 49195 . - 0 gene_id "W7K_13795"; transcript_id "KOE98554"; exon_number "1"; gene_name "prfC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 50864 51748 . - . gene_id "W7K_13800"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 50864 51748 . - . gene_id "W7K_13800"; transcript_id "KOE98555"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 50864 51748 . - . gene_id "W7K_13800"; transcript_id "KOE98555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98555-1"; +contig22 ena CDS 50867 51748 . - 0 gene_id "W7K_13800"; transcript_id "KOE98555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98555"; +contig22 ena start_codon 51746 51748 . - 0 gene_id "W7K_13800"; transcript_id "KOE98555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 50864 50866 . - 0 gene_id "W7K_13800"; transcript_id "KOE98555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 52093 53124 . + . gene_id "W7K_13805"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 52093 53124 . + . gene_id "W7K_13805"; transcript_id "KOE98556"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 52093 53124 . + . gene_id "W7K_13805"; transcript_id "KOE98556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98556-1"; +contig22 ena CDS 52093 53121 . + 0 gene_id "W7K_13805"; transcript_id "KOE98556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98556"; +contig22 ena start_codon 52093 52095 . + 0 gene_id "W7K_13805"; transcript_id "KOE98556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 53122 53124 . + 0 gene_id "W7K_13805"; transcript_id "KOE98556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 53121 54356 . + . gene_id "W7K_13810"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 53121 54356 . + . gene_id "W7K_13810"; transcript_id "KOE98557"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 53121 54356 . + . gene_id "W7K_13810"; transcript_id "KOE98557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98557-1"; +contig22 ena CDS 53121 54353 . + 0 gene_id "W7K_13810"; transcript_id "KOE98557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98557"; +contig22 ena start_codon 53121 53123 . + 0 gene_id "W7K_13810"; transcript_id "KOE98557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 54354 54356 . + 0 gene_id "W7K_13810"; transcript_id "KOE98557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 54353 55420 . + . gene_id "W7K_13815"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 54353 55420 . + . gene_id "W7K_13815"; transcript_id "KOE98558"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 54353 55420 . + . gene_id "W7K_13815"; transcript_id "KOE98558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98558-1"; +contig22 ena CDS 54353 55417 . + 0 gene_id "W7K_13815"; transcript_id "KOE98558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98558"; +contig22 ena start_codon 54353 54355 . + 0 gene_id "W7K_13815"; transcript_id "KOE98558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 55418 55420 . + 0 gene_id "W7K_13815"; transcript_id "KOE98558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 55479 56474 . - . gene_id "W7K_13820"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 55479 56474 . - . gene_id "W7K_13820"; transcript_id "KOE98559"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 55479 56474 . - . gene_id "W7K_13820"; transcript_id "KOE98559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98559-1"; +contig22 ena CDS 55482 56474 . - 0 gene_id "W7K_13820"; transcript_id "KOE98559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98559"; +contig22 ena start_codon 56472 56474 . - 0 gene_id "W7K_13820"; transcript_id "KOE98559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 55479 55481 . - 0 gene_id "W7K_13820"; transcript_id "KOE98559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 56545 57927 . - . gene_id "W7K_13825"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 56545 57927 . - . gene_id "W7K_13825"; transcript_id "KOE98560"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 56545 57927 . - . gene_id "W7K_13825"; transcript_id "KOE98560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98560-1"; +contig22 ena CDS 56548 57927 . - 0 gene_id "W7K_13825"; transcript_id "KOE98560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98560"; +contig22 ena start_codon 57925 57927 . - 0 gene_id "W7K_13825"; transcript_id "KOE98560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 56545 56547 . - 0 gene_id "W7K_13825"; transcript_id "KOE98560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 58028 58261 . + . gene_id "W7K_13830"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 58028 58261 . + . gene_id "W7K_13830"; transcript_id "KOE98561"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 58028 58261 . + . gene_id "W7K_13830"; transcript_id "KOE98561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98561-1"; +contig22 ena CDS 58028 58258 . + 0 gene_id "W7K_13830"; transcript_id "KOE98561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98561"; +contig22 ena start_codon 58028 58030 . + 0 gene_id "W7K_13830"; transcript_id "KOE98561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 58259 58261 . + 0 gene_id "W7K_13830"; transcript_id "KOE98561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 58364 58936 . - . gene_id "W7K_13835"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 58364 58936 . - . gene_id "W7K_13835"; transcript_id "KOE98562"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 58364 58936 . - . gene_id "W7K_13835"; transcript_id "KOE98562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98562-1"; +contig22 ena CDS 58367 58936 . - 0 gene_id "W7K_13835"; transcript_id "KOE98562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98562"; +contig22 ena start_codon 58934 58936 . - 0 gene_id "W7K_13835"; transcript_id "KOE98562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 58364 58366 . - 0 gene_id "W7K_13835"; transcript_id "KOE98562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 58940 59512 . - . gene_id "W7K_13840"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 58940 59512 . - . gene_id "W7K_13840"; transcript_id "KOE98563"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 58940 59512 . - . gene_id "W7K_13840"; transcript_id "KOE98563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98563-1"; +contig22 ena CDS 58943 59512 . - 0 gene_id "W7K_13840"; transcript_id "KOE98563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98563"; +contig22 ena start_codon 59510 59512 . - 0 gene_id "W7K_13840"; transcript_id "KOE98563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 58940 58942 . - 0 gene_id "W7K_13840"; transcript_id "KOE98563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 59523 60155 . - . gene_id "W7K_13845"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 59523 60155 . - . gene_id "W7K_13845"; transcript_id "KOE98564"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 59523 60155 . - . gene_id "W7K_13845"; transcript_id "KOE98564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98564-1"; +contig22 ena CDS 59526 60155 . - 0 gene_id "W7K_13845"; transcript_id "KOE98564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98564"; +contig22 ena start_codon 60153 60155 . - 0 gene_id "W7K_13845"; transcript_id "KOE98564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 59523 59525 . - 0 gene_id "W7K_13845"; transcript_id "KOE98564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 60322 63867 . + . gene_id "W7K_13850"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 60322 63867 . + . gene_id "W7K_13850"; transcript_id "KOE98565"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 60322 63867 . + . gene_id "W7K_13850"; transcript_id "KOE98565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98565-1"; +contig22 ena CDS 60322 63864 . + 0 gene_id "W7K_13850"; transcript_id "KOE98565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98565"; +contig22 ena start_codon 60322 60324 . + 0 gene_id "W7K_13850"; transcript_id "KOE98565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 63865 63867 . + 0 gene_id "W7K_13850"; transcript_id "KOE98565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 63964 67491 . + . gene_id "W7K_13855"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 63964 67491 . + . gene_id "W7K_13855"; transcript_id "KOE98566"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 63964 67491 . + . gene_id "W7K_13855"; transcript_id "KOE98566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98566-1"; +contig22 ena CDS 63964 67488 . + 0 gene_id "W7K_13855"; transcript_id "KOE98566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98566"; +contig22 ena start_codon 63964 63966 . + 0 gene_id "W7K_13855"; transcript_id "KOE98566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 67489 67491 . + 0 gene_id "W7K_13855"; transcript_id "KOE98566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 68094 69503 . - . gene_id "W7K_13860"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 68094 69503 . - . gene_id "W7K_13860"; transcript_id "KOE98567"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 68094 69503 . - . gene_id "W7K_13860"; transcript_id "KOE98567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98567-1"; +contig22 ena CDS 68097 69503 . - 0 gene_id "W7K_13860"; transcript_id "KOE98567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98567"; +contig22 ena start_codon 69501 69503 . - 0 gene_id "W7K_13860"; transcript_id "KOE98567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 68094 68096 . - 0 gene_id "W7K_13860"; transcript_id "KOE98567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 69596 70678 . - . gene_id "W7K_13865"; gene_name "hemE"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 69596 70678 . - . gene_id "W7K_13865"; transcript_id "KOE98568"; gene_name "hemE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hemE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 69596 70678 . - . gene_id "W7K_13865"; transcript_id "KOE98568"; exon_number "1"; gene_name "hemE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hemE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98568-1"; +contig22 ena CDS 69599 70678 . - 0 gene_id "W7K_13865"; transcript_id "KOE98568"; exon_number "1"; gene_name "hemE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hemE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98568"; +contig22 ena start_codon 70676 70678 . - 0 gene_id "W7K_13865"; transcript_id "KOE98568"; exon_number "1"; gene_name "hemE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hemE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 69596 69598 . - 0 gene_id "W7K_13865"; transcript_id "KOE98568"; exon_number "1"; gene_name "hemE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hemE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 70705 70944 . - . gene_id "W7K_13870"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 70705 70944 . - . gene_id "W7K_13870"; transcript_id "KOE98569"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 70705 70944 . - . gene_id "W7K_13870"; transcript_id "KOE98569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98569-1"; +contig22 ena CDS 70708 70944 . - 0 gene_id "W7K_13870"; transcript_id "KOE98569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98569"; +contig22 ena start_codon 70942 70944 . - 0 gene_id "W7K_13870"; transcript_id "KOE98569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 70705 70707 . - 0 gene_id "W7K_13870"; transcript_id "KOE98569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 71065 72177 . - . gene_id "W7K_13875"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 71065 72177 . - . gene_id "W7K_13875"; transcript_id "KOE98570"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 71065 72177 . - . gene_id "W7K_13875"; transcript_id "KOE98570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98570-1"; +contig22 ena CDS 71068 72177 . - 0 gene_id "W7K_13875"; transcript_id "KOE98570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98570"; +contig22 ena start_codon 72175 72177 . - 0 gene_id "W7K_13875"; transcript_id "KOE98570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 71065 71067 . - 0 gene_id "W7K_13875"; transcript_id "KOE98570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 72174 72716 . - . gene_id "W7K_13880"; gene_name "aroK"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 72174 72716 . - . gene_id "W7K_13880"; transcript_id "KOE98571"; gene_name "aroK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aroK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 72174 72716 . - . gene_id "W7K_13880"; transcript_id "KOE98571"; exon_number "1"; gene_name "aroK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aroK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98571-1"; +contig22 ena CDS 72177 72716 . - 0 gene_id "W7K_13880"; transcript_id "KOE98571"; exon_number "1"; gene_name "aroK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aroK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98571"; +contig22 ena start_codon 72714 72716 . - 0 gene_id "W7K_13880"; transcript_id "KOE98571"; exon_number "1"; gene_name "aroK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aroK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 72174 72176 . - 0 gene_id "W7K_13880"; transcript_id "KOE98571"; exon_number "1"; gene_name "aroK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aroK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 72815 73018 . + . gene_id "W7K_13885"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 72815 73018 . + . gene_id "W7K_13885"; transcript_id "KOE98572"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 72815 73018 . + . gene_id "W7K_13885"; transcript_id "KOE98572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98572-1"; +contig22 ena CDS 72815 73015 . + 0 gene_id "W7K_13885"; transcript_id "KOE98572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98572"; +contig22 ena start_codon 72815 72817 . + 0 gene_id "W7K_13885"; transcript_id "KOE98572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 73016 73018 . + 0 gene_id "W7K_13885"; transcript_id "KOE98572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 73025 73852 . - . gene_id "W7K_13890"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 73025 73852 . - . gene_id "W7K_13890"; transcript_id "KOE98573"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 73025 73852 . - . gene_id "W7K_13890"; transcript_id "KOE98573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98573-1"; +contig22 ena CDS 73028 73852 . - 0 gene_id "W7K_13890"; transcript_id "KOE98573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98573"; +contig22 ena start_codon 73850 73852 . - 0 gene_id "W7K_13890"; transcript_id "KOE98573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 73025 73027 . - 0 gene_id "W7K_13890"; transcript_id "KOE98573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 73893 74492 . + . gene_id "W7K_13895"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 73893 74492 . + . gene_id "W7K_13895"; transcript_id "KOE98574"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 73893 74492 . + . gene_id "W7K_13895"; transcript_id "KOE98574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98574-1"; +contig22 ena CDS 73893 74489 . + 0 gene_id "W7K_13895"; transcript_id "KOE98574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98574"; +contig22 ena start_codon 73893 73895 . + 0 gene_id "W7K_13895"; transcript_id "KOE98574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 74490 74492 . + 0 gene_id "W7K_13895"; transcript_id "KOE98574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 74577 76160 . - . gene_id "W7K_13900"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 74577 76160 . - . gene_id "W7K_13900"; transcript_id "KOE98575"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 74577 76160 . - . gene_id "W7K_13900"; transcript_id "KOE98575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98575-1"; +contig22 ena CDS 74580 76160 . - 0 gene_id "W7K_13900"; transcript_id "KOE98575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98575"; +contig22 ena start_codon 76158 76160 . - 0 gene_id "W7K_13900"; transcript_id "KOE98575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 74577 74579 . - 0 gene_id "W7K_13900"; transcript_id "KOE98575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 76315 77208 . + . gene_id "W7K_13905"; gene_name "prpB"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 76315 77208 . + . gene_id "W7K_13905"; transcript_id "KOE98576"; gene_name "prpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 76315 77208 . + . gene_id "W7K_13905"; transcript_id "KOE98576"; exon_number "1"; gene_name "prpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98576-1"; +contig22 ena CDS 76315 77205 . + 0 gene_id "W7K_13905"; transcript_id "KOE98576"; exon_number "1"; gene_name "prpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98576"; +contig22 ena start_codon 76315 76317 . + 0 gene_id "W7K_13905"; transcript_id "KOE98576"; exon_number "1"; gene_name "prpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 77206 77208 . + 0 gene_id "W7K_13905"; transcript_id "KOE98576"; exon_number "1"; gene_name "prpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 77245 78402 . + . gene_id "W7K_13910"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 77245 78402 . + . gene_id "W7K_13910"; transcript_id "KOE98577"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 77245 78402 . + . gene_id "W7K_13910"; transcript_id "KOE98577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98577-1"; +contig22 ena CDS 77245 78399 . + 0 gene_id "W7K_13910"; transcript_id "KOE98577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98577"; +contig22 ena start_codon 77245 77247 . + 0 gene_id "W7K_13910"; transcript_id "KOE98577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 78400 78402 . + 0 gene_id "W7K_13910"; transcript_id "KOE98577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 78500 81118 . + . gene_id "W7K_13915"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 78500 81118 . + . gene_id "W7K_13915"; transcript_id "KOE98578"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 78500 81118 . + . gene_id "W7K_13915"; transcript_id "KOE98578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98578-1"; +contig22 ena CDS 78500 81115 . + 0 gene_id "W7K_13915"; transcript_id "KOE98578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98578"; +contig22 ena start_codon 78500 78502 . + 0 gene_id "W7K_13915"; transcript_id "KOE98578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 81116 81118 . + 0 gene_id "W7K_13915"; transcript_id "KOE98578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 81219 81476 . + . gene_id "W7K_13920"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 81219 81476 . + . gene_id "W7K_13920"; transcript_id "KOE98579"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 81219 81476 . + . gene_id "W7K_13920"; transcript_id "KOE98579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98579-1"; +contig22 ena CDS 81219 81473 . + 0 gene_id "W7K_13920"; transcript_id "KOE98579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98579"; +contig22 ena start_codon 81219 81221 . + 0 gene_id "W7K_13920"; transcript_id "KOE98579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 81474 81476 . + 0 gene_id "W7K_13920"; transcript_id "KOE98579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 81463 81789 . + . gene_id "W7K_13925"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 81463 81789 . + . gene_id "W7K_13925"; transcript_id "KOE98580"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 81463 81789 . + . gene_id "W7K_13925"; transcript_id "KOE98580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98580-1"; +contig22 ena CDS 81463 81786 . + 0 gene_id "W7K_13925"; transcript_id "KOE98580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98580"; +contig22 ena start_codon 81463 81465 . + 0 gene_id "W7K_13925"; transcript_id "KOE98580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 81787 81789 . + 0 gene_id "W7K_13925"; transcript_id "KOE98580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 81813 82991 . + . gene_id "W7K_13930"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 81813 82991 . + . gene_id "W7K_13930"; transcript_id "KOE98581"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 81813 82991 . + . gene_id "W7K_13930"; transcript_id "KOE98581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98581-1"; +contig22 ena CDS 81813 82988 . + 0 gene_id "W7K_13930"; transcript_id "KOE98581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98581"; +contig22 ena start_codon 81813 81815 . + 0 gene_id "W7K_13930"; transcript_id "KOE98581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 82989 82991 . + 0 gene_id "W7K_13930"; transcript_id "KOE98581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 83063 84523 . + . gene_id "W7K_13935"; gene_name "prpD"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 83063 84523 . + . gene_id "W7K_13935"; transcript_id "KOE98582"; gene_name "prpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 83063 84523 . + . gene_id "W7K_13935"; transcript_id "KOE98582"; exon_number "1"; gene_name "prpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98582-1"; +contig22 ena CDS 83063 84520 . + 0 gene_id "W7K_13935"; transcript_id "KOE98582"; exon_number "1"; gene_name "prpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98582"; +contig22 ena start_codon 83063 83065 . + 0 gene_id "W7K_13935"; transcript_id "KOE98582"; exon_number "1"; gene_name "prpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 84521 84523 . + 0 gene_id "W7K_13935"; transcript_id "KOE98582"; exon_number "1"; gene_name "prpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 84681 89588 . + . gene_id "W7K_13940"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 84681 89588 . + . gene_id "W7K_13940"; transcript_id "KOE98583"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 84681 89588 . + . gene_id "W7K_13940"; transcript_id "KOE98583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98583-1"; +contig22 ena CDS 84681 89585 . + 0 gene_id "W7K_13940"; transcript_id "KOE98583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98583"; +contig22 ena start_codon 84681 84683 . + 0 gene_id "W7K_13940"; transcript_id "KOE98583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 89586 89588 . + 0 gene_id "W7K_13940"; transcript_id "KOE98583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 89638 92019 . + . gene_id "W7K_13945"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 89638 92019 . + . gene_id "W7K_13945"; transcript_id "KOE98584"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 89638 92019 . + . gene_id "W7K_13945"; transcript_id "KOE98584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98584-1"; +contig22 ena CDS 89638 92016 . + 0 gene_id "W7K_13945"; transcript_id "KOE98584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98584"; +contig22 ena start_codon 89638 89640 . + 0 gene_id "W7K_13945"; transcript_id "KOE98584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 92017 92019 . + 0 gene_id "W7K_13945"; transcript_id "KOE98584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 92174 92749 . - . gene_id "W7K_13950"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 92174 92749 . - . gene_id "W7K_13950"; transcript_id "KOE98585"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 92174 92749 . - . gene_id "W7K_13950"; transcript_id "KOE98585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98585-1"; +contig22 ena CDS 92177 92749 . - 0 gene_id "W7K_13950"; transcript_id "KOE98585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98585"; +contig22 ena start_codon 92747 92749 . - 0 gene_id "W7K_13950"; transcript_id "KOE98585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 92174 92176 . - 0 gene_id "W7K_13950"; transcript_id "KOE98585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 92779 93261 . - . gene_id "W7K_13955"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 92779 93261 . - . gene_id "W7K_13955"; transcript_id "KOE98586"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 92779 93261 . - . gene_id "W7K_13955"; transcript_id "KOE98586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98586-1"; +contig22 ena CDS 92782 93261 . - 0 gene_id "W7K_13955"; transcript_id "KOE98586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98586"; +contig22 ena start_codon 93259 93261 . - 0 gene_id "W7K_13955"; transcript_id "KOE98586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 92779 92781 . - 0 gene_id "W7K_13955"; transcript_id "KOE98586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 93523 94416 . + . gene_id "W7K_13960"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 93523 94416 . + . gene_id "W7K_13960"; transcript_id "KOE98587"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 93523 94416 . + . gene_id "W7K_13960"; transcript_id "KOE98587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98587-1"; +contig22 ena CDS 93523 94413 . + 0 gene_id "W7K_13960"; transcript_id "KOE98587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98587"; +contig22 ena start_codon 93523 93525 . + 0 gene_id "W7K_13960"; transcript_id "KOE98587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 94414 94416 . + 0 gene_id "W7K_13960"; transcript_id "KOE98587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 94505 94876 . - . gene_id "W7K_13965"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 94505 94876 . - . gene_id "W7K_13965"; transcript_id "KOE98668"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 94505 94876 . - . gene_id "W7K_13965"; transcript_id "KOE98668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98668-1"; +contig22 ena CDS 94508 94876 . - 0 gene_id "W7K_13965"; transcript_id "KOE98668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98668"; +contig22 ena start_codon 94874 94876 . - 0 gene_id "W7K_13965"; transcript_id "KOE98668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 94505 94507 . - 0 gene_id "W7K_13965"; transcript_id "KOE98668"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 94965 95960 . - . gene_id "W7K_13970"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 94965 95960 . - . gene_id "W7K_13970"; transcript_id "KOE98588"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 94965 95960 . - . gene_id "W7K_13970"; transcript_id "KOE98588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98588-1"; +contig22 ena CDS 94968 95960 . - 0 gene_id "W7K_13970"; transcript_id "KOE98588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98588"; +contig22 ena start_codon 95958 95960 . - 0 gene_id "W7K_13970"; transcript_id "KOE98588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 94965 94967 . - 0 gene_id "W7K_13970"; transcript_id "KOE98588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 96114 97247 . + . gene_id "W7K_13975"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 96114 97247 . + . gene_id "W7K_13975"; transcript_id "KOE98589"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 96114 97247 . + . gene_id "W7K_13975"; transcript_id "KOE98589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98589-1"; +contig22 ena CDS 96114 97244 . + 0 gene_id "W7K_13975"; transcript_id "KOE98589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98589"; +contig22 ena start_codon 96114 96116 . + 0 gene_id "W7K_13975"; transcript_id "KOE98589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 97245 97247 . + 0 gene_id "W7K_13975"; transcript_id "KOE98589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 97244 98107 . + . gene_id "W7K_13980"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 97244 98107 . + . gene_id "W7K_13980"; transcript_id "KOE98590"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 97244 98107 . + . gene_id "W7K_13980"; transcript_id "KOE98590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98590-1"; +contig22 ena CDS 97244 98104 . + 0 gene_id "W7K_13980"; transcript_id "KOE98590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98590"; +contig22 ena start_codon 97244 97246 . + 0 gene_id "W7K_13980"; transcript_id "KOE98590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 98105 98107 . + 0 gene_id "W7K_13980"; transcript_id "KOE98590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 98176 98361 . + . gene_id "W7K_13985"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 98176 98361 . + . gene_id "W7K_13985"; transcript_id "KOE98591"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 98176 98361 . + . gene_id "W7K_13985"; transcript_id "KOE98591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98591-1"; +contig22 ena CDS 98176 98358 . + 0 gene_id "W7K_13985"; transcript_id "KOE98591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98591"; +contig22 ena start_codon 98176 98178 . + 0 gene_id "W7K_13985"; transcript_id "KOE98591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 98359 98361 . + 0 gene_id "W7K_13985"; transcript_id "KOE98591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 98679 99971 . + . gene_id "W7K_13990"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 98679 99971 . + . gene_id "W7K_13990"; transcript_id "KOE98592"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 98679 99971 . + . gene_id "W7K_13990"; transcript_id "KOE98592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98592-1"; +contig22 ena CDS 98679 99968 . + 0 gene_id "W7K_13990"; transcript_id "KOE98592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98592"; +contig22 ena start_codon 98679 98681 . + 0 gene_id "W7K_13990"; transcript_id "KOE98592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 99969 99971 . + 0 gene_id "W7K_13990"; transcript_id "KOE98592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 100099 100761 . + . gene_id "W7K_13995"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 100099 100761 . + . gene_id "W7K_13995"; transcript_id "KOE98593"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 100099 100761 . + . gene_id "W7K_13995"; transcript_id "KOE98593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98593-1"; +contig22 ena CDS 100099 100758 . + 0 gene_id "W7K_13995"; transcript_id "KOE98593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98593"; +contig22 ena start_codon 100099 100101 . + 0 gene_id "W7K_13995"; transcript_id "KOE98593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 100759 100761 . + 0 gene_id "W7K_13995"; transcript_id "KOE98593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 100697 101347 . - . gene_id "W7K_14000"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 100697 101347 . - . gene_id "W7K_14000"; transcript_id "KOE98594"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 100697 101347 . - . gene_id "W7K_14000"; transcript_id "KOE98594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98594-1"; +contig22 ena CDS 100700 101347 . - 0 gene_id "W7K_14000"; transcript_id "KOE98594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98594"; +contig22 ena start_codon 101345 101347 . - 0 gene_id "W7K_14000"; transcript_id "KOE98594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 100697 100699 . - 0 gene_id "W7K_14000"; transcript_id "KOE98594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 101352 102311 . - . gene_id "W7K_14005"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 101352 102311 . - . gene_id "W7K_14005"; transcript_id "KOE98595"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 101352 102311 . - . gene_id "W7K_14005"; transcript_id "KOE98595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98595-1"; +contig22 ena CDS 101355 102311 . - 0 gene_id "W7K_14005"; transcript_id "KOE98595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98595"; +contig22 ena start_codon 102309 102311 . - 0 gene_id "W7K_14005"; transcript_id "KOE98595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 101352 101354 . - 0 gene_id "W7K_14005"; transcript_id "KOE98595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 102547 104670 . + . gene_id "W7K_14010"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 102547 104670 . + . gene_id "W7K_14010"; transcript_id "KOE98596"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 102547 104670 . + . gene_id "W7K_14010"; transcript_id "KOE98596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98596-1"; +contig22 ena CDS 102547 104667 . + 0 gene_id "W7K_14010"; transcript_id "KOE98596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98596"; +contig22 ena start_codon 102547 102549 . + 0 gene_id "W7K_14010"; transcript_id "KOE98596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 104668 104670 . + 0 gene_id "W7K_14010"; transcript_id "KOE98596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 104810 105304 . - . gene_id "W7K_14015"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 104810 105304 . - . gene_id "W7K_14015"; transcript_id "KOE98597"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 104810 105304 . - . gene_id "W7K_14015"; transcript_id "KOE98597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98597-1"; +contig22 ena CDS 104813 105304 . - 0 gene_id "W7K_14015"; transcript_id "KOE98597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98597"; +contig22 ena start_codon 105302 105304 . - 0 gene_id "W7K_14015"; transcript_id "KOE98597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 104810 104812 . - 0 gene_id "W7K_14015"; transcript_id "KOE98597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 105327 107417 . - . gene_id "W7K_14020"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 105327 107417 . - . gene_id "W7K_14020"; transcript_id "KOE98598"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 105327 107417 . - . gene_id "W7K_14020"; transcript_id "KOE98598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98598-1"; +contig22 ena CDS 105330 107417 . - 0 gene_id "W7K_14020"; transcript_id "KOE98598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98598"; +contig22 ena start_codon 107415 107417 . - 0 gene_id "W7K_14020"; transcript_id "KOE98598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 105327 105329 . - 0 gene_id "W7K_14020"; transcript_id "KOE98598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 107532 108254 . + . gene_id "W7K_14025"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 107532 108254 . + . gene_id "W7K_14025"; transcript_id "KOE98599"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 107532 108254 . + . gene_id "W7K_14025"; transcript_id "KOE98599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98599-1"; +contig22 ena CDS 107532 108251 . + 0 gene_id "W7K_14025"; transcript_id "KOE98599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98599"; +contig22 ena start_codon 107532 107534 . + 0 gene_id "W7K_14025"; transcript_id "KOE98599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 108252 108254 . + 0 gene_id "W7K_14025"; transcript_id "KOE98599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 108337 109704 . + . gene_id "W7K_14030"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 108337 109704 . + . gene_id "W7K_14030"; transcript_id "KOE98600"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 108337 109704 . + . gene_id "W7K_14030"; transcript_id "KOE98600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98600-1"; +contig22 ena CDS 108337 109701 . + 0 gene_id "W7K_14030"; transcript_id "KOE98600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98600"; +contig22 ena start_codon 108337 108339 . + 0 gene_id "W7K_14030"; transcript_id "KOE98600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 109702 109704 . + 0 gene_id "W7K_14030"; transcript_id "KOE98600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 109845 110255 . + . gene_id "W7K_14035"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 109845 110255 . + . gene_id "W7K_14035"; transcript_id "KOE98601"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 109845 110255 . + . gene_id "W7K_14035"; transcript_id "KOE98601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98601-1"; +contig22 ena CDS 109845 110252 . + 0 gene_id "W7K_14035"; transcript_id "KOE98601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98601"; +contig22 ena start_codon 109845 109847 . + 0 gene_id "W7K_14035"; transcript_id "KOE98601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 110253 110255 . + 0 gene_id "W7K_14035"; transcript_id "KOE98601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 110348 113215 . - . gene_id "W7K_14040"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 110348 113215 . - . gene_id "W7K_14040"; transcript_id "KOE98602"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 110348 113215 . - . gene_id "W7K_14040"; transcript_id "KOE98602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98602-1"; +contig22 ena CDS 110351 113215 . - 0 gene_id "W7K_14040"; transcript_id "KOE98602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98602"; +contig22 ena start_codon 113213 113215 . - 0 gene_id "W7K_14040"; transcript_id "KOE98602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 110348 110350 . - 0 gene_id "W7K_14040"; transcript_id "KOE98602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 113682 114908 . + . gene_id "W7K_14045"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 113682 114908 . + . gene_id "W7K_14045"; transcript_id "KOE98603"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 113682 114908 . + . gene_id "W7K_14045"; transcript_id "KOE98603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98603-1"; +contig22 ena CDS 113682 114905 . + 0 gene_id "W7K_14045"; transcript_id "KOE98603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98603"; +contig22 ena start_codon 113682 113684 . + 0 gene_id "W7K_14045"; transcript_id "KOE98603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 114906 114908 . + 0 gene_id "W7K_14045"; transcript_id "KOE98603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 115050 115946 . + . gene_id "W7K_14050"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 115050 115946 . + . gene_id "W7K_14050"; transcript_id "KOE98604"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 115050 115946 . + . gene_id "W7K_14050"; transcript_id "KOE98604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98604-1"; +contig22 ena CDS 115050 115943 . + 0 gene_id "W7K_14050"; transcript_id "KOE98604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98604"; +contig22 ena start_codon 115050 115052 . + 0 gene_id "W7K_14050"; transcript_id "KOE98604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 115944 115946 . + 0 gene_id "W7K_14050"; transcript_id "KOE98604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 116030 116422 . + . gene_id "W7K_14055"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 116030 116422 . + . gene_id "W7K_14055"; transcript_id "KOE98605"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 116030 116422 . + . gene_id "W7K_14055"; transcript_id "KOE98605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98605-1"; +contig22 ena CDS 116030 116419 . + 0 gene_id "W7K_14055"; transcript_id "KOE98605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98605"; +contig22 ena start_codon 116030 116032 . + 0 gene_id "W7K_14055"; transcript_id "KOE98605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 116420 116422 . + 0 gene_id "W7K_14055"; transcript_id "KOE98605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 116550 118514 . - . gene_id "W7K_14060"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 116550 118514 . - . gene_id "W7K_14060"; transcript_id "KOE98606"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 116550 118514 . - . gene_id "W7K_14060"; transcript_id "KOE98606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98606-1"; +contig22 ena CDS 116553 118514 . - 0 gene_id "W7K_14060"; transcript_id "KOE98606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98606"; +contig22 ena start_codon 118512 118514 . - 0 gene_id "W7K_14060"; transcript_id "KOE98606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 116550 116552 . - 0 gene_id "W7K_14060"; transcript_id "KOE98606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 119094 120743 . - . gene_id "W7K_14065"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 119094 120743 . - . gene_id "W7K_14065"; transcript_id "KOE98607"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 119094 120743 . - . gene_id "W7K_14065"; transcript_id "KOE98607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98607-1"; +contig22 ena CDS 119097 120743 . - 0 gene_id "W7K_14065"; transcript_id "KOE98607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98607"; +contig22 ena start_codon 120741 120743 . - 0 gene_id "W7K_14065"; transcript_id "KOE98607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 119094 119096 . - 0 gene_id "W7K_14065"; transcript_id "KOE98607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 120740 121507 . - . gene_id "W7K_14070"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 120740 121507 . - . gene_id "W7K_14070"; transcript_id "KOE98608"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 120740 121507 . - . gene_id "W7K_14070"; transcript_id "KOE98608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98608-1"; +contig22 ena CDS 120743 121507 . - 0 gene_id "W7K_14070"; transcript_id "KOE98608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98608"; +contig22 ena start_codon 121505 121507 . - 0 gene_id "W7K_14070"; transcript_id "KOE98608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 120740 120742 . - 0 gene_id "W7K_14070"; transcript_id "KOE98608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 121619 123322 . - . gene_id "W7K_14075"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 121619 123322 . - . gene_id "W7K_14075"; transcript_id "KOE98609"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 121619 123322 . - . gene_id "W7K_14075"; transcript_id "KOE98609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98609-1"; +contig22 ena CDS 121622 123322 . - 0 gene_id "W7K_14075"; transcript_id "KOE98609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98609"; +contig22 ena start_codon 123320 123322 . - 0 gene_id "W7K_14075"; transcript_id "KOE98609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 121619 121621 . - 0 gene_id "W7K_14075"; transcript_id "KOE98609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 123453 124166 . + . gene_id "W7K_14080"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 123453 124166 . + . gene_id "W7K_14080"; transcript_id "KOE98610"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 123453 124166 . + . gene_id "W7K_14080"; transcript_id "KOE98610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98610-1"; +contig22 ena CDS 123453 124163 . + 0 gene_id "W7K_14080"; transcript_id "KOE98610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98610"; +contig22 ena start_codon 123453 123455 . + 0 gene_id "W7K_14080"; transcript_id "KOE98610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 124164 124166 . + 0 gene_id "W7K_14080"; transcript_id "KOE98610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 124153 125439 . + . gene_id "W7K_14085"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 124153 125439 . + . gene_id "W7K_14085"; transcript_id "KOE98611"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 124153 125439 . + . gene_id "W7K_14085"; transcript_id "KOE98611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98611-1"; +contig22 ena CDS 124153 125436 . + 0 gene_id "W7K_14085"; transcript_id "KOE98611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98611"; +contig22 ena start_codon 124153 124155 . + 0 gene_id "W7K_14085"; transcript_id "KOE98611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 125437 125439 . + 0 gene_id "W7K_14085"; transcript_id "KOE98611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 125526 125915 . - . gene_id "W7K_14090"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 125526 125915 . - . gene_id "W7K_14090"; transcript_id "KOE98612"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 125526 125915 . - . gene_id "W7K_14090"; transcript_id "KOE98612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98612-1"; +contig22 ena CDS 125529 125915 . - 0 gene_id "W7K_14090"; transcript_id "KOE98612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98612"; +contig22 ena start_codon 125913 125915 . - 0 gene_id "W7K_14090"; transcript_id "KOE98612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 125526 125528 . - 0 gene_id "W7K_14090"; transcript_id "KOE98612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 126051 127301 . + . gene_id "W7K_14095"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 126051 127301 . + . gene_id "W7K_14095"; transcript_id "KOE98613"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 126051 127301 . + . gene_id "W7K_14095"; transcript_id "KOE98613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98613-1"; +contig22 ena CDS 126051 127298 . + 0 gene_id "W7K_14095"; transcript_id "KOE98613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98613"; +contig22 ena start_codon 126051 126053 . + 0 gene_id "W7K_14095"; transcript_id "KOE98613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 127299 127301 . + 0 gene_id "W7K_14095"; transcript_id "KOE98613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 127804 128028 . - . gene_id "W7K_14100"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 127804 128028 . - . gene_id "W7K_14100"; transcript_id "KOE98614"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 127804 128028 . - . gene_id "W7K_14100"; transcript_id "KOE98614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98614-1"; +contig22 ena CDS 127807 128028 . - 0 gene_id "W7K_14100"; transcript_id "KOE98614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98614"; +contig22 ena start_codon 128026 128028 . - 0 gene_id "W7K_14100"; transcript_id "KOE98614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 127804 127806 . - 0 gene_id "W7K_14100"; transcript_id "KOE98614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 128028 130109 . - . gene_id "W7K_14105"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 128028 130109 . - . gene_id "W7K_14105"; transcript_id "KOE98615"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 128028 130109 . - . gene_id "W7K_14105"; transcript_id "KOE98615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98615-1"; +contig22 ena CDS 128031 130109 . - 0 gene_id "W7K_14105"; transcript_id "KOE98615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98615"; +contig22 ena start_codon 130107 130109 . - 0 gene_id "W7K_14105"; transcript_id "KOE98615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 128028 128030 . - 0 gene_id "W7K_14105"; transcript_id "KOE98615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 130325 131176 . + . gene_id "W7K_14110"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 130325 131176 . + . gene_id "W7K_14110"; transcript_id "KOE98616"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 130325 131176 . + . gene_id "W7K_14110"; transcript_id "KOE98616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98616-1"; +contig22 ena CDS 130325 131173 . + 0 gene_id "W7K_14110"; transcript_id "KOE98616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98616"; +contig22 ena start_codon 130325 130327 . + 0 gene_id "W7K_14110"; transcript_id "KOE98616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 131174 131176 . + 0 gene_id "W7K_14110"; transcript_id "KOE98616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 131305 131763 . - . gene_id "W7K_14115"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 131305 131763 . - . gene_id "W7K_14115"; transcript_id "KOE98617"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 131305 131763 . - . gene_id "W7K_14115"; transcript_id "KOE98617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98617-1"; +contig22 ena CDS 131308 131763 . - 0 gene_id "W7K_14115"; transcript_id "KOE98617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98617"; +contig22 ena start_codon 131761 131763 . - 0 gene_id "W7K_14115"; transcript_id "KOE98617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 131305 131307 . - 0 gene_id "W7K_14115"; transcript_id "KOE98617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 131958 132677 . - . gene_id "W7K_14120"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 131958 132677 . - . gene_id "W7K_14120"; transcript_id "KOE98618"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 131958 132677 . - . gene_id "W7K_14120"; transcript_id "KOE98618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98618-1"; +contig22 ena CDS 131961 132677 . - 0 gene_id "W7K_14120"; transcript_id "KOE98618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98618"; +contig22 ena start_codon 132675 132677 . - 0 gene_id "W7K_14120"; transcript_id "KOE98618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 131958 131960 . - 0 gene_id "W7K_14120"; transcript_id "KOE98618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 132799 133662 . - . gene_id "W7K_14125"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 132799 133662 . - . gene_id "W7K_14125"; transcript_id "KOE98669"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 132799 133662 . - . gene_id "W7K_14125"; transcript_id "KOE98669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98669-1"; +contig22 ena CDS 132802 133662 . - 0 gene_id "W7K_14125"; transcript_id "KOE98669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98669"; +contig22 ena start_codon 133660 133662 . - 0 gene_id "W7K_14125"; transcript_id "KOE98669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 132799 132801 . - 0 gene_id "W7K_14125"; transcript_id "KOE98669"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 134324 136387 . - . gene_id "W7K_14130"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 134324 136387 . - . gene_id "W7K_14130"; transcript_id "KOE98619"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 134324 136387 . - . gene_id "W7K_14130"; transcript_id "KOE98619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98619-1"; +contig22 ena CDS 134327 136387 . - 0 gene_id "W7K_14130"; transcript_id "KOE98619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98619"; +contig22 ena start_codon 136385 136387 . - 0 gene_id "W7K_14130"; transcript_id "KOE98619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 134324 134326 . - 0 gene_id "W7K_14130"; transcript_id "KOE98619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 136623 137243 . + . gene_id "W7K_14135"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 136623 137243 . + . gene_id "W7K_14135"; transcript_id "KOE98620"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 136623 137243 . + . gene_id "W7K_14135"; transcript_id "KOE98620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98620-1"; +contig22 ena CDS 136623 137240 . + 0 gene_id "W7K_14135"; transcript_id "KOE98620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98620"; +contig22 ena start_codon 136623 136625 . + 0 gene_id "W7K_14135"; transcript_id "KOE98620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 137241 137243 . + 0 gene_id "W7K_14135"; transcript_id "KOE98620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 137240 138121 . + . gene_id "W7K_14140"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 137240 138121 . + . gene_id "W7K_14140"; transcript_id "KOE98621"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 137240 138121 . + . gene_id "W7K_14140"; transcript_id "KOE98621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98621-1"; +contig22 ena CDS 137240 138118 . + 0 gene_id "W7K_14140"; transcript_id "KOE98621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98621"; +contig22 ena start_codon 137240 137242 . + 0 gene_id "W7K_14140"; transcript_id "KOE98621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 138119 138121 . + 0 gene_id "W7K_14140"; transcript_id "KOE98621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 138196 139731 . + . gene_id "W7K_14145"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 138196 139731 . + . gene_id "W7K_14145"; transcript_id "KOE98622"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 138196 139731 . + . gene_id "W7K_14145"; transcript_id "KOE98622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98622-1"; +contig22 ena CDS 138196 139728 . + 0 gene_id "W7K_14145"; transcript_id "KOE98622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98622"; +contig22 ena start_codon 138196 138198 . + 0 gene_id "W7K_14145"; transcript_id "KOE98622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 139729 139731 . + 0 gene_id "W7K_14145"; transcript_id "KOE98622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 139912 141705 . + . gene_id "W7K_14150"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 139912 141705 . + . gene_id "W7K_14150"; transcript_id "KOE98670"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 139912 141705 . + . gene_id "W7K_14150"; transcript_id "KOE98670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98670-1"; +contig22 ena CDS 139912 141702 . + 0 gene_id "W7K_14150"; transcript_id "KOE98670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98670"; +contig22 ena start_codon 139912 139914 . + 0 gene_id "W7K_14150"; transcript_id "KOE98670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 141703 141705 . + 0 gene_id "W7K_14150"; transcript_id "KOE98670"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 141760 142554 . + . gene_id "W7K_14155"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 141760 142554 . + . gene_id "W7K_14155"; transcript_id "KOE98623"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 141760 142554 . + . gene_id "W7K_14155"; transcript_id "KOE98623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98623-1"; +contig22 ena CDS 141760 142551 . + 0 gene_id "W7K_14155"; transcript_id "KOE98623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98623"; +contig22 ena start_codon 141760 141762 . + 0 gene_id "W7K_14155"; transcript_id "KOE98623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 142552 142554 . + 0 gene_id "W7K_14155"; transcript_id "KOE98623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 142607 142990 . + . gene_id "W7K_14160"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 142607 142990 . + . gene_id "W7K_14160"; transcript_id "KOE98624"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 142607 142990 . + . gene_id "W7K_14160"; transcript_id "KOE98624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98624-1"; +contig22 ena CDS 142607 142987 . + 0 gene_id "W7K_14160"; transcript_id "KOE98624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98624"; +contig22 ena start_codon 142607 142609 . + 0 gene_id "W7K_14160"; transcript_id "KOE98624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 142988 142990 . + 0 gene_id "W7K_14160"; transcript_id "KOE98624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 142980 143660 . + . gene_id "W7K_14165"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 142980 143660 . + . gene_id "W7K_14165"; transcript_id "KOE98625"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 142980 143660 . + . gene_id "W7K_14165"; transcript_id "KOE98625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98625-1"; +contig22 ena CDS 142980 143657 . + 0 gene_id "W7K_14165"; transcript_id "KOE98625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98625"; +contig22 ena start_codon 142980 142982 . + 0 gene_id "W7K_14165"; transcript_id "KOE98625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 143658 143660 . + 0 gene_id "W7K_14165"; transcript_id "KOE98625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 143657 144553 . + . gene_id "W7K_14170"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 143657 144553 . + . gene_id "W7K_14170"; transcript_id "KOE98626"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 143657 144553 . + . gene_id "W7K_14170"; transcript_id "KOE98626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98626-1"; +contig22 ena CDS 143657 144550 . + 0 gene_id "W7K_14170"; transcript_id "KOE98626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98626"; +contig22 ena start_codon 143657 143659 . + 0 gene_id "W7K_14170"; transcript_id "KOE98626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 144551 144553 . + 0 gene_id "W7K_14170"; transcript_id "KOE98626"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 144572 145291 . + . gene_id "W7K_14175"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 144572 145291 . + . gene_id "W7K_14175"; transcript_id "KOE98627"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 144572 145291 . + . gene_id "W7K_14175"; transcript_id "KOE98627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98627-1"; +contig22 ena CDS 144572 145288 . + 0 gene_id "W7K_14175"; transcript_id "KOE98627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98627"; +contig22 ena start_codon 144572 144574 . + 0 gene_id "W7K_14175"; transcript_id "KOE98627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 145289 145291 . + 0 gene_id "W7K_14175"; transcript_id "KOE98627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 145822 146550 . - . gene_id "W7K_14180"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 145822 146550 . - . gene_id "W7K_14180"; transcript_id "KOE98671"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 145822 146550 . - . gene_id "W7K_14180"; transcript_id "KOE98671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98671-1"; +contig22 ena CDS 145825 146550 . - 0 gene_id "W7K_14180"; transcript_id "KOE98671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98671"; +contig22 ena start_codon 146548 146550 . - 0 gene_id "W7K_14180"; transcript_id "KOE98671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 145822 145824 . - 0 gene_id "W7K_14180"; transcript_id "KOE98671"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 146678 148012 . + . gene_id "W7K_14185"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 146678 148012 . + . gene_id "W7K_14185"; transcript_id "KOE98628"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 146678 148012 . + . gene_id "W7K_14185"; transcript_id "KOE98628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98628-1"; +contig22 ena CDS 146678 148009 . + 0 gene_id "W7K_14185"; transcript_id "KOE98628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98628"; +contig22 ena start_codon 146678 146680 . + 0 gene_id "W7K_14185"; transcript_id "KOE98628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 148010 148012 . + 0 gene_id "W7K_14185"; transcript_id "KOE98628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 148046 148531 . + . gene_id "W7K_14190"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 148046 148531 . + . gene_id "W7K_14190"; transcript_id "KOE98672"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 148046 148531 . + . gene_id "W7K_14190"; transcript_id "KOE98672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98672-1"; +contig22 ena CDS 148046 148528 . + 0 gene_id "W7K_14190"; transcript_id "KOE98672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98672"; +contig22 ena start_codon 148046 148048 . + 0 gene_id "W7K_14190"; transcript_id "KOE98672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 148529 148531 . + 0 gene_id "W7K_14190"; transcript_id "KOE98672"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 148644 149339 . + . gene_id "W7K_14195"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 148644 149339 . + . gene_id "W7K_14195"; transcript_id "KOE98629"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 148644 149339 . + . gene_id "W7K_14195"; transcript_id "KOE98629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98629-1"; +contig22 ena CDS 148644 149336 . + 0 gene_id "W7K_14195"; transcript_id "KOE98629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98629"; +contig22 ena start_codon 148644 148646 . + 0 gene_id "W7K_14195"; transcript_id "KOE98629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 149337 149339 . + 0 gene_id "W7K_14195"; transcript_id "KOE98629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 149504 150511 . + . gene_id "W7K_14200"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 149504 150511 . + . gene_id "W7K_14200"; transcript_id "KOE98630"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 149504 150511 . + . gene_id "W7K_14200"; transcript_id "KOE98630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98630-1"; +contig22 ena CDS 149504 150508 . + 0 gene_id "W7K_14200"; transcript_id "KOE98630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98630"; +contig22 ena start_codon 149504 149506 . + 0 gene_id "W7K_14200"; transcript_id "KOE98630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 150509 150511 . + 0 gene_id "W7K_14200"; transcript_id "KOE98630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 150511 151065 . + . gene_id "W7K_14205"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 150511 151065 . + . gene_id "W7K_14205"; transcript_id "KOE98631"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 150511 151065 . + . gene_id "W7K_14205"; transcript_id "KOE98631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98631-1"; +contig22 ena CDS 150511 151062 . + 0 gene_id "W7K_14205"; transcript_id "KOE98631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98631"; +contig22 ena start_codon 150511 150513 . + 0 gene_id "W7K_14205"; transcript_id "KOE98631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 151063 151065 . + 0 gene_id "W7K_14205"; transcript_id "KOE98631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 151148 151894 . + . gene_id "W7K_14210"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 151148 151894 . + . gene_id "W7K_14210"; transcript_id "KOE98632"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 151148 151894 . + . gene_id "W7K_14210"; transcript_id "KOE98632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98632-1"; +contig22 ena CDS 151148 151891 . + 0 gene_id "W7K_14210"; transcript_id "KOE98632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98632"; +contig22 ena start_codon 151148 151150 . + 0 gene_id "W7K_14210"; transcript_id "KOE98632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 151892 151894 . + 0 gene_id "W7K_14210"; transcript_id "KOE98632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 151983 152189 . + . gene_id "W7K_14215"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 151983 152189 . + . gene_id "W7K_14215"; transcript_id "KOE98633"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 151983 152189 . + . gene_id "W7K_14215"; transcript_id "KOE98633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98633-1"; +contig22 ena CDS 151983 152186 . + 0 gene_id "W7K_14215"; transcript_id "KOE98633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98633"; +contig22 ena start_codon 151983 151985 . + 0 gene_id "W7K_14215"; transcript_id "KOE98633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 152187 152189 . + 0 gene_id "W7K_14215"; transcript_id "KOE98633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 152293 153561 . + . gene_id "W7K_14220"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 152293 153561 . + . gene_id "W7K_14220"; transcript_id "KOE98634"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 152293 153561 . + . gene_id "W7K_14220"; transcript_id "KOE98634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98634-1"; +contig22 ena CDS 152293 153558 . + 0 gene_id "W7K_14220"; transcript_id "KOE98634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98634"; +contig22 ena start_codon 152293 152295 . + 0 gene_id "W7K_14220"; transcript_id "KOE98634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 153559 153561 . + 0 gene_id "W7K_14220"; transcript_id "KOE98634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 153743 154012 . + . gene_id "W7K_14225"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 153743 154012 . + . gene_id "W7K_14225"; transcript_id "KOE98635"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 153743 154012 . + . gene_id "W7K_14225"; transcript_id "KOE98635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98635-1"; +contig22 ena CDS 153743 154009 . + 0 gene_id "W7K_14225"; transcript_id "KOE98635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98635"; +contig22 ena start_codon 153743 153745 . + 0 gene_id "W7K_14225"; transcript_id "KOE98635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 154010 154012 . + 0 gene_id "W7K_14225"; transcript_id "KOE98635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 154014 154655 . - . gene_id "W7K_14230"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 154014 154655 . - . gene_id "W7K_14230"; transcript_id "KOE98636"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 154014 154655 . - . gene_id "W7K_14230"; transcript_id "KOE98636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98636-1"; +contig22 ena CDS 154017 154655 . - 0 gene_id "W7K_14230"; transcript_id "KOE98636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98636"; +contig22 ena start_codon 154653 154655 . - 0 gene_id "W7K_14230"; transcript_id "KOE98636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 154014 154016 . - 0 gene_id "W7K_14230"; transcript_id "KOE98636"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 154645 157104 . - . gene_id "W7K_14235"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 154645 157104 . - . gene_id "W7K_14235"; transcript_id "KOE98637"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 154645 157104 . - . gene_id "W7K_14235"; transcript_id "KOE98637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98637-1"; +contig22 ena CDS 154648 157104 . - 0 gene_id "W7K_14235"; transcript_id "KOE98637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98637"; +contig22 ena start_codon 157102 157104 . - 0 gene_id "W7K_14235"; transcript_id "KOE98637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 154645 154647 . - 0 gene_id "W7K_14235"; transcript_id "KOE98637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 157101 158708 . - . gene_id "W7K_14240"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 157101 158708 . - . gene_id "W7K_14240"; transcript_id "KOE98638"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 157101 158708 . - . gene_id "W7K_14240"; transcript_id "KOE98638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98638-1"; +contig22 ena CDS 157104 158708 . - 0 gene_id "W7K_14240"; transcript_id "KOE98638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98638"; +contig22 ena start_codon 158706 158708 . - 0 gene_id "W7K_14240"; transcript_id "KOE98638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 157101 157103 . - 0 gene_id "W7K_14240"; transcript_id "KOE98638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 158705 159703 . - . gene_id "W7K_14245"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 158705 159703 . - . gene_id "W7K_14245"; transcript_id "KOE98639"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 158705 159703 . - . gene_id "W7K_14245"; transcript_id "KOE98639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98639-1"; +contig22 ena CDS 158708 159703 . - 0 gene_id "W7K_14245"; transcript_id "KOE98639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98639"; +contig22 ena start_codon 159701 159703 . - 0 gene_id "W7K_14245"; transcript_id "KOE98639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 158705 158707 . - 0 gene_id "W7K_14245"; transcript_id "KOE98639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 159817 161454 . + . gene_id "W7K_14250"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 159817 161454 . + . gene_id "W7K_14250"; transcript_id "KOE98640"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 159817 161454 . + . gene_id "W7K_14250"; transcript_id "KOE98640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98640-1"; +contig22 ena CDS 159817 161451 . + 0 gene_id "W7K_14250"; transcript_id "KOE98640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98640"; +contig22 ena start_codon 159817 159819 . + 0 gene_id "W7K_14250"; transcript_id "KOE98640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 161452 161454 . + 0 gene_id "W7K_14250"; transcript_id "KOE98640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 161736 162146 . - . gene_id "W7K_14255"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 161736 162146 . - . gene_id "W7K_14255"; transcript_id "KOE98641"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 161736 162146 . - . gene_id "W7K_14255"; transcript_id "KOE98641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98641-1"; +contig22 ena CDS 161739 162146 . - 0 gene_id "W7K_14255"; transcript_id "KOE98641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98641"; +contig22 ena start_codon 162144 162146 . - 0 gene_id "W7K_14255"; transcript_id "KOE98641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 161736 161738 . - 0 gene_id "W7K_14255"; transcript_id "KOE98641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 162305 162646 . - . gene_id "W7K_14260"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 162305 162646 . - . gene_id "W7K_14260"; transcript_id "KOE98642"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 162305 162646 . - . gene_id "W7K_14260"; transcript_id "KOE98642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98642-1"; +contig22 ena CDS 162308 162646 . - 0 gene_id "W7K_14260"; transcript_id "KOE98642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98642"; +contig22 ena start_codon 162644 162646 . - 0 gene_id "W7K_14260"; transcript_id "KOE98642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 162305 162307 . - 0 gene_id "W7K_14260"; transcript_id "KOE98642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 162771 163946 . - . gene_id "W7K_14265"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 162771 163946 . - . gene_id "W7K_14265"; transcript_id "KOE98643"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 162771 163946 . - . gene_id "W7K_14265"; transcript_id "KOE98643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98643-1"; +contig22 ena CDS 162774 163946 . - 0 gene_id "W7K_14265"; transcript_id "KOE98643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98643"; +contig22 ena start_codon 163944 163946 . - 0 gene_id "W7K_14265"; transcript_id "KOE98643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 162771 162773 . - 0 gene_id "W7K_14265"; transcript_id "KOE98643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 164130 166970 . + . gene_id "W7K_14270"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 164130 166970 . + . gene_id "W7K_14270"; transcript_id "KOE98644"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 164130 166970 . + . gene_id "W7K_14270"; transcript_id "KOE98644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98644-1"; +contig22 ena CDS 164130 166967 . + 0 gene_id "W7K_14270"; transcript_id "KOE98644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98644"; +contig22 ena start_codon 164130 164132 . + 0 gene_id "W7K_14270"; transcript_id "KOE98644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 166968 166970 . + 0 gene_id "W7K_14270"; transcript_id "KOE98644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 167015 168112 . - . gene_id "W7K_14275"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 167015 168112 . - . gene_id "W7K_14275"; transcript_id "KOE98645"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 167015 168112 . - . gene_id "W7K_14275"; transcript_id "KOE98645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98645-1"; +contig22 ena CDS 167018 168112 . - 0 gene_id "W7K_14275"; transcript_id "KOE98645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98645"; +contig22 ena start_codon 168110 168112 . - 0 gene_id "W7K_14275"; transcript_id "KOE98645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 167015 167017 . - 0 gene_id "W7K_14275"; transcript_id "KOE98645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 168391 169467 . + . gene_id "W7K_14280"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 168391 169467 . + . gene_id "W7K_14280"; transcript_id "KOE98646"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 168391 169467 . + . gene_id "W7K_14280"; transcript_id "KOE98646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98646-1"; +contig22 ena CDS 168391 169464 . + 0 gene_id "W7K_14280"; transcript_id "KOE98646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98646"; +contig22 ena start_codon 168391 168393 . + 0 gene_id "W7K_14280"; transcript_id "KOE98646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 169465 169467 . + 0 gene_id "W7K_14280"; transcript_id "KOE98646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 169471 171063 . - . gene_id "W7K_14285"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 169471 171063 . - . gene_id "W7K_14285"; transcript_id "KOE98647"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 169471 171063 . - . gene_id "W7K_14285"; transcript_id "KOE98647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98647-1"; +contig22 ena CDS 169474 171063 . - 0 gene_id "W7K_14285"; transcript_id "KOE98647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98647"; +contig22 ena start_codon 171061 171063 . - 0 gene_id "W7K_14285"; transcript_id "KOE98647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 169471 169473 . - 0 gene_id "W7K_14285"; transcript_id "KOE98647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 171167 171865 . - . gene_id "W7K_14290"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 171167 171865 . - . gene_id "W7K_14290"; transcript_id "KOE98648"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 171167 171865 . - . gene_id "W7K_14290"; transcript_id "KOE98648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98648-1"; +contig22 ena CDS 171170 171865 . - 0 gene_id "W7K_14290"; transcript_id "KOE98648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98648"; +contig22 ena start_codon 171863 171865 . - 0 gene_id "W7K_14290"; transcript_id "KOE98648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 171167 171169 . - 0 gene_id "W7K_14290"; transcript_id "KOE98648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 171913 172413 . - . gene_id "W7K_14295"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 171913 172413 . - . gene_id "W7K_14295"; transcript_id "KOE98649"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 171913 172413 . - . gene_id "W7K_14295"; transcript_id "KOE98649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98649-1"; +contig22 ena CDS 171916 172413 . - 0 gene_id "W7K_14295"; transcript_id "KOE98649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98649"; +contig22 ena start_codon 172411 172413 . - 0 gene_id "W7K_14295"; transcript_id "KOE98649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 171913 171915 . - 0 gene_id "W7K_14295"; transcript_id "KOE98649"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 172476 173033 . + . gene_id "W7K_14300"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 172476 173033 . + . gene_id "W7K_14300"; transcript_id "KOE98650"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 172476 173033 . + . gene_id "W7K_14300"; transcript_id "KOE98650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98650-1"; +contig22 ena CDS 172476 173030 . + 0 gene_id "W7K_14300"; transcript_id "KOE98650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98650"; +contig22 ena start_codon 172476 172478 . + 0 gene_id "W7K_14300"; transcript_id "KOE98650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 173031 173033 . + 0 gene_id "W7K_14300"; transcript_id "KOE98650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 173204 173470 . + . gene_id "W7K_14305"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 173204 173470 . + . gene_id "W7K_14305"; transcript_id "KOE98673"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 173204 173470 . + . gene_id "W7K_14305"; transcript_id "KOE98673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98673-1"; +contig22 ena CDS 173204 173467 . + 0 gene_id "W7K_14305"; transcript_id "KOE98673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98673"; +contig22 ena start_codon 173204 173206 . + 0 gene_id "W7K_14305"; transcript_id "KOE98673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 173468 173470 . + 0 gene_id "W7K_14305"; transcript_id "KOE98673"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 173983 174573 . - . gene_id "W7K_14310"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 173983 174573 . - . gene_id "W7K_14310"; transcript_id "KOE98674"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 173983 174573 . - . gene_id "W7K_14310"; transcript_id "KOE98674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98674-1"; +contig22 ena CDS 173986 174573 . - 0 gene_id "W7K_14310"; transcript_id "KOE98674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98674"; +contig22 ena start_codon 174571 174573 . - 0 gene_id "W7K_14310"; transcript_id "KOE98674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 173983 173985 . - 0 gene_id "W7K_14310"; transcript_id "KOE98674"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 174610 174789 . - . gene_id "W7K_14315"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 174610 174789 . - . gene_id "W7K_14315"; transcript_id "KOE98651"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 174610 174789 . - . gene_id "W7K_14315"; transcript_id "KOE98651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98651-1"; +contig22 ena CDS 174613 174789 . - 0 gene_id "W7K_14315"; transcript_id "KOE98651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98651"; +contig22 ena start_codon 174787 174789 . - 0 gene_id "W7K_14315"; transcript_id "KOE98651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 174610 174612 . - 0 gene_id "W7K_14315"; transcript_id "KOE98651"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 174916 175494 . + . gene_id "W7K_14320"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 174916 175494 . + . gene_id "W7K_14320"; transcript_id "KOE98652"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 174916 175494 . + . gene_id "W7K_14320"; transcript_id "KOE98652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98652-1"; +contig22 ena CDS 174916 175491 . + 0 gene_id "W7K_14320"; transcript_id "KOE98652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98652"; +contig22 ena start_codon 174916 174918 . + 0 gene_id "W7K_14320"; transcript_id "KOE98652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 175492 175494 . + 0 gene_id "W7K_14320"; transcript_id "KOE98652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 175491 176024 . + . gene_id "W7K_14325"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 175491 176024 . + . gene_id "W7K_14325"; transcript_id "KOE98653"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 175491 176024 . + . gene_id "W7K_14325"; transcript_id "KOE98653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98653-1"; +contig22 ena CDS 175491 176021 . + 0 gene_id "W7K_14325"; transcript_id "KOE98653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98653"; +contig22 ena start_codon 175491 175493 . + 0 gene_id "W7K_14325"; transcript_id "KOE98653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 176022 176024 . + 0 gene_id "W7K_14325"; transcript_id "KOE98653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 176035 176916 . + . gene_id "W7K_14330"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 176035 176916 . + . gene_id "W7K_14330"; transcript_id "KOE98654"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 176035 176916 . + . gene_id "W7K_14330"; transcript_id "KOE98654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98654-1"; +contig22 ena CDS 176035 176913 . + 0 gene_id "W7K_14330"; transcript_id "KOE98654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98654"; +contig22 ena start_codon 176035 176037 . + 0 gene_id "W7K_14330"; transcript_id "KOE98654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 176914 176916 . + 0 gene_id "W7K_14330"; transcript_id "KOE98654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 176966 177148 . - . gene_id "W7K_14335"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 176966 177148 . - . gene_id "W7K_14335"; transcript_id "KOE98655"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 176966 177148 . - . gene_id "W7K_14335"; transcript_id "KOE98655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98655-1"; +contig22 ena CDS 176969 177148 . - 0 gene_id "W7K_14335"; transcript_id "KOE98655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98655"; +contig22 ena start_codon 177146 177148 . - 0 gene_id "W7K_14335"; transcript_id "KOE98655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 176966 176968 . - 0 gene_id "W7K_14335"; transcript_id "KOE98655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 177160 177411 . - . gene_id "W7K_14340"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 177160 177411 . - . gene_id "W7K_14340"; transcript_id "KOE98656"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 177160 177411 . - . gene_id "W7K_14340"; transcript_id "KOE98656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98656-1"; +contig22 ena CDS 177163 177411 . - 0 gene_id "W7K_14340"; transcript_id "KOE98656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98656"; +contig22 ena start_codon 177409 177411 . - 0 gene_id "W7K_14340"; transcript_id "KOE98656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 177160 177162 . - 0 gene_id "W7K_14340"; transcript_id "KOE98656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 177683 179044 . - . gene_id "W7K_14345"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 177683 179044 . - . gene_id "W7K_14345"; transcript_id "KOE98657"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 177683 179044 . - . gene_id "W7K_14345"; transcript_id "KOE98657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98657-1"; +contig22 ena CDS 177686 179044 . - 0 gene_id "W7K_14345"; transcript_id "KOE98657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98657"; +contig22 ena start_codon 179042 179044 . - 0 gene_id "W7K_14345"; transcript_id "KOE98657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 177683 177685 . - 0 gene_id "W7K_14345"; transcript_id "KOE98657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 179227 179562 . + . gene_id "W7K_14350"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 179227 179562 . + . gene_id "W7K_14350"; transcript_id "KOE98658"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 179227 179562 . + . gene_id "W7K_14350"; transcript_id "KOE98658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98658-1"; +contig22 ena CDS 179227 179559 . + 0 gene_id "W7K_14350"; transcript_id "KOE98658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98658"; +contig22 ena start_codon 179227 179229 . + 0 gene_id "W7K_14350"; transcript_id "KOE98658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 179560 179562 . + 0 gene_id "W7K_14350"; transcript_id "KOE98658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 179569 180729 . - . gene_id "W7K_14355"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 179569 180729 . - . gene_id "W7K_14355"; transcript_id "KOE98659"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 179569 180729 . - . gene_id "W7K_14355"; transcript_id "KOE98659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98659-1"; +contig22 ena CDS 179572 180729 . - 0 gene_id "W7K_14355"; transcript_id "KOE98659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98659"; +contig22 ena start_codon 180727 180729 . - 0 gene_id "W7K_14355"; transcript_id "KOE98659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 179569 179571 . - 0 gene_id "W7K_14355"; transcript_id "KOE98659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 180958 181560 . + . gene_id "W7K_14360"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 180958 181560 . + . gene_id "W7K_14360"; transcript_id "KOE98660"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 180958 181560 . + . gene_id "W7K_14360"; transcript_id "KOE98660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98660-1"; +contig22 ena CDS 180958 181557 . + 0 gene_id "W7K_14360"; transcript_id "KOE98660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98660"; +contig22 ena start_codon 180958 180960 . + 0 gene_id "W7K_14360"; transcript_id "KOE98660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 181558 181560 . + 0 gene_id "W7K_14360"; transcript_id "KOE98660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 181611 181784 . + . gene_id "W7K_14365"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 181611 181784 . + . gene_id "W7K_14365"; transcript_id "KOE98675"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 181611 181784 . + . gene_id "W7K_14365"; transcript_id "KOE98675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98675-1"; +contig22 ena CDS 181611 181781 . + 0 gene_id "W7K_14365"; transcript_id "KOE98675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98675"; +contig22 ena start_codon 181611 181613 . + 0 gene_id "W7K_14365"; transcript_id "KOE98675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 181782 181784 . + 0 gene_id "W7K_14365"; transcript_id "KOE98675"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 181781 182398 . + . gene_id "W7K_14370"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 181781 182398 . + . gene_id "W7K_14370"; transcript_id "KOE98661"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 181781 182398 . + . gene_id "W7K_14370"; transcript_id "KOE98661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98661-1"; +contig22 ena CDS 181781 182395 . + 0 gene_id "W7K_14370"; transcript_id "KOE98661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98661"; +contig22 ena start_codon 181781 181783 . + 0 gene_id "W7K_14370"; transcript_id "KOE98661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 182396 182398 . + 0 gene_id "W7K_14370"; transcript_id "KOE98661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 182504 183823 . + . gene_id "W7K_14375"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 182504 183823 . + . gene_id "W7K_14375"; transcript_id "KOE98662"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 182504 183823 . + . gene_id "W7K_14375"; transcript_id "KOE98662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98662-1"; +contig22 ena CDS 182504 183820 . + 0 gene_id "W7K_14375"; transcript_id "KOE98662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98662"; +contig22 ena start_codon 182504 182506 . + 0 gene_id "W7K_14375"; transcript_id "KOE98662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 183821 183823 . + 0 gene_id "W7K_14375"; transcript_id "KOE98662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 183853 186417 . - . gene_id "W7K_14380"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 183853 186417 . - . gene_id "W7K_14380"; transcript_id "KOE98663"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 183853 186417 . - . gene_id "W7K_14380"; transcript_id "KOE98663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98663-1"; +contig22 ena CDS 183856 186417 . - 0 gene_id "W7K_14380"; transcript_id "KOE98663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98663"; +contig22 ena start_codon 186415 186417 . - 0 gene_id "W7K_14380"; transcript_id "KOE98663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 183853 183855 . - 0 gene_id "W7K_14380"; transcript_id "KOE98663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 186610 186957 . + . gene_id "W7K_14385"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 186610 186957 . + . gene_id "W7K_14385"; transcript_id "KOE98664"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 186610 186957 . + . gene_id "W7K_14385"; transcript_id "KOE98664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98664-1"; +contig22 ena CDS 186610 186954 . + 0 gene_id "W7K_14385"; transcript_id "KOE98664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98664"; +contig22 ena start_codon 186610 186612 . + 0 gene_id "W7K_14385"; transcript_id "KOE98664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 186955 186957 . + 0 gene_id "W7K_14385"; transcript_id "KOE98664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 187448 188038 . - . gene_id "W7K_14395"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 187448 188038 . - . gene_id "W7K_14395"; transcript_id "KOE98665"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 187448 188038 . - . gene_id "W7K_14395"; transcript_id "KOE98665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98665-1"; +contig22 ena CDS 187451 188038 . - 0 gene_id "W7K_14395"; transcript_id "KOE98665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98665"; +contig22 ena start_codon 188036 188038 . - 0 gene_id "W7K_14395"; transcript_id "KOE98665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 187448 187450 . - 0 gene_id "W7K_14395"; transcript_id "KOE98665"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 188115 190196 . - . gene_id "W7K_14400"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 188115 190196 . - . gene_id "W7K_14400"; transcript_id "KOE98666"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 188115 190196 . - . gene_id "W7K_14400"; transcript_id "KOE98666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98666-1"; +contig22 ena CDS 188118 190196 . - 0 gene_id "W7K_14400"; transcript_id "KOE98666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98666"; +contig22 ena start_codon 190194 190196 . - 0 gene_id "W7K_14400"; transcript_id "KOE98666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 188115 188117 . - 0 gene_id "W7K_14400"; transcript_id "KOE98666"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena gene 190300 190743 . - . gene_id "W7K_14405"; gene_source "ena"; gene_biotype "protein_coding"; +contig22 ena transcript 190300 190743 . - . gene_id "W7K_14405"; transcript_id "KOE98667"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena exon 190300 190743 . - . gene_id "W7K_14405"; transcript_id "KOE98667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98667-1"; +contig22 ena CDS 190303 190743 . - 0 gene_id "W7K_14405"; transcript_id "KOE98667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98667"; +contig22 ena start_codon 190741 190743 . - 0 gene_id "W7K_14405"; transcript_id "KOE98667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig22 ena stop_codon 190300 190302 . - 0 gene_id "W7K_14405"; transcript_id "KOE98667"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 69 671 . - . gene_id "W7K_01465"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 69 671 . - . gene_id "W7K_01465"; transcript_id "KOF00874"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 69 671 . - . gene_id "W7K_01465"; transcript_id "KOF00874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00874-1"; +contig44 ena CDS 72 671 . - 0 gene_id "W7K_01465"; transcript_id "KOF00874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00874"; +contig44 ena start_codon 669 671 . - 0 gene_id "W7K_01465"; transcript_id "KOF00874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 69 71 . - 0 gene_id "W7K_01465"; transcript_id "KOF00874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 668 1882 . - . gene_id "W7K_01470"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 668 1882 . - . gene_id "W7K_01470"; transcript_id "KOF00875"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 668 1882 . - . gene_id "W7K_01470"; transcript_id "KOF00875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00875-1"; +contig44 ena CDS 671 1882 . - 0 gene_id "W7K_01470"; transcript_id "KOF00875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00875"; +contig44 ena start_codon 1880 1882 . - 0 gene_id "W7K_01470"; transcript_id "KOF00875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 668 670 . - 0 gene_id "W7K_01470"; transcript_id "KOF00875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 1889 2671 . - . gene_id "W7K_01475"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 1889 2671 . - . gene_id "W7K_01475"; transcript_id "KOF00876"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 1889 2671 . - . gene_id "W7K_01475"; transcript_id "KOF00876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00876-1"; +contig44 ena CDS 1892 2671 . - 0 gene_id "W7K_01475"; transcript_id "KOF00876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00876"; +contig44 ena start_codon 2669 2671 . - 0 gene_id "W7K_01475"; transcript_id "KOF00876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 1889 1891 . - 0 gene_id "W7K_01475"; transcript_id "KOF00876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 2668 3564 . - . gene_id "W7K_01480"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 2668 3564 . - . gene_id "W7K_01480"; transcript_id "KOF00877"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 2668 3564 . - . gene_id "W7K_01480"; transcript_id "KOF00877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00877-1"; +contig44 ena CDS 2671 3564 . - 0 gene_id "W7K_01480"; transcript_id "KOF00877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00877"; +contig44 ena start_codon 3562 3564 . - 0 gene_id "W7K_01480"; transcript_id "KOF00877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 2668 2670 . - 0 gene_id "W7K_01480"; transcript_id "KOF00877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 3767 5020 . + . gene_id "W7K_01485"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 3767 5020 . + . gene_id "W7K_01485"; transcript_id "KOF00878"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 3767 5020 . + . gene_id "W7K_01485"; transcript_id "KOF00878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00878-1"; +contig44 ena CDS 3767 5017 . + 0 gene_id "W7K_01485"; transcript_id "KOF00878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00878"; +contig44 ena start_codon 3767 3769 . + 0 gene_id "W7K_01485"; transcript_id "KOF00878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 5018 5020 . + 0 gene_id "W7K_01485"; transcript_id "KOF00878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 5123 5812 . + . gene_id "W7K_01490"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 5123 5812 . + . gene_id "W7K_01490"; transcript_id "KOF00879"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 5123 5812 . + . gene_id "W7K_01490"; transcript_id "KOF00879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00879-1"; +contig44 ena CDS 5123 5809 . + 0 gene_id "W7K_01490"; transcript_id "KOF00879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00879"; +contig44 ena start_codon 5123 5125 . + 0 gene_id "W7K_01490"; transcript_id "KOF00879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 5810 5812 . + 0 gene_id "W7K_01490"; transcript_id "KOF00879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 5827 6984 . + . gene_id "W7K_01495"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 5827 6984 . + . gene_id "W7K_01495"; transcript_id "KOF00880"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 5827 6984 . + . gene_id "W7K_01495"; transcript_id "KOF00880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00880-1"; +contig44 ena CDS 5827 6981 . + 0 gene_id "W7K_01495"; transcript_id "KOF00880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00880"; +contig44 ena start_codon 5827 5829 . + 0 gene_id "W7K_01495"; transcript_id "KOF00880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 6982 6984 . + 0 gene_id "W7K_01495"; transcript_id "KOF00880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 6997 8313 . + . gene_id "W7K_01500"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 6997 8313 . + . gene_id "W7K_01500"; transcript_id "KOF00881"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 6997 8313 . + . gene_id "W7K_01500"; transcript_id "KOF00881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00881-1"; +contig44 ena CDS 6997 8310 . + 0 gene_id "W7K_01500"; transcript_id "KOF00881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00881"; +contig44 ena start_codon 6997 6999 . + 0 gene_id "W7K_01500"; transcript_id "KOF00881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 8311 8313 . + 0 gene_id "W7K_01500"; transcript_id "KOF00881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 8673 11531 . + . gene_id "W7K_01505"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 8673 11531 . + . gene_id "W7K_01505"; transcript_id "KOF00882"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 8673 11531 . + . gene_id "W7K_01505"; transcript_id "KOF00882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00882-1"; +contig44 ena CDS 8673 11528 . + 0 gene_id "W7K_01505"; transcript_id "KOF00882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00882"; +contig44 ena start_codon 8673 8675 . + 0 gene_id "W7K_01505"; transcript_id "KOF00882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 11529 11531 . + 0 gene_id "W7K_01505"; transcript_id "KOF00882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 11650 12543 . - . gene_id "W7K_01510"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 11650 12543 . - . gene_id "W7K_01510"; transcript_id "KOF00883"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 11650 12543 . - . gene_id "W7K_01510"; transcript_id "KOF00883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00883-1"; +contig44 ena CDS 11653 12543 . - 0 gene_id "W7K_01510"; transcript_id "KOF00883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00883"; +contig44 ena start_codon 12541 12543 . - 0 gene_id "W7K_01510"; transcript_id "KOF00883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 11650 11652 . - 0 gene_id "W7K_01510"; transcript_id "KOF00883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 12540 13445 . - . gene_id "W7K_01515"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 12540 13445 . - . gene_id "W7K_01515"; transcript_id "KOF00884"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 12540 13445 . - . gene_id "W7K_01515"; transcript_id "KOF00884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00884-1"; +contig44 ena CDS 12543 13445 . - 0 gene_id "W7K_01515"; transcript_id "KOF00884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00884"; +contig44 ena start_codon 13443 13445 . - 0 gene_id "W7K_01515"; transcript_id "KOF00884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 12540 12542 . - 0 gene_id "W7K_01515"; transcript_id "KOF00884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 13669 15003 . + . gene_id "W7K_01520"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 13669 15003 . + . gene_id "W7K_01520"; transcript_id "KOF00885"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 13669 15003 . + . gene_id "W7K_01520"; transcript_id "KOF00885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00885-1"; +contig44 ena CDS 13669 15000 . + 0 gene_id "W7K_01520"; transcript_id "KOF00885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00885"; +contig44 ena start_codon 13669 13671 . + 0 gene_id "W7K_01520"; transcript_id "KOF00885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 15001 15003 . + 0 gene_id "W7K_01520"; transcript_id "KOF00885"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 15071 15367 . + . gene_id "W7K_01525"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 15071 15367 . + . gene_id "W7K_01525"; transcript_id "KOF01024"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 15071 15367 . + . gene_id "W7K_01525"; transcript_id "KOF01024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01024-1"; +contig44 ena CDS 15071 15364 . + 0 gene_id "W7K_01525"; transcript_id "KOF01024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01024"; +contig44 ena start_codon 15071 15073 . + 0 gene_id "W7K_01525"; transcript_id "KOF01024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 15365 15367 . + 0 gene_id "W7K_01525"; transcript_id "KOF01024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 15456 17108 . - . gene_id "W7K_01530"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 15456 17108 . - . gene_id "W7K_01530"; transcript_id "KOF00886"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 15456 17108 . - . gene_id "W7K_01530"; transcript_id "KOF00886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00886-1"; +contig44 ena CDS 15459 17108 . - 0 gene_id "W7K_01530"; transcript_id "KOF00886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00886"; +contig44 ena start_codon 17106 17108 . - 0 gene_id "W7K_01530"; transcript_id "KOF00886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 15456 15458 . - 0 gene_id "W7K_01530"; transcript_id "KOF00886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 17214 18146 . - . gene_id "W7K_01535"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 17214 18146 . - . gene_id "W7K_01535"; transcript_id "KOF00887"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 17214 18146 . - . gene_id "W7K_01535"; transcript_id "KOF00887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00887-1"; +contig44 ena CDS 17217 18146 . - 0 gene_id "W7K_01535"; transcript_id "KOF00887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00887"; +contig44 ena start_codon 18144 18146 . - 0 gene_id "W7K_01535"; transcript_id "KOF00887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 17214 17216 . - 0 gene_id "W7K_01535"; transcript_id "KOF00887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 18377 18673 . - . gene_id "W7K_01540"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 18377 18673 . - . gene_id "W7K_01540"; transcript_id "KOF00888"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 18377 18673 . - . gene_id "W7K_01540"; transcript_id "KOF00888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00888-1"; +contig44 ena CDS 18380 18673 . - 0 gene_id "W7K_01540"; transcript_id "KOF00888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00888"; +contig44 ena start_codon 18671 18673 . - 0 gene_id "W7K_01540"; transcript_id "KOF00888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 18377 18379 . - 0 gene_id "W7K_01540"; transcript_id "KOF00888"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 18878 20173 . - . gene_id "W7K_01545"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 18878 20173 . - . gene_id "W7K_01545"; transcript_id "KOF00889"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 18878 20173 . - . gene_id "W7K_01545"; transcript_id "KOF00889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00889-1"; +contig44 ena CDS 18881 20173 . - 0 gene_id "W7K_01545"; transcript_id "KOF00889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00889"; +contig44 ena start_codon 20171 20173 . - 0 gene_id "W7K_01545"; transcript_id "KOF00889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 18878 18880 . - 0 gene_id "W7K_01545"; transcript_id "KOF00889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 20282 21076 . + . gene_id "W7K_01550"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 20282 21076 . + . gene_id "W7K_01550"; transcript_id "KOF00890"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 20282 21076 . + . gene_id "W7K_01550"; transcript_id "KOF00890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00890-1"; +contig44 ena CDS 20282 21073 . + 0 gene_id "W7K_01550"; transcript_id "KOF00890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00890"; +contig44 ena start_codon 20282 20284 . + 0 gene_id "W7K_01550"; transcript_id "KOF00890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 21074 21076 . + 0 gene_id "W7K_01550"; transcript_id "KOF00890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 21153 21374 . - . gene_id "W7K_01555"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 21153 21374 . - . gene_id "W7K_01555"; transcript_id "KOF00891"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 21153 21374 . - . gene_id "W7K_01555"; transcript_id "KOF00891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00891-1"; +contig44 ena CDS 21156 21374 . - 0 gene_id "W7K_01555"; transcript_id "KOF00891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00891"; +contig44 ena start_codon 21372 21374 . - 0 gene_id "W7K_01555"; transcript_id "KOF00891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 21153 21155 . - 0 gene_id "W7K_01555"; transcript_id "KOF00891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 21578 21715 . - . gene_id "W7K_01560"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 21578 21715 . - . gene_id "W7K_01560"; transcript_id "KOF00892"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 21578 21715 . - . gene_id "W7K_01560"; transcript_id "KOF00892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00892-1"; +contig44 ena CDS 21581 21715 . - 0 gene_id "W7K_01560"; transcript_id "KOF00892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00892"; +contig44 ena start_codon 21713 21715 . - 0 gene_id "W7K_01560"; transcript_id "KOF00892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 21578 21580 . - 0 gene_id "W7K_01560"; transcript_id "KOF00892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 21878 22798 . - . gene_id "W7K_01565"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 21878 22798 . - . gene_id "W7K_01565"; transcript_id "KOF00893"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 21878 22798 . - . gene_id "W7K_01565"; transcript_id "KOF00893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00893-1"; +contig44 ena CDS 21881 22798 . - 0 gene_id "W7K_01565"; transcript_id "KOF00893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00893"; +contig44 ena start_codon 22796 22798 . - 0 gene_id "W7K_01565"; transcript_id "KOF00893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 21878 21880 . - 0 gene_id "W7K_01565"; transcript_id "KOF00893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 22929 23276 . + . gene_id "W7K_01570"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 22929 23276 . + . gene_id "W7K_01570"; transcript_id "KOF00894"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 22929 23276 . + . gene_id "W7K_01570"; transcript_id "KOF00894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00894-1"; +contig44 ena CDS 22929 23273 . + 0 gene_id "W7K_01570"; transcript_id "KOF00894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00894"; +contig44 ena start_codon 22929 22931 . + 0 gene_id "W7K_01570"; transcript_id "KOF00894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 23274 23276 . + 0 gene_id "W7K_01570"; transcript_id "KOF00894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 24654 25061 . + . gene_id "W7K_01580"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 24654 25061 . + . gene_id "W7K_01580"; transcript_id "KOF00895"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 24654 25061 . + . gene_id "W7K_01580"; transcript_id "KOF00895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00895-1"; +contig44 ena CDS 24654 25058 . + 0 gene_id "W7K_01580"; transcript_id "KOF00895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00895"; +contig44 ena start_codon 24654 24656 . + 0 gene_id "W7K_01580"; transcript_id "KOF00895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 25059 25061 . + 0 gene_id "W7K_01580"; transcript_id "KOF00895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 25142 25465 . + . gene_id "W7K_01585"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 25142 25465 . + . gene_id "W7K_01585"; transcript_id "KOF00896"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 25142 25465 . + . gene_id "W7K_01585"; transcript_id "KOF00896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00896-1"; +contig44 ena CDS 25142 25462 . + 0 gene_id "W7K_01585"; transcript_id "KOF00896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00896"; +contig44 ena start_codon 25142 25144 . + 0 gene_id "W7K_01585"; transcript_id "KOF00896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 25463 25465 . + 0 gene_id "W7K_01585"; transcript_id "KOF00896"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 25523 25825 . - . gene_id "W7K_01590"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 25523 25825 . - . gene_id "W7K_01590"; transcript_id "KOF00897"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 25523 25825 . - . gene_id "W7K_01590"; transcript_id "KOF00897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00897-1"; +contig44 ena CDS 25526 25825 . - 0 gene_id "W7K_01590"; transcript_id "KOF00897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00897"; +contig44 ena start_codon 25823 25825 . - 0 gene_id "W7K_01590"; transcript_id "KOF00897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 25523 25525 . - 0 gene_id "W7K_01590"; transcript_id "KOF00897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 25884 26171 . - . gene_id "W7K_01595"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 25884 26171 . - . gene_id "W7K_01595"; transcript_id "KOF00898"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 25884 26171 . - . gene_id "W7K_01595"; transcript_id "KOF00898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00898-1"; +contig44 ena CDS 25887 26171 . - 0 gene_id "W7K_01595"; transcript_id "KOF00898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00898"; +contig44 ena start_codon 26169 26171 . - 0 gene_id "W7K_01595"; transcript_id "KOF00898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 25884 25886 . - 0 gene_id "W7K_01595"; transcript_id "KOF00898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 26581 27027 . - . gene_id "W7K_01600"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 26581 27027 . - . gene_id "W7K_01600"; transcript_id "KOF00899"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 26581 27027 . - . gene_id "W7K_01600"; transcript_id "KOF00899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00899-1"; +contig44 ena CDS 26584 27027 . - 0 gene_id "W7K_01600"; transcript_id "KOF00899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00899"; +contig44 ena start_codon 27025 27027 . - 0 gene_id "W7K_01600"; transcript_id "KOF00899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 26581 26583 . - 0 gene_id "W7K_01600"; transcript_id "KOF00899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 27374 27634 . - . gene_id "W7K_01605"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 27374 27634 . - . gene_id "W7K_01605"; transcript_id "KOF00900"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 27374 27634 . - . gene_id "W7K_01605"; transcript_id "KOF00900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00900-1"; +contig44 ena CDS 27377 27634 . - 0 gene_id "W7K_01605"; transcript_id "KOF00900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00900"; +contig44 ena start_codon 27632 27634 . - 0 gene_id "W7K_01605"; transcript_id "KOF00900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 27374 27376 . - 0 gene_id "W7K_01605"; transcript_id "KOF00900"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 27908 28120 . - . gene_id "W7K_01610"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 27908 28120 . - . gene_id "W7K_01610"; transcript_id "KOF00901"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 27908 28120 . - . gene_id "W7K_01610"; transcript_id "KOF00901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00901-1"; +contig44 ena CDS 27911 28120 . - 0 gene_id "W7K_01610"; transcript_id "KOF00901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00901"; +contig44 ena start_codon 28118 28120 . - 0 gene_id "W7K_01610"; transcript_id "KOF00901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 27908 27910 . - 0 gene_id "W7K_01610"; transcript_id "KOF00901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 28235 28310 . - . gene_id "W7K_01615"; gene_source "ena"; gene_biotype "tRNA"; +contig44 ena transcript 28235 28310 . - . gene_id "W7K_01615"; transcript_id "EBT00051077667"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_01615"; transcript_source "ena"; transcript_biotype "tRNA"; +contig44 ena exon 28235 28310 . - . gene_id "W7K_01615"; transcript_id "EBT00051077667"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_01615"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_01615-1"; +contig44 ena gene 28351 29199 . - . gene_id "W7K_01620"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 28351 29199 . - . gene_id "W7K_01620"; transcript_id "KOF00902"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 28351 29199 . - . gene_id "W7K_01620"; transcript_id "KOF00902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00902-1"; +contig44 ena CDS 28354 29199 . - 0 gene_id "W7K_01620"; transcript_id "KOF00902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00902"; +contig44 ena start_codon 29197 29199 . - 0 gene_id "W7K_01620"; transcript_id "KOF00902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 28351 28353 . - 0 gene_id "W7K_01620"; transcript_id "KOF00902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 29209 29940 . - . gene_id "W7K_01625"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 29209 29940 . - . gene_id "W7K_01625"; transcript_id "KOF00903"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 29209 29940 . - . gene_id "W7K_01625"; transcript_id "KOF00903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00903-1"; +contig44 ena CDS 29212 29940 . - 0 gene_id "W7K_01625"; transcript_id "KOF00903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00903"; +contig44 ena start_codon 29938 29940 . - 0 gene_id "W7K_01625"; transcript_id "KOF00903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 29209 29211 . - 0 gene_id "W7K_01625"; transcript_id "KOF00903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 29937 30905 . - . gene_id "W7K_01630"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 29937 30905 . - . gene_id "W7K_01630"; transcript_id "KOF00904"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 29937 30905 . - . gene_id "W7K_01630"; transcript_id "KOF00904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00904-1"; +contig44 ena CDS 29940 30905 . - 0 gene_id "W7K_01630"; transcript_id "KOF00904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00904"; +contig44 ena start_codon 30903 30905 . - 0 gene_id "W7K_01630"; transcript_id "KOF00904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 29937 29939 . - 0 gene_id "W7K_01630"; transcript_id "KOF00904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 31049 31327 . + . gene_id "W7K_01635"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 31049 31327 . + . gene_id "W7K_01635"; transcript_id "KOF00905"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 31049 31327 . + . gene_id "W7K_01635"; transcript_id "KOF00905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00905-1"; +contig44 ena CDS 31049 31324 . + 0 gene_id "W7K_01635"; transcript_id "KOF00905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00905"; +contig44 ena start_codon 31049 31051 . + 0 gene_id "W7K_01635"; transcript_id "KOF00905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 31325 31327 . + 0 gene_id "W7K_01635"; transcript_id "KOF00905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 31336 32082 . + . gene_id "W7K_01640"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 31336 32082 . + . gene_id "W7K_01640"; transcript_id "KOF00906"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 31336 32082 . + . gene_id "W7K_01640"; transcript_id "KOF00906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00906-1"; +contig44 ena CDS 31336 32079 . + 0 gene_id "W7K_01640"; transcript_id "KOF00906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00906"; +contig44 ena start_codon 31336 31338 . + 0 gene_id "W7K_01640"; transcript_id "KOF00906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 32080 32082 . + 0 gene_id "W7K_01640"; transcript_id "KOF00906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 32167 33591 . - . gene_id "W7K_01645"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 32167 33591 . - . gene_id "W7K_01645"; transcript_id "KOF00907"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 32167 33591 . - . gene_id "W7K_01645"; transcript_id "KOF00907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00907-1"; +contig44 ena CDS 32170 33591 . - 0 gene_id "W7K_01645"; transcript_id "KOF00907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00907"; +contig44 ena start_codon 33589 33591 . - 0 gene_id "W7K_01645"; transcript_id "KOF00907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 32167 32169 . - 0 gene_id "W7K_01645"; transcript_id "KOF00907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 33617 34300 . - . gene_id "W7K_01650"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 33617 34300 . - . gene_id "W7K_01650"; transcript_id "KOF00908"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 33617 34300 . - . gene_id "W7K_01650"; transcript_id "KOF00908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00908-1"; +contig44 ena CDS 33620 34300 . - 0 gene_id "W7K_01650"; transcript_id "KOF00908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00908"; +contig44 ena start_codon 34298 34300 . - 0 gene_id "W7K_01650"; transcript_id "KOF00908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 33617 33619 . - 0 gene_id "W7K_01650"; transcript_id "KOF00908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 34374 34748 . - . gene_id "W7K_01655"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 34374 34748 . - . gene_id "W7K_01655"; transcript_id "KOF00909"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 34374 34748 . - . gene_id "W7K_01655"; transcript_id "KOF00909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00909-1"; +contig44 ena CDS 34377 34748 . - 0 gene_id "W7K_01655"; transcript_id "KOF00909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00909"; +contig44 ena start_codon 34746 34748 . - 0 gene_id "W7K_01655"; transcript_id "KOF00909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 34374 34376 . - 0 gene_id "W7K_01655"; transcript_id "KOF00909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 34961 35992 . - . gene_id "W7K_01660"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 34961 35992 . - . gene_id "W7K_01660"; transcript_id "KOF00910"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 34961 35992 . - . gene_id "W7K_01660"; transcript_id "KOF00910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00910-1"; +contig44 ena CDS 34964 35992 . - 0 gene_id "W7K_01660"; transcript_id "KOF00910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00910"; +contig44 ena start_codon 35990 35992 . - 0 gene_id "W7K_01660"; transcript_id "KOF00910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 34961 34963 . - 0 gene_id "W7K_01660"; transcript_id "KOF00910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 36982 38445 . - . gene_id "W7K_01670"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 36982 38445 . - . gene_id "W7K_01670"; transcript_id "KOF00911"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 36982 38445 . - . gene_id "W7K_01670"; transcript_id "KOF00911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00911-1"; +contig44 ena CDS 36985 38445 . - 0 gene_id "W7K_01670"; transcript_id "KOF00911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00911"; +contig44 ena start_codon 38443 38445 . - 0 gene_id "W7K_01670"; transcript_id "KOF00911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 36982 36984 . - 0 gene_id "W7K_01670"; transcript_id "KOF00911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 38655 39635 . + . gene_id "W7K_01675"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 38655 39635 . + . gene_id "W7K_01675"; transcript_id "KOF00912"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 38655 39635 . + . gene_id "W7K_01675"; transcript_id "KOF00912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00912-1"; +contig44 ena CDS 38655 39632 . + 0 gene_id "W7K_01675"; transcript_id "KOF00912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00912"; +contig44 ena start_codon 38655 38657 . + 0 gene_id "W7K_01675"; transcript_id "KOF00912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 39633 39635 . + 0 gene_id "W7K_01675"; transcript_id "KOF00912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 39747 40172 . + . gene_id "W7K_01680"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 39747 40172 . + . gene_id "W7K_01680"; transcript_id "KOF00913"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 39747 40172 . + . gene_id "W7K_01680"; transcript_id "KOF00913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00913-1"; +contig44 ena CDS 39747 40169 . + 0 gene_id "W7K_01680"; transcript_id "KOF00913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00913"; +contig44 ena start_codon 39747 39749 . + 0 gene_id "W7K_01680"; transcript_id "KOF00913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 40170 40172 . + 0 gene_id "W7K_01680"; transcript_id "KOF00913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 40404 41294 . - . gene_id "W7K_01685"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 40404 41294 . - . gene_id "W7K_01685"; transcript_id "KOF00914"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 40404 41294 . - . gene_id "W7K_01685"; transcript_id "KOF00914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00914-1"; +contig44 ena CDS 40407 41294 . - 0 gene_id "W7K_01685"; transcript_id "KOF00914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00914"; +contig44 ena start_codon 41292 41294 . - 0 gene_id "W7K_01685"; transcript_id "KOF00914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 40404 40406 . - 0 gene_id "W7K_01685"; transcript_id "KOF00914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 41291 42466 . - . gene_id "W7K_01690"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 41291 42466 . - . gene_id "W7K_01690"; transcript_id "KOF00915"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 41291 42466 . - . gene_id "W7K_01690"; transcript_id "KOF00915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00915-1"; +contig44 ena CDS 41294 42466 . - 0 gene_id "W7K_01690"; transcript_id "KOF00915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00915"; +contig44 ena start_codon 42464 42466 . - 0 gene_id "W7K_01690"; transcript_id "KOF00915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 41291 41293 . - 0 gene_id "W7K_01690"; transcript_id "KOF00915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 42463 43260 . - . gene_id "W7K_01695"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 42463 43260 . - . gene_id "W7K_01695"; transcript_id "KOF00916"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 42463 43260 . - . gene_id "W7K_01695"; transcript_id "KOF00916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00916-1"; +contig44 ena CDS 42466 43260 . - 0 gene_id "W7K_01695"; transcript_id "KOF00916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00916"; +contig44 ena start_codon 43258 43260 . - 0 gene_id "W7K_01695"; transcript_id "KOF00916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 42463 42465 . - 0 gene_id "W7K_01695"; transcript_id "KOF00916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 43257 44423 . - . gene_id "W7K_01700"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 43257 44423 . - . gene_id "W7K_01700"; transcript_id "KOF00917"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 43257 44423 . - . gene_id "W7K_01700"; transcript_id "KOF00917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00917-1"; +contig44 ena CDS 43260 44423 . - 0 gene_id "W7K_01700"; transcript_id "KOF00917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00917"; +contig44 ena start_codon 44421 44423 . - 0 gene_id "W7K_01700"; transcript_id "KOF00917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 43257 43259 . - 0 gene_id "W7K_01700"; transcript_id "KOF00917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 44438 45943 . - . gene_id "W7K_01705"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 44438 45943 . - . gene_id "W7K_01705"; transcript_id "KOF00918"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 44438 45943 . - . gene_id "W7K_01705"; transcript_id "KOF00918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00918-1"; +contig44 ena CDS 44441 45943 . - 0 gene_id "W7K_01705"; transcript_id "KOF00918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00918"; +contig44 ena start_codon 45941 45943 . - 0 gene_id "W7K_01705"; transcript_id "KOF00918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 44438 44440 . - 0 gene_id "W7K_01705"; transcript_id "KOF00918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 46058 47425 . + . gene_id "W7K_01710"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 46058 47425 . + . gene_id "W7K_01710"; transcript_id "KOF00919"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 46058 47425 . + . gene_id "W7K_01710"; transcript_id "KOF00919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00919-1"; +contig44 ena CDS 46058 47422 . + 0 gene_id "W7K_01710"; transcript_id "KOF00919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00919"; +contig44 ena start_codon 46058 46060 . + 0 gene_id "W7K_01710"; transcript_id "KOF00919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 47423 47425 . + 0 gene_id "W7K_01710"; transcript_id "KOF00919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 47792 49639 . - . gene_id "W7K_01715"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 47792 49639 . - . gene_id "W7K_01715"; transcript_id "KOF01025"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 47792 49639 . - . gene_id "W7K_01715"; transcript_id "KOF01025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01025-1"; +contig44 ena CDS 47795 49639 . - 0 gene_id "W7K_01715"; transcript_id "KOF01025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01025"; +contig44 ena start_codon 49637 49639 . - 0 gene_id "W7K_01715"; transcript_id "KOF01025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 47792 47794 . - 0 gene_id "W7K_01715"; transcript_id "KOF01025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 50185 50856 . + . gene_id "W7K_01720"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 50185 50856 . + . gene_id "W7K_01720"; transcript_id "KOF00920"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 50185 50856 . + . gene_id "W7K_01720"; transcript_id "KOF00920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00920-1"; +contig44 ena CDS 50185 50853 . + 0 gene_id "W7K_01720"; transcript_id "KOF00920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00920"; +contig44 ena start_codon 50185 50187 . + 0 gene_id "W7K_01720"; transcript_id "KOF00920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 50854 50856 . + 0 gene_id "W7K_01720"; transcript_id "KOF00920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 50913 51539 . + . gene_id "W7K_01725"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 50913 51539 . + . gene_id "W7K_01725"; transcript_id "KOF00921"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 50913 51539 . + . gene_id "W7K_01725"; transcript_id "KOF00921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00921-1"; +contig44 ena CDS 50913 51536 . + 0 gene_id "W7K_01725"; transcript_id "KOF00921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00921"; +contig44 ena start_codon 50913 50915 . + 0 gene_id "W7K_01725"; transcript_id "KOF00921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 51537 51539 . + 0 gene_id "W7K_01725"; transcript_id "KOF00921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 51747 52598 . - . gene_id "W7K_01730"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 51747 52598 . - . gene_id "W7K_01730"; transcript_id "KOF01026"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 51747 52598 . - . gene_id "W7K_01730"; transcript_id "KOF01026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01026-1"; +contig44 ena CDS 51750 52598 . - 0 gene_id "W7K_01730"; transcript_id "KOF01026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01026"; +contig44 ena start_codon 52596 52598 . - 0 gene_id "W7K_01730"; transcript_id "KOF01026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 51747 51749 . - 0 gene_id "W7K_01730"; transcript_id "KOF01026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 52713 53624 . + . gene_id "W7K_01735"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 52713 53624 . + . gene_id "W7K_01735"; transcript_id "KOF00922"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 52713 53624 . + . gene_id "W7K_01735"; transcript_id "KOF00922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00922-1"; +contig44 ena CDS 52713 53621 . + 0 gene_id "W7K_01735"; transcript_id "KOF00922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00922"; +contig44 ena start_codon 52713 52715 . + 0 gene_id "W7K_01735"; transcript_id "KOF00922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 53622 53624 . + 0 gene_id "W7K_01735"; transcript_id "KOF00922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 53628 54719 . - . gene_id "W7K_01740"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 53628 54719 . - . gene_id "W7K_01740"; transcript_id "KOF00923"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 53628 54719 . - . gene_id "W7K_01740"; transcript_id "KOF00923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00923-1"; +contig44 ena CDS 53631 54719 . - 0 gene_id "W7K_01740"; transcript_id "KOF00923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00923"; +contig44 ena start_codon 54717 54719 . - 0 gene_id "W7K_01740"; transcript_id "KOF00923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 53628 53630 . - 0 gene_id "W7K_01740"; transcript_id "KOF00923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 54894 55700 . - . gene_id "W7K_01745"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 54894 55700 . - . gene_id "W7K_01745"; transcript_id "KOF00924"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 54894 55700 . - . gene_id "W7K_01745"; transcript_id "KOF00924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00924-1"; +contig44 ena CDS 54897 55700 . - 0 gene_id "W7K_01745"; transcript_id "KOF00924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00924"; +contig44 ena start_codon 55698 55700 . - 0 gene_id "W7K_01745"; transcript_id "KOF00924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 54894 54896 . - 0 gene_id "W7K_01745"; transcript_id "KOF00924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 55756 56157 . - . gene_id "W7K_01750"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 55756 56157 . - . gene_id "W7K_01750"; transcript_id "KOF00925"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 55756 56157 . - . gene_id "W7K_01750"; transcript_id "KOF00925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00925-1"; +contig44 ena CDS 55759 56157 . - 0 gene_id "W7K_01750"; transcript_id "KOF00925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00925"; +contig44 ena start_codon 56155 56157 . - 0 gene_id "W7K_01750"; transcript_id "KOF00925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 55756 55758 . - 0 gene_id "W7K_01750"; transcript_id "KOF00925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 56250 56885 . + . gene_id "W7K_01755"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 56250 56885 . + . gene_id "W7K_01755"; transcript_id "KOF00926"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 56250 56885 . + . gene_id "W7K_01755"; transcript_id "KOF00926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00926-1"; +contig44 ena CDS 56250 56882 . + 0 gene_id "W7K_01755"; transcript_id "KOF00926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00926"; +contig44 ena start_codon 56250 56252 . + 0 gene_id "W7K_01755"; transcript_id "KOF00926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 56883 56885 . + 0 gene_id "W7K_01755"; transcript_id "KOF00926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 57030 58049 . - . gene_id "W7K_01760"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 57030 58049 . - . gene_id "W7K_01760"; transcript_id "KOF00927"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 57030 58049 . - . gene_id "W7K_01760"; transcript_id "KOF00927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00927-1"; +contig44 ena CDS 57033 58049 . - 0 gene_id "W7K_01760"; transcript_id "KOF00927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00927"; +contig44 ena start_codon 58047 58049 . - 0 gene_id "W7K_01760"; transcript_id "KOF00927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 57030 57032 . - 0 gene_id "W7K_01760"; transcript_id "KOF00927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 58197 60599 . - . gene_id "W7K_01765"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 58197 60599 . - . gene_id "W7K_01765"; transcript_id "KOF00928"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 58197 60599 . - . gene_id "W7K_01765"; transcript_id "KOF00928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00928-1"; +contig44 ena CDS 58200 60599 . - 0 gene_id "W7K_01765"; transcript_id "KOF00928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00928"; +contig44 ena start_codon 60597 60599 . - 0 gene_id "W7K_01765"; transcript_id "KOF00928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 58197 58199 . - 0 gene_id "W7K_01765"; transcript_id "KOF00928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 61130 61966 . + . gene_id "W7K_01770"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 61130 61966 . + . gene_id "W7K_01770"; transcript_id "KOF00929"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 61130 61966 . + . gene_id "W7K_01770"; transcript_id "KOF00929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00929-1"; +contig44 ena CDS 61130 61963 . + 0 gene_id "W7K_01770"; transcript_id "KOF00929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00929"; +contig44 ena start_codon 61130 61132 . + 0 gene_id "W7K_01770"; transcript_id "KOF00929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 61964 61966 . + 0 gene_id "W7K_01770"; transcript_id "KOF00929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 62069 63169 . - . gene_id "W7K_01775"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 62069 63169 . - . gene_id "W7K_01775"; transcript_id "KOF00930"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 62069 63169 . - . gene_id "W7K_01775"; transcript_id "KOF00930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00930-1"; +contig44 ena CDS 62072 63169 . - 0 gene_id "W7K_01775"; transcript_id "KOF00930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00930"; +contig44 ena start_codon 63167 63169 . - 0 gene_id "W7K_01775"; transcript_id "KOF00930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 62069 62071 . - 0 gene_id "W7K_01775"; transcript_id "KOF00930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 63166 63837 . - . gene_id "W7K_01780"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 63166 63837 . - . gene_id "W7K_01780"; transcript_id "KOF00931"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 63166 63837 . - . gene_id "W7K_01780"; transcript_id "KOF00931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00931-1"; +contig44 ena CDS 63169 63837 . - 0 gene_id "W7K_01780"; transcript_id "KOF00931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00931"; +contig44 ena start_codon 63835 63837 . - 0 gene_id "W7K_01780"; transcript_id "KOF00931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 63166 63168 . - 0 gene_id "W7K_01780"; transcript_id "KOF00931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 63881 64738 . + . gene_id "W7K_01785"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 63881 64738 . + . gene_id "W7K_01785"; transcript_id "KOF00932"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 63881 64738 . + . gene_id "W7K_01785"; transcript_id "KOF00932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00932-1"; +contig44 ena CDS 63881 64735 . + 0 gene_id "W7K_01785"; transcript_id "KOF00932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00932"; +contig44 ena start_codon 63881 63883 . + 0 gene_id "W7K_01785"; transcript_id "KOF00932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 64736 64738 . + 0 gene_id "W7K_01785"; transcript_id "KOF00932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 65040 66485 . - . gene_id "W7K_01790"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 65040 66485 . - . gene_id "W7K_01790"; transcript_id "KOF00933"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 65040 66485 . - . gene_id "W7K_01790"; transcript_id "KOF00933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00933-1"; +contig44 ena CDS 65043 66485 . - 0 gene_id "W7K_01790"; transcript_id "KOF00933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00933"; +contig44 ena start_codon 66483 66485 . - 0 gene_id "W7K_01790"; transcript_id "KOF00933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 65040 65042 . - 0 gene_id "W7K_01790"; transcript_id "KOF00933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 66694 67212 . - . gene_id "W7K_01795"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 66694 67212 . - . gene_id "W7K_01795"; transcript_id "KOF00934"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 66694 67212 . - . gene_id "W7K_01795"; transcript_id "KOF00934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00934-1"; +contig44 ena CDS 66697 67212 . - 0 gene_id "W7K_01795"; transcript_id "KOF00934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00934"; +contig44 ena start_codon 67210 67212 . - 0 gene_id "W7K_01795"; transcript_id "KOF00934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 66694 66696 . - 0 gene_id "W7K_01795"; transcript_id "KOF00934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 67432 68049 . - . gene_id "W7K_01800"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 67432 68049 . - . gene_id "W7K_01800"; transcript_id "KOF00935"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 67432 68049 . - . gene_id "W7K_01800"; transcript_id "KOF00935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00935-1"; +contig44 ena CDS 67435 68049 . - 0 gene_id "W7K_01800"; transcript_id "KOF00935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00935"; +contig44 ena start_codon 68047 68049 . - 0 gene_id "W7K_01800"; transcript_id "KOF00935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 67432 67434 . - 0 gene_id "W7K_01800"; transcript_id "KOF00935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 68211 69374 . + . gene_id "W7K_01805"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 68211 69374 . + . gene_id "W7K_01805"; transcript_id "KOF00936"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 68211 69374 . + . gene_id "W7K_01805"; transcript_id "KOF00936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00936-1"; +contig44 ena CDS 68211 69371 . + 0 gene_id "W7K_01805"; transcript_id "KOF00936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00936"; +contig44 ena start_codon 68211 68213 . + 0 gene_id "W7K_01805"; transcript_id "KOF00936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 69372 69374 . + 0 gene_id "W7K_01805"; transcript_id "KOF00936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 69385 70995 . + . gene_id "W7K_01810"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 69385 70995 . + . gene_id "W7K_01810"; transcript_id "KOF00937"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 69385 70995 . + . gene_id "W7K_01810"; transcript_id "KOF00937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00937-1"; +contig44 ena CDS 69385 70992 . + 0 gene_id "W7K_01810"; transcript_id "KOF00937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00937"; +contig44 ena start_codon 69385 69387 . + 0 gene_id "W7K_01810"; transcript_id "KOF00937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 70993 70995 . + 0 gene_id "W7K_01810"; transcript_id "KOF00937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 71022 73004 . + . gene_id "W7K_01815"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 71022 73004 . + . gene_id "W7K_01815"; transcript_id "KOF00938"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 71022 73004 . + . gene_id "W7K_01815"; transcript_id "KOF00938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00938-1"; +contig44 ena CDS 71022 73001 . + 0 gene_id "W7K_01815"; transcript_id "KOF00938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00938"; +contig44 ena start_codon 71022 71024 . + 0 gene_id "W7K_01815"; transcript_id "KOF00938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 73002 73004 . + 0 gene_id "W7K_01815"; transcript_id "KOF00938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 73024 74190 . - . gene_id "W7K_01820"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 73024 74190 . - . gene_id "W7K_01820"; transcript_id "KOF00939"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 73024 74190 . - . gene_id "W7K_01820"; transcript_id "KOF00939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00939-1"; +contig44 ena CDS 73027 74190 . - 0 gene_id "W7K_01820"; transcript_id "KOF00939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00939"; +contig44 ena start_codon 74188 74190 . - 0 gene_id "W7K_01820"; transcript_id "KOF00939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 73024 73026 . - 0 gene_id "W7K_01820"; transcript_id "KOF00939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 74329 74625 . + . gene_id "W7K_01825"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 74329 74625 . + . gene_id "W7K_01825"; transcript_id "KOF00940"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 74329 74625 . + . gene_id "W7K_01825"; transcript_id "KOF00940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00940-1"; +contig44 ena CDS 74329 74622 . + 0 gene_id "W7K_01825"; transcript_id "KOF00940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00940"; +contig44 ena start_codon 74329 74331 . + 0 gene_id "W7K_01825"; transcript_id "KOF00940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 74623 74625 . + 0 gene_id "W7K_01825"; transcript_id "KOF00940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 74633 77122 . - . gene_id "W7K_01830"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 74633 77122 . - . gene_id "W7K_01830"; transcript_id "KOF01027"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 74633 77122 . - . gene_id "W7K_01830"; transcript_id "KOF01027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01027-1"; +contig44 ena CDS 74636 77122 . - 0 gene_id "W7K_01830"; transcript_id "KOF01027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01027"; +contig44 ena start_codon 77120 77122 . - 0 gene_id "W7K_01830"; transcript_id "KOF01027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 74633 74635 . - 0 gene_id "W7K_01830"; transcript_id "KOF01027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 77136 78176 . - . gene_id "W7K_01835"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 77136 78176 . - . gene_id "W7K_01835"; transcript_id "KOF00941"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 77136 78176 . - . gene_id "W7K_01835"; transcript_id "KOF00941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00941-1"; +contig44 ena CDS 77139 78176 . - 0 gene_id "W7K_01835"; transcript_id "KOF00941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00941"; +contig44 ena start_codon 78174 78176 . - 0 gene_id "W7K_01835"; transcript_id "KOF00941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 77136 77138 . - 0 gene_id "W7K_01835"; transcript_id "KOF00941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 78594 79895 . - . gene_id "W7K_01840"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 78594 79895 . - . gene_id "W7K_01840"; transcript_id "KOF00942"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 78594 79895 . - . gene_id "W7K_01840"; transcript_id "KOF00942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00942-1"; +contig44 ena CDS 78597 79895 . - 0 gene_id "W7K_01840"; transcript_id "KOF00942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00942"; +contig44 ena start_codon 79893 79895 . - 0 gene_id "W7K_01840"; transcript_id "KOF00942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 78594 78596 . - 0 gene_id "W7K_01840"; transcript_id "KOF00942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 79961 81583 . - . gene_id "W7K_01845"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 79961 81583 . - . gene_id "W7K_01845"; transcript_id "KOF00943"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 79961 81583 . - . gene_id "W7K_01845"; transcript_id "KOF00943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00943-1"; +contig44 ena CDS 79964 81583 . - 0 gene_id "W7K_01845"; transcript_id "KOF00943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00943"; +contig44 ena start_codon 81581 81583 . - 0 gene_id "W7K_01845"; transcript_id "KOF00943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 79961 79963 . - 0 gene_id "W7K_01845"; transcript_id "KOF00943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 81693 82661 . + . gene_id "W7K_01850"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 81693 82661 . + . gene_id "W7K_01850"; transcript_id "KOF00944"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 81693 82661 . + . gene_id "W7K_01850"; transcript_id "KOF00944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00944-1"; +contig44 ena CDS 81693 82658 . + 0 gene_id "W7K_01850"; transcript_id "KOF00944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00944"; +contig44 ena start_codon 81693 81695 . + 0 gene_id "W7K_01850"; transcript_id "KOF00944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 82659 82661 . + 0 gene_id "W7K_01850"; transcript_id "KOF00944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 82994 83902 . + . gene_id "W7K_01855"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 82994 83902 . + . gene_id "W7K_01855"; transcript_id "KOF00945"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 82994 83902 . + . gene_id "W7K_01855"; transcript_id "KOF00945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00945-1"; +contig44 ena CDS 82994 83899 . + 0 gene_id "W7K_01855"; transcript_id "KOF00945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00945"; +contig44 ena start_codon 82994 82996 . + 0 gene_id "W7K_01855"; transcript_id "KOF00945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 83900 83902 . + 0 gene_id "W7K_01855"; transcript_id "KOF00945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 83986 85242 . - . gene_id "W7K_01860"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 83986 85242 . - . gene_id "W7K_01860"; transcript_id "KOF00946"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 83986 85242 . - . gene_id "W7K_01860"; transcript_id "KOF00946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00946-1"; +contig44 ena CDS 83989 85242 . - 0 gene_id "W7K_01860"; transcript_id "KOF00946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00946"; +contig44 ena start_codon 85240 85242 . - 0 gene_id "W7K_01860"; transcript_id "KOF00946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 83986 83988 . - 0 gene_id "W7K_01860"; transcript_id "KOF00946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 85367 85993 . - . gene_id "W7K_01865"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 85367 85993 . - . gene_id "W7K_01865"; transcript_id "KOF00947"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 85367 85993 . - . gene_id "W7K_01865"; transcript_id "KOF00947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00947-1"; +contig44 ena CDS 85370 85993 . - 0 gene_id "W7K_01865"; transcript_id "KOF00947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00947"; +contig44 ena start_codon 85991 85993 . - 0 gene_id "W7K_01865"; transcript_id "KOF00947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 85367 85369 . - 0 gene_id "W7K_01865"; transcript_id "KOF00947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 86251 86652 . + . gene_id "W7K_01870"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 86251 86652 . + . gene_id "W7K_01870"; transcript_id "KOF00948"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 86251 86652 . + . gene_id "W7K_01870"; transcript_id "KOF00948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00948-1"; +contig44 ena CDS 86251 86649 . + 0 gene_id "W7K_01870"; transcript_id "KOF00948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00948"; +contig44 ena start_codon 86251 86253 . + 0 gene_id "W7K_01870"; transcript_id "KOF00948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 86650 86652 . + 0 gene_id "W7K_01870"; transcript_id "KOF00948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 86656 87102 . + . gene_id "W7K_01875"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 86656 87102 . + . gene_id "W7K_01875"; transcript_id "KOF00949"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 86656 87102 . + . gene_id "W7K_01875"; transcript_id "KOF00949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00949-1"; +contig44 ena CDS 86656 87099 . + 0 gene_id "W7K_01875"; transcript_id "KOF00949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00949"; +contig44 ena start_codon 86656 86658 . + 0 gene_id "W7K_01875"; transcript_id "KOF00949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 87100 87102 . + 0 gene_id "W7K_01875"; transcript_id "KOF00949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 87238 89394 . - . gene_id "W7K_01880"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 87238 89394 . - . gene_id "W7K_01880"; transcript_id "KOF00950"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 87238 89394 . - . gene_id "W7K_01880"; transcript_id "KOF00950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00950-1"; +contig44 ena CDS 87241 89394 . - 0 gene_id "W7K_01880"; transcript_id "KOF00950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00950"; +contig44 ena start_codon 89392 89394 . - 0 gene_id "W7K_01880"; transcript_id "KOF00950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 87238 87240 . - 0 gene_id "W7K_01880"; transcript_id "KOF00950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 89506 90108 . - . gene_id "W7K_01885"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 89506 90108 . - . gene_id "W7K_01885"; transcript_id "KOF00951"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 89506 90108 . - . gene_id "W7K_01885"; transcript_id "KOF00951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00951-1"; +contig44 ena CDS 89509 90108 . - 0 gene_id "W7K_01885"; transcript_id "KOF00951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00951"; +contig44 ena start_codon 90106 90108 . - 0 gene_id "W7K_01885"; transcript_id "KOF00951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 89506 89508 . - 0 gene_id "W7K_01885"; transcript_id "KOF00951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 90113 90544 . - . gene_id "W7K_01890"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 90113 90544 . - . gene_id "W7K_01890"; transcript_id "KOF00952"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 90113 90544 . - . gene_id "W7K_01890"; transcript_id "KOF00952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00952-1"; +contig44 ena CDS 90116 90544 . - 0 gene_id "W7K_01890"; transcript_id "KOF00952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00952"; +contig44 ena start_codon 90542 90544 . - 0 gene_id "W7K_01890"; transcript_id "KOF00952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 90113 90115 . - 0 gene_id "W7K_01890"; transcript_id "KOF00952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 90678 91205 . + . gene_id "W7K_01895"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 90678 91205 . + . gene_id "W7K_01895"; transcript_id "KOF00953"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 90678 91205 . + . gene_id "W7K_01895"; transcript_id "KOF00953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00953-1"; +contig44 ena CDS 90678 91202 . + 0 gene_id "W7K_01895"; transcript_id "KOF00953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00953"; +contig44 ena start_codon 90678 90680 . + 0 gene_id "W7K_01895"; transcript_id "KOF00953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 91203 91205 . + 0 gene_id "W7K_01895"; transcript_id "KOF00953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 91276 92019 . - . gene_id "W7K_01900"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 91276 92019 . - . gene_id "W7K_01900"; transcript_id "KOF00954"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 91276 92019 . - . gene_id "W7K_01900"; transcript_id "KOF00954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00954-1"; +contig44 ena CDS 91279 92019 . - 0 gene_id "W7K_01900"; transcript_id "KOF00954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00954"; +contig44 ena start_codon 92017 92019 . - 0 gene_id "W7K_01900"; transcript_id "KOF00954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 91276 91278 . - 0 gene_id "W7K_01900"; transcript_id "KOF00954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 92127 92705 . - . gene_id "W7K_01905"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 92127 92705 . - . gene_id "W7K_01905"; transcript_id "KOF00955"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 92127 92705 . - . gene_id "W7K_01905"; transcript_id "KOF00955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00955-1"; +contig44 ena CDS 92130 92705 . - 0 gene_id "W7K_01905"; transcript_id "KOF00955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00955"; +contig44 ena start_codon 92703 92705 . - 0 gene_id "W7K_01905"; transcript_id "KOF00955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 92127 92129 . - 0 gene_id "W7K_01905"; transcript_id "KOF00955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 92711 94366 . - . gene_id "W7K_01910"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 92711 94366 . - . gene_id "W7K_01910"; transcript_id "KOF00956"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 92711 94366 . - . gene_id "W7K_01910"; transcript_id "KOF00956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00956-1"; +contig44 ena CDS 92714 94366 . - 0 gene_id "W7K_01910"; transcript_id "KOF00956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00956"; +contig44 ena start_codon 94364 94366 . - 0 gene_id "W7K_01910"; transcript_id "KOF00956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 92711 92713 . - 0 gene_id "W7K_01910"; transcript_id "KOF00956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 94363 94998 . - . gene_id "W7K_01915"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 94363 94998 . - . gene_id "W7K_01915"; transcript_id "KOF00957"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 94363 94998 . - . gene_id "W7K_01915"; transcript_id "KOF00957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00957-1"; +contig44 ena CDS 94366 94998 . - 0 gene_id "W7K_01915"; transcript_id "KOF00957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00957"; +contig44 ena start_codon 94996 94998 . - 0 gene_id "W7K_01915"; transcript_id "KOF00957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 94363 94365 . - 0 gene_id "W7K_01915"; transcript_id "KOF00957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 95400 96494 . + . gene_id "W7K_01920"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 95400 96494 . + . gene_id "W7K_01920"; transcript_id "KOF01028"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 95400 96494 . + . gene_id "W7K_01920"; transcript_id "KOF01028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01028-1"; +contig44 ena CDS 95400 96491 . + 0 gene_id "W7K_01920"; transcript_id "KOF01028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01028"; +contig44 ena start_codon 95400 95402 . + 0 gene_id "W7K_01920"; transcript_id "KOF01028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 96492 96494 . + 0 gene_id "W7K_01920"; transcript_id "KOF01028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 96638 96793 . - . gene_id "W7K_01925"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 96638 96793 . - . gene_id "W7K_01925"; transcript_id "KOF00958"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 96638 96793 . - . gene_id "W7K_01925"; transcript_id "KOF00958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00958-1"; +contig44 ena CDS 96641 96793 . - 0 gene_id "W7K_01925"; transcript_id "KOF00958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00958"; +contig44 ena start_codon 96791 96793 . - 0 gene_id "W7K_01925"; transcript_id "KOF00958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 96638 96640 . - 0 gene_id "W7K_01925"; transcript_id "KOF00958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 96876 97868 . - . gene_id "W7K_01930"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 96876 97868 . - . gene_id "W7K_01930"; transcript_id "KOF00959"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 96876 97868 . - . gene_id "W7K_01930"; transcript_id "KOF00959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00959-1"; +contig44 ena CDS 96879 97868 . - 0 gene_id "W7K_01930"; transcript_id "KOF00959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00959"; +contig44 ena start_codon 97866 97868 . - 0 gene_id "W7K_01930"; transcript_id "KOF00959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 96876 96878 . - 0 gene_id "W7K_01930"; transcript_id "KOF00959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 97865 99523 . - . gene_id "W7K_01935"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 97865 99523 . - . gene_id "W7K_01935"; transcript_id "KOF00960"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 97865 99523 . - . gene_id "W7K_01935"; transcript_id "KOF00960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00960-1"; +contig44 ena CDS 97868 99523 . - 0 gene_id "W7K_01935"; transcript_id "KOF00960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00960"; +contig44 ena start_codon 99521 99523 . - 0 gene_id "W7K_01935"; transcript_id "KOF00960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 97865 97867 . - 0 gene_id "W7K_01935"; transcript_id "KOF00960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 99628 100059 . + . gene_id "W7K_01940"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 99628 100059 . + . gene_id "W7K_01940"; transcript_id "KOF00961"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 99628 100059 . + . gene_id "W7K_01940"; transcript_id "KOF00961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00961-1"; +contig44 ena CDS 99628 100056 . + 0 gene_id "W7K_01940"; transcript_id "KOF00961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00961"; +contig44 ena start_codon 99628 99630 . + 0 gene_id "W7K_01940"; transcript_id "KOF00961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 100057 100059 . + 0 gene_id "W7K_01940"; transcript_id "KOF00961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 100136 101026 . - . gene_id "W7K_01945"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 100136 101026 . - . gene_id "W7K_01945"; transcript_id "KOF00962"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 100136 101026 . - . gene_id "W7K_01945"; transcript_id "KOF00962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00962-1"; +contig44 ena CDS 100139 101026 . - 0 gene_id "W7K_01945"; transcript_id "KOF00962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00962"; +contig44 ena start_codon 101024 101026 . - 0 gene_id "W7K_01945"; transcript_id "KOF00962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 100136 100138 . - 0 gene_id "W7K_01945"; transcript_id "KOF00962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 101167 102183 . - . gene_id "W7K_01950"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 101167 102183 . - . gene_id "W7K_01950"; transcript_id "KOF00963"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 101167 102183 . - . gene_id "W7K_01950"; transcript_id "KOF00963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00963-1"; +contig44 ena CDS 101170 102183 . - 0 gene_id "W7K_01950"; transcript_id "KOF00963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00963"; +contig44 ena start_codon 102181 102183 . - 0 gene_id "W7K_01950"; transcript_id "KOF00963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 101167 101169 . - 0 gene_id "W7K_01950"; transcript_id "KOF00963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 102286 102603 . - . gene_id "W7K_01955"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 102286 102603 . - . gene_id "W7K_01955"; transcript_id "KOF00964"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 102286 102603 . - . gene_id "W7K_01955"; transcript_id "KOF00964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00964-1"; +contig44 ena CDS 102289 102603 . - 0 gene_id "W7K_01955"; transcript_id "KOF00964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00964"; +contig44 ena start_codon 102601 102603 . - 0 gene_id "W7K_01955"; transcript_id "KOF00964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 102286 102288 . - 0 gene_id "W7K_01955"; transcript_id "KOF00964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 102806 105655 . - . gene_id "W7K_01960"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 102806 105655 . - . gene_id "W7K_01960"; transcript_id "KOF00965"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 102806 105655 . - . gene_id "W7K_01960"; transcript_id "KOF00965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00965-1"; +contig44 ena CDS 102809 105655 . - 0 gene_id "W7K_01960"; transcript_id "KOF00965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00965"; +contig44 ena start_codon 105653 105655 . - 0 gene_id "W7K_01960"; transcript_id "KOF00965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 102806 102808 . - 0 gene_id "W7K_01960"; transcript_id "KOF00965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 106070 106546 . + . gene_id "W7K_01965"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 106070 106546 . + . gene_id "W7K_01965"; transcript_id "KOF00966"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 106070 106546 . + . gene_id "W7K_01965"; transcript_id "KOF00966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00966-1"; +contig44 ena CDS 106070 106543 . + 0 gene_id "W7K_01965"; transcript_id "KOF00966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00966"; +contig44 ena start_codon 106070 106072 . + 0 gene_id "W7K_01965"; transcript_id "KOF00966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 106544 106546 . + 0 gene_id "W7K_01965"; transcript_id "KOF00966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 106616 107095 . + . gene_id "W7K_01970"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 106616 107095 . + . gene_id "W7K_01970"; transcript_id "KOF00967"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 106616 107095 . + . gene_id "W7K_01970"; transcript_id "KOF00967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00967-1"; +contig44 ena CDS 106616 107092 . + 0 gene_id "W7K_01970"; transcript_id "KOF00967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00967"; +contig44 ena start_codon 106616 106618 . + 0 gene_id "W7K_01970"; transcript_id "KOF00967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 107093 107095 . + 0 gene_id "W7K_01970"; transcript_id "KOF00967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 107396 108559 . - . gene_id "W7K_01975"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 107396 108559 . - . gene_id "W7K_01975"; transcript_id "KOF00968"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 107396 108559 . - . gene_id "W7K_01975"; transcript_id "KOF00968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00968-1"; +contig44 ena CDS 107399 108559 . - 0 gene_id "W7K_01975"; transcript_id "KOF00968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00968"; +contig44 ena start_codon 108557 108559 . - 0 gene_id "W7K_01975"; transcript_id "KOF00968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 107396 107398 . - 0 gene_id "W7K_01975"; transcript_id "KOF00968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 108783 110459 . + . gene_id "W7K_01980"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 108783 110459 . + . gene_id "W7K_01980"; transcript_id "KOF00969"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 108783 110459 . + . gene_id "W7K_01980"; transcript_id "KOF00969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00969-1"; +contig44 ena CDS 108783 110456 . + 0 gene_id "W7K_01980"; transcript_id "KOF00969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00969"; +contig44 ena start_codon 108783 108785 . + 0 gene_id "W7K_01980"; transcript_id "KOF00969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 110457 110459 . + 0 gene_id "W7K_01980"; transcript_id "KOF00969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 110525 110926 . + . gene_id "W7K_01985"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 110525 110926 . + . gene_id "W7K_01985"; transcript_id "KOF00970"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 110525 110926 . + . gene_id "W7K_01985"; transcript_id "KOF00970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00970-1"; +contig44 ena CDS 110525 110923 . + 0 gene_id "W7K_01985"; transcript_id "KOF00970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00970"; +contig44 ena start_codon 110525 110527 . + 0 gene_id "W7K_01985"; transcript_id "KOF00970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 110924 110926 . + 0 gene_id "W7K_01985"; transcript_id "KOF00970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 110920 114516 . - . gene_id "W7K_01990"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 110920 114516 . - . gene_id "W7K_01990"; transcript_id "KOF00971"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 110920 114516 . - . gene_id "W7K_01990"; transcript_id "KOF00971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00971-1"; +contig44 ena CDS 110923 114516 . - 0 gene_id "W7K_01990"; transcript_id "KOF00971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00971"; +contig44 ena start_codon 114514 114516 . - 0 gene_id "W7K_01990"; transcript_id "KOF00971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 110920 110922 . - 0 gene_id "W7K_01990"; transcript_id "KOF00971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 114591 115229 . + . gene_id "W7K_01995"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 114591 115229 . + . gene_id "W7K_01995"; transcript_id "KOF00972"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 114591 115229 . + . gene_id "W7K_01995"; transcript_id "KOF00972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00972-1"; +contig44 ena CDS 114591 115226 . + 0 gene_id "W7K_01995"; transcript_id "KOF00972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00972"; +contig44 ena start_codon 114591 114593 . + 0 gene_id "W7K_01995"; transcript_id "KOF00972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 115227 115229 . + 0 gene_id "W7K_01995"; transcript_id "KOF00972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 115607 116377 . + . gene_id "W7K_02000"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 115607 116377 . + . gene_id "W7K_02000"; transcript_id "KOF00973"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 115607 116377 . + . gene_id "W7K_02000"; transcript_id "KOF00973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00973-1"; +contig44 ena CDS 115607 116374 . + 0 gene_id "W7K_02000"; transcript_id "KOF00973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00973"; +contig44 ena start_codon 115607 115609 . + 0 gene_id "W7K_02000"; transcript_id "KOF00973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 116375 116377 . + 0 gene_id "W7K_02000"; transcript_id "KOF00973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 116489 118480 . + . gene_id "W7K_02005"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 116489 118480 . + . gene_id "W7K_02005"; transcript_id "KOF01029"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 116489 118480 . + . gene_id "W7K_02005"; transcript_id "KOF01029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01029-1"; +contig44 ena CDS 116489 118477 . + 0 gene_id "W7K_02005"; transcript_id "KOF01029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01029"; +contig44 ena start_codon 116489 116491 . + 0 gene_id "W7K_02005"; transcript_id "KOF01029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 118478 118480 . + 0 gene_id "W7K_02005"; transcript_id "KOF01029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 118727 119134 . + . gene_id "W7K_02010"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 118727 119134 . + . gene_id "W7K_02010"; transcript_id "KOF00974"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 118727 119134 . + . gene_id "W7K_02010"; transcript_id "KOF00974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00974-1"; +contig44 ena CDS 118727 119131 . + 0 gene_id "W7K_02010"; transcript_id "KOF00974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00974"; +contig44 ena start_codon 118727 118729 . + 0 gene_id "W7K_02010"; transcript_id "KOF00974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 119132 119134 . + 0 gene_id "W7K_02010"; transcript_id "KOF00974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 119263 120387 . + . gene_id "W7K_02015"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 119263 120387 . + . gene_id "W7K_02015"; transcript_id "KOF00975"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 119263 120387 . + . gene_id "W7K_02015"; transcript_id "KOF00975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00975-1"; +contig44 ena CDS 119263 120384 . + 0 gene_id "W7K_02015"; transcript_id "KOF00975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00975"; +contig44 ena start_codon 119263 119265 . + 0 gene_id "W7K_02015"; transcript_id "KOF00975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 120385 120387 . + 0 gene_id "W7K_02015"; transcript_id "KOF00975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 120597 122786 . + . gene_id "W7K_02020"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 120597 122786 . + . gene_id "W7K_02020"; transcript_id "KOF00976"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 120597 122786 . + . gene_id "W7K_02020"; transcript_id "KOF00976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00976-1"; +contig44 ena CDS 120597 122783 . + 0 gene_id "W7K_02020"; transcript_id "KOF00976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00976"; +contig44 ena start_codon 120597 120599 . + 0 gene_id "W7K_02020"; transcript_id "KOF00976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 122784 122786 . + 0 gene_id "W7K_02020"; transcript_id "KOF00976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 122795 123364 . + . gene_id "W7K_02025"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 122795 123364 . + . gene_id "W7K_02025"; transcript_id "KOF01030"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 122795 123364 . + . gene_id "W7K_02025"; transcript_id "KOF01030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01030-1"; +contig44 ena CDS 122795 123361 . + 0 gene_id "W7K_02025"; transcript_id "KOF01030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01030"; +contig44 ena start_codon 122795 122797 . + 0 gene_id "W7K_02025"; transcript_id "KOF01030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 123362 123364 . + 0 gene_id "W7K_02025"; transcript_id "KOF01030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 123471 123887 . - . gene_id "W7K_02030"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 123471 123887 . - . gene_id "W7K_02030"; transcript_id "KOF00977"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 123471 123887 . - . gene_id "W7K_02030"; transcript_id "KOF00977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00977-1"; +contig44 ena CDS 123474 123887 . - 0 gene_id "W7K_02030"; transcript_id "KOF00977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00977"; +contig44 ena start_codon 123885 123887 . - 0 gene_id "W7K_02030"; transcript_id "KOF00977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 123471 123473 . - 0 gene_id "W7K_02030"; transcript_id "KOF00977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 123973 124947 . - . gene_id "W7K_02035"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 123973 124947 . - . gene_id "W7K_02035"; transcript_id "KOF00978"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 123973 124947 . - . gene_id "W7K_02035"; transcript_id "KOF00978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00978-1"; +contig44 ena CDS 123976 124947 . - 0 gene_id "W7K_02035"; transcript_id "KOF00978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00978"; +contig44 ena start_codon 124945 124947 . - 0 gene_id "W7K_02035"; transcript_id "KOF00978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 123973 123975 . - 0 gene_id "W7K_02035"; transcript_id "KOF00978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 125071 125439 . - . gene_id "W7K_02040"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 125071 125439 . - . gene_id "W7K_02040"; transcript_id "KOF00979"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 125071 125439 . - . gene_id "W7K_02040"; transcript_id "KOF00979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00979-1"; +contig44 ena CDS 125074 125439 . - 0 gene_id "W7K_02040"; transcript_id "KOF00979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00979"; +contig44 ena start_codon 125437 125439 . - 0 gene_id "W7K_02040"; transcript_id "KOF00979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 125071 125073 . - 0 gene_id "W7K_02040"; transcript_id "KOF00979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 125508 126275 . - . gene_id "W7K_02045"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 125508 126275 . - . gene_id "W7K_02045"; transcript_id "KOF00980"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 125508 126275 . - . gene_id "W7K_02045"; transcript_id "KOF00980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00980-1"; +contig44 ena CDS 125511 126275 . - 0 gene_id "W7K_02045"; transcript_id "KOF00980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00980"; +contig44 ena start_codon 126273 126275 . - 0 gene_id "W7K_02045"; transcript_id "KOF00980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 125508 125510 . - 0 gene_id "W7K_02045"; transcript_id "KOF00980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 126397 126972 . - . gene_id "W7K_02050"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 126397 126972 . - . gene_id "W7K_02050"; transcript_id "KOF00981"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 126397 126972 . - . gene_id "W7K_02050"; transcript_id "KOF00981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00981-1"; +contig44 ena CDS 126400 126972 . - 0 gene_id "W7K_02050"; transcript_id "KOF00981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00981"; +contig44 ena start_codon 126970 126972 . - 0 gene_id "W7K_02050"; transcript_id "KOF00981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 126397 126399 . - 0 gene_id "W7K_02050"; transcript_id "KOF00981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 127179 128129 . + . gene_id "W7K_02055"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 127179 128129 . + . gene_id "W7K_02055"; transcript_id "KOF00982"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 127179 128129 . + . gene_id "W7K_02055"; transcript_id "KOF00982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00982-1"; +contig44 ena CDS 127179 128126 . + 0 gene_id "W7K_02055"; transcript_id "KOF00982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00982"; +contig44 ena start_codon 127179 127181 . + 0 gene_id "W7K_02055"; transcript_id "KOF00982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 128127 128129 . + 0 gene_id "W7K_02055"; transcript_id "KOF00982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 128342 128614 . + . gene_id "W7K_02060"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 128342 128614 . + . gene_id "W7K_02060"; transcript_id "KOF00983"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 128342 128614 . + . gene_id "W7K_02060"; transcript_id "KOF00983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00983-1"; +contig44 ena CDS 128342 128611 . + 0 gene_id "W7K_02060"; transcript_id "KOF00983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00983"; +contig44 ena start_codon 128342 128344 . + 0 gene_id "W7K_02060"; transcript_id "KOF00983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 128612 128614 . + 0 gene_id "W7K_02060"; transcript_id "KOF00983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 128772 129458 . + . gene_id "W7K_02065"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 128772 129458 . + . gene_id "W7K_02065"; transcript_id "KOF00984"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 128772 129458 . + . gene_id "W7K_02065"; transcript_id "KOF00984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00984-1"; +contig44 ena CDS 128772 129455 . + 0 gene_id "W7K_02065"; transcript_id "KOF00984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00984"; +contig44 ena start_codon 128772 128774 . + 0 gene_id "W7K_02065"; transcript_id "KOF00984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 129456 129458 . + 0 gene_id "W7K_02065"; transcript_id "KOF00984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 129482 130210 . - . gene_id "W7K_02070"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 129482 130210 . - . gene_id "W7K_02070"; transcript_id "KOF00985"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 129482 130210 . - . gene_id "W7K_02070"; transcript_id "KOF00985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00985-1"; +contig44 ena CDS 129485 130210 . - 0 gene_id "W7K_02070"; transcript_id "KOF00985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00985"; +contig44 ena start_codon 130208 130210 . - 0 gene_id "W7K_02070"; transcript_id "KOF00985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 129482 129484 . - 0 gene_id "W7K_02070"; transcript_id "KOF00985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 130228 130557 . + . gene_id "W7K_02075"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 130228 130557 . + . gene_id "W7K_02075"; transcript_id "KOF00986"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 130228 130557 . + . gene_id "W7K_02075"; transcript_id "KOF00986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00986-1"; +contig44 ena CDS 130228 130554 . + 0 gene_id "W7K_02075"; transcript_id "KOF00986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00986"; +contig44 ena start_codon 130228 130230 . + 0 gene_id "W7K_02075"; transcript_id "KOF00986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 130555 130557 . + 0 gene_id "W7K_02075"; transcript_id "KOF00986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 131015 131518 . + . gene_id "W7K_02080"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 131015 131518 . + . gene_id "W7K_02080"; transcript_id "KOF01031"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 131015 131518 . + . gene_id "W7K_02080"; transcript_id "KOF01031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01031-1"; +contig44 ena CDS 131015 131515 . + 0 gene_id "W7K_02080"; transcript_id "KOF01031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01031"; +contig44 ena start_codon 131015 131017 . + 0 gene_id "W7K_02080"; transcript_id "KOF01031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 131516 131518 . + 0 gene_id "W7K_02080"; transcript_id "KOF01031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 131532 132563 . + . gene_id "W7K_02085"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 131532 132563 . + . gene_id "W7K_02085"; transcript_id "KOF00987"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 131532 132563 . + . gene_id "W7K_02085"; transcript_id "KOF00987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00987-1"; +contig44 ena CDS 131532 132560 . + 0 gene_id "W7K_02085"; transcript_id "KOF00987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00987"; +contig44 ena start_codon 131532 131534 . + 0 gene_id "W7K_02085"; transcript_id "KOF00987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 132561 132563 . + 0 gene_id "W7K_02085"; transcript_id "KOF00987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 133078 133428 . + . gene_id "W7K_02090"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 133078 133428 . + . gene_id "W7K_02090"; transcript_id "KOF01032"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 133078 133428 . + . gene_id "W7K_02090"; transcript_id "KOF01032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01032-1"; +contig44 ena CDS 133078 133425 . + 0 gene_id "W7K_02090"; transcript_id "KOF01032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01032"; +contig44 ena start_codon 133078 133080 . + 0 gene_id "W7K_02090"; transcript_id "KOF01032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 133426 133428 . + 0 gene_id "W7K_02090"; transcript_id "KOF01032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 133489 134163 . - . gene_id "W7K_02095"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 133489 134163 . - . gene_id "W7K_02095"; transcript_id "KOF00988"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 133489 134163 . - . gene_id "W7K_02095"; transcript_id "KOF00988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00988-1"; +contig44 ena CDS 133492 134163 . - 0 gene_id "W7K_02095"; transcript_id "KOF00988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00988"; +contig44 ena start_codon 134161 134163 . - 0 gene_id "W7K_02095"; transcript_id "KOF00988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 133489 133491 . - 0 gene_id "W7K_02095"; transcript_id "KOF00988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 134299 134751 . + . gene_id "W7K_02100"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 134299 134751 . + . gene_id "W7K_02100"; transcript_id "KOF00989"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 134299 134751 . + . gene_id "W7K_02100"; transcript_id "KOF00989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00989-1"; +contig44 ena CDS 134299 134748 . + 0 gene_id "W7K_02100"; transcript_id "KOF00989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00989"; +contig44 ena start_codon 134299 134301 . + 0 gene_id "W7K_02100"; transcript_id "KOF00989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 134749 134751 . + 0 gene_id "W7K_02100"; transcript_id "KOF00989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 134894 135919 . - . gene_id "W7K_02105"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 134894 135919 . - . gene_id "W7K_02105"; transcript_id "KOF00990"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 134894 135919 . - . gene_id "W7K_02105"; transcript_id "KOF00990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00990-1"; +contig44 ena CDS 134897 135919 . - 0 gene_id "W7K_02105"; transcript_id "KOF00990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00990"; +contig44 ena start_codon 135917 135919 . - 0 gene_id "W7K_02105"; transcript_id "KOF00990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 134894 134896 . - 0 gene_id "W7K_02105"; transcript_id "KOF00990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 135940 136458 . - . gene_id "W7K_02110"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 135940 136458 . - . gene_id "W7K_02110"; transcript_id "KOF00991"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 135940 136458 . - . gene_id "W7K_02110"; transcript_id "KOF00991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00991-1"; +contig44 ena CDS 135943 136458 . - 0 gene_id "W7K_02110"; transcript_id "KOF00991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00991"; +contig44 ena start_codon 136456 136458 . - 0 gene_id "W7K_02110"; transcript_id "KOF00991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 135940 135942 . - 0 gene_id "W7K_02110"; transcript_id "KOF00991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 136558 136995 . - . gene_id "W7K_02115"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 136558 136995 . - . gene_id "W7K_02115"; transcript_id "KOF00992"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 136558 136995 . - . gene_id "W7K_02115"; transcript_id "KOF00992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00992-1"; +contig44 ena CDS 136561 136995 . - 0 gene_id "W7K_02115"; transcript_id "KOF00992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00992"; +contig44 ena start_codon 136993 136995 . - 0 gene_id "W7K_02115"; transcript_id "KOF00992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 136558 136560 . - 0 gene_id "W7K_02115"; transcript_id "KOF00992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 137053 137478 . - . gene_id "W7K_02120"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 137053 137478 . - . gene_id "W7K_02120"; transcript_id "KOF00993"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 137053 137478 . - . gene_id "W7K_02120"; transcript_id "KOF00993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00993-1"; +contig44 ena CDS 137056 137478 . - 0 gene_id "W7K_02120"; transcript_id "KOF00993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00993"; +contig44 ena start_codon 137476 137478 . - 0 gene_id "W7K_02120"; transcript_id "KOF00993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 137053 137055 . - 0 gene_id "W7K_02120"; transcript_id "KOF00993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 137511 137978 . - . gene_id "W7K_02125"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 137511 137978 . - . gene_id "W7K_02125"; transcript_id "KOF00994"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 137511 137978 . - . gene_id "W7K_02125"; transcript_id "KOF00994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00994-1"; +contig44 ena CDS 137514 137978 . - 0 gene_id "W7K_02125"; transcript_id "KOF00994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00994"; +contig44 ena start_codon 137976 137978 . - 0 gene_id "W7K_02125"; transcript_id "KOF00994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 137511 137513 . - 0 gene_id "W7K_02125"; transcript_id "KOF00994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 138014 138823 . + . gene_id "W7K_02130"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 138014 138823 . + . gene_id "W7K_02130"; transcript_id "KOF00995"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 138014 138823 . + . gene_id "W7K_02130"; transcript_id "KOF00995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00995-1"; +contig44 ena CDS 138014 138820 . + 0 gene_id "W7K_02130"; transcript_id "KOF00995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00995"; +contig44 ena start_codon 138014 138016 . + 0 gene_id "W7K_02130"; transcript_id "KOF00995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 138821 138823 . + 0 gene_id "W7K_02130"; transcript_id "KOF00995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 138928 139905 . + . gene_id "W7K_02135"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 138928 139905 . + . gene_id "W7K_02135"; transcript_id "KOF00996"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 138928 139905 . + . gene_id "W7K_02135"; transcript_id "KOF00996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00996-1"; +contig44 ena CDS 138928 139902 . + 0 gene_id "W7K_02135"; transcript_id "KOF00996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00996"; +contig44 ena start_codon 138928 138930 . + 0 gene_id "W7K_02135"; transcript_id "KOF00996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 139903 139905 . + 0 gene_id "W7K_02135"; transcript_id "KOF00996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 139912 141207 . + . gene_id "W7K_02140"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 139912 141207 . + . gene_id "W7K_02140"; transcript_id "KOF00997"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 139912 141207 . + . gene_id "W7K_02140"; transcript_id "KOF00997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00997-1"; +contig44 ena CDS 139912 141204 . + 0 gene_id "W7K_02140"; transcript_id "KOF00997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00997"; +contig44 ena start_codon 139912 139914 . + 0 gene_id "W7K_02140"; transcript_id "KOF00997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 141205 141207 . + 0 gene_id "W7K_02140"; transcript_id "KOF00997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 141326 142606 . - . gene_id "W7K_02145"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 141326 142606 . - . gene_id "W7K_02145"; transcript_id "KOF00998"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 141326 142606 . - . gene_id "W7K_02145"; transcript_id "KOF00998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00998-1"; +contig44 ena CDS 141329 142606 . - 0 gene_id "W7K_02145"; transcript_id "KOF00998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00998"; +contig44 ena start_codon 142604 142606 . - 0 gene_id "W7K_02145"; transcript_id "KOF00998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 141326 141328 . - 0 gene_id "W7K_02145"; transcript_id "KOF00998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 142715 143602 . + . gene_id "W7K_02150"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 142715 143602 . + . gene_id "W7K_02150"; transcript_id "KOF00999"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 142715 143602 . + . gene_id "W7K_02150"; transcript_id "KOF00999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00999-1"; +contig44 ena CDS 142715 143599 . + 0 gene_id "W7K_02150"; transcript_id "KOF00999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00999"; +contig44 ena start_codon 142715 142717 . + 0 gene_id "W7K_02150"; transcript_id "KOF00999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 143600 143602 . + 0 gene_id "W7K_02150"; transcript_id "KOF00999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 143717 144343 . - . gene_id "W7K_02155"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 143717 144343 . - . gene_id "W7K_02155"; transcript_id "KOF01000"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 143717 144343 . - . gene_id "W7K_02155"; transcript_id "KOF01000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01000-1"; +contig44 ena CDS 143720 144343 . - 0 gene_id "W7K_02155"; transcript_id "KOF01000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01000"; +contig44 ena start_codon 144341 144343 . - 0 gene_id "W7K_02155"; transcript_id "KOF01000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 143717 143719 . - 0 gene_id "W7K_02155"; transcript_id "KOF01000"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 144375 144944 . - . gene_id "W7K_02160"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 144375 144944 . - . gene_id "W7K_02160"; transcript_id "KOF01001"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 144375 144944 . - . gene_id "W7K_02160"; transcript_id "KOF01001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01001-1"; +contig44 ena CDS 144378 144944 . - 0 gene_id "W7K_02160"; transcript_id "KOF01001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01001"; +contig44 ena start_codon 144942 144944 . - 0 gene_id "W7K_02160"; transcript_id "KOF01001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 144375 144377 . - 0 gene_id "W7K_02160"; transcript_id "KOF01001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 145038 146486 . - . gene_id "W7K_02165"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 145038 146486 . - . gene_id "W7K_02165"; transcript_id "KOF01002"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 145038 146486 . - . gene_id "W7K_02165"; transcript_id "KOF01002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01002-1"; +contig44 ena CDS 145041 146486 . - 0 gene_id "W7K_02165"; transcript_id "KOF01002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01002"; +contig44 ena start_codon 146484 146486 . - 0 gene_id "W7K_02165"; transcript_id "KOF01002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 145038 145040 . - 0 gene_id "W7K_02165"; transcript_id "KOF01002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 146479 147540 . - . gene_id "W7K_02170"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 146479 147540 . - . gene_id "W7K_02170"; transcript_id "KOF01033"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 146479 147540 . - . gene_id "W7K_02170"; transcript_id "KOF01033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01033-1"; +contig44 ena CDS 146482 147540 . - 0 gene_id "W7K_02170"; transcript_id "KOF01033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01033"; +contig44 ena start_codon 147538 147540 . - 0 gene_id "W7K_02170"; transcript_id "KOF01033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 146479 146481 . - 0 gene_id "W7K_02170"; transcript_id "KOF01033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 147655 149700 . - . gene_id "W7K_02175"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 147655 149700 . - . gene_id "W7K_02175"; transcript_id "KOF01003"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 147655 149700 . - . gene_id "W7K_02175"; transcript_id "KOF01003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01003-1"; +contig44 ena CDS 147658 149700 . - 0 gene_id "W7K_02175"; transcript_id "KOF01003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01003"; +contig44 ena start_codon 149698 149700 . - 0 gene_id "W7K_02175"; transcript_id "KOF01003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 147655 147657 . - 0 gene_id "W7K_02175"; transcript_id "KOF01003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 149838 150152 . - . gene_id "W7K_02180"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 149838 150152 . - . gene_id "W7K_02180"; transcript_id "KOF01004"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 149838 150152 . - . gene_id "W7K_02180"; transcript_id "KOF01004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01004-1"; +contig44 ena CDS 149841 150152 . - 0 gene_id "W7K_02180"; transcript_id "KOF01004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01004"; +contig44 ena start_codon 150150 150152 . - 0 gene_id "W7K_02180"; transcript_id "KOF01004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 149838 149840 . - 0 gene_id "W7K_02180"; transcript_id "KOF01004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 150237 151412 . - . gene_id "W7K_02185"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 150237 151412 . - . gene_id "W7K_02185"; transcript_id "KOF01034"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 150237 151412 . - . gene_id "W7K_02185"; transcript_id "KOF01034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01034-1"; +contig44 ena CDS 150240 151412 . - 0 gene_id "W7K_02185"; transcript_id "KOF01034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01034"; +contig44 ena start_codon 151410 151412 . - 0 gene_id "W7K_02185"; transcript_id "KOF01034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 150237 150239 . - 0 gene_id "W7K_02185"; transcript_id "KOF01034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 151480 152226 . - . gene_id "W7K_02190"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 151480 152226 . - . gene_id "W7K_02190"; transcript_id "KOF01005"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 151480 152226 . - . gene_id "W7K_02190"; transcript_id "KOF01005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01005-1"; +contig44 ena CDS 151483 152226 . - 0 gene_id "W7K_02190"; transcript_id "KOF01005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01005"; +contig44 ena start_codon 152224 152226 . - 0 gene_id "W7K_02190"; transcript_id "KOF01005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 151480 151482 . - 0 gene_id "W7K_02190"; transcript_id "KOF01005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 152472 153899 . - . gene_id "W7K_02195"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 152472 153899 . - . gene_id "W7K_02195"; transcript_id "KOF01006"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 152472 153899 . - . gene_id "W7K_02195"; transcript_id "KOF01006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01006-1"; +contig44 ena CDS 152475 153899 . - 0 gene_id "W7K_02195"; transcript_id "KOF01006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01006"; +contig44 ena start_codon 153897 153899 . - 0 gene_id "W7K_02195"; transcript_id "KOF01006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 152472 152474 . - 0 gene_id "W7K_02195"; transcript_id "KOF01006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 153921 154259 . - . gene_id "W7K_02200"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 153921 154259 . - . gene_id "W7K_02200"; transcript_id "KOF01035"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 153921 154259 . - . gene_id "W7K_02200"; transcript_id "KOF01035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01035-1"; +contig44 ena CDS 153924 154259 . - 0 gene_id "W7K_02200"; transcript_id "KOF01035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01035"; +contig44 ena start_codon 154257 154259 . - 0 gene_id "W7K_02200"; transcript_id "KOF01035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 153921 153923 . - 0 gene_id "W7K_02200"; transcript_id "KOF01035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 154605 156014 . - . gene_id "W7K_02205"; gene_name "glnA"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 154605 156014 . - . gene_id "W7K_02205"; transcript_id "KOF01007"; gene_name "glnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 154605 156014 . - . gene_id "W7K_02205"; transcript_id "KOF01007"; exon_number "1"; gene_name "glnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01007-1"; +contig44 ena CDS 154608 156014 . - 0 gene_id "W7K_02205"; transcript_id "KOF01007"; exon_number "1"; gene_name "glnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01007"; +contig44 ena start_codon 156012 156014 . - 0 gene_id "W7K_02205"; transcript_id "KOF01007"; exon_number "1"; gene_name "glnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 154605 154607 . - 0 gene_id "W7K_02205"; transcript_id "KOF01007"; exon_number "1"; gene_name "glnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 156239 157033 . + . gene_id "W7K_02210"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 156239 157033 . + . gene_id "W7K_02210"; transcript_id "KOF01008"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 156239 157033 . + . gene_id "W7K_02210"; transcript_id "KOF01008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01008-1"; +contig44 ena CDS 156239 157030 . + 0 gene_id "W7K_02210"; transcript_id "KOF01008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01008"; +contig44 ena start_codon 156239 156241 . + 0 gene_id "W7K_02210"; transcript_id "KOF01008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 157031 157033 . + 0 gene_id "W7K_02210"; transcript_id "KOF01008"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 157107 157934 . + . gene_id "W7K_02215"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 157107 157934 . + . gene_id "W7K_02215"; transcript_id "KOF01009"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 157107 157934 . + . gene_id "W7K_02215"; transcript_id "KOF01009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01009-1"; +contig44 ena CDS 157107 157931 . + 0 gene_id "W7K_02215"; transcript_id "KOF01009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01009"; +contig44 ena start_codon 157107 157109 . + 0 gene_id "W7K_02215"; transcript_id "KOF01009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 157932 157934 . + 0 gene_id "W7K_02215"; transcript_id "KOF01009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 158081 158548 . + . gene_id "W7K_02220"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 158081 158548 . + . gene_id "W7K_02220"; transcript_id "KOF01010"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 158081 158548 . + . gene_id "W7K_02220"; transcript_id "KOF01010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01010-1"; +contig44 ena CDS 158081 158545 . + 0 gene_id "W7K_02220"; transcript_id "KOF01010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01010"; +contig44 ena start_codon 158081 158083 . + 0 gene_id "W7K_02220"; transcript_id "KOF01010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 158546 158548 . + 0 gene_id "W7K_02220"; transcript_id "KOF01010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 158900 159511 . - . gene_id "W7K_02230"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 158900 159511 . - . gene_id "W7K_02230"; transcript_id "KOF01011"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 158900 159511 . - . gene_id "W7K_02230"; transcript_id "KOF01011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01011-1"; +contig44 ena CDS 158903 159511 . - 0 gene_id "W7K_02230"; transcript_id "KOF01011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01011"; +contig44 ena start_codon 159509 159511 . - 0 gene_id "W7K_02230"; transcript_id "KOF01011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 158900 158902 . - 0 gene_id "W7K_02230"; transcript_id "KOF01011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 159522 161591 . - . gene_id "W7K_02235"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 159522 161591 . - . gene_id "W7K_02235"; transcript_id "KOF01012"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 159522 161591 . - . gene_id "W7K_02235"; transcript_id "KOF01012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01012-1"; +contig44 ena CDS 159525 161591 . - 0 gene_id "W7K_02235"; transcript_id "KOF01012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01012"; +contig44 ena start_codon 161589 161591 . - 0 gene_id "W7K_02235"; transcript_id "KOF01012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 159522 159524 . - 0 gene_id "W7K_02235"; transcript_id "KOF01012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 161648 162637 . - . gene_id "W7K_02240"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 161648 162637 . - . gene_id "W7K_02240"; transcript_id "KOF01036"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 161648 162637 . - . gene_id "W7K_02240"; transcript_id "KOF01036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01036-1"; +contig44 ena CDS 161651 162637 . - 0 gene_id "W7K_02240"; transcript_id "KOF01036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01036"; +contig44 ena start_codon 162635 162637 . - 0 gene_id "W7K_02240"; transcript_id "KOF01036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 161648 161650 . - 0 gene_id "W7K_02240"; transcript_id "KOF01036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 162690 163481 . - . gene_id "W7K_02245"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 162690 163481 . - . gene_id "W7K_02245"; transcript_id "KOF01013"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 162690 163481 . - . gene_id "W7K_02245"; transcript_id "KOF01013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01013-1"; +contig44 ena CDS 162693 163481 . - 0 gene_id "W7K_02245"; transcript_id "KOF01013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01013"; +contig44 ena start_codon 163479 163481 . - 0 gene_id "W7K_02245"; transcript_id "KOF01013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 162690 162692 . - 0 gene_id "W7K_02245"; transcript_id "KOF01013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 163602 164036 . - . gene_id "W7K_02250"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 163602 164036 . - . gene_id "W7K_02250"; transcript_id "KOF01014"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 163602 164036 . - . gene_id "W7K_02250"; transcript_id "KOF01014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01014-1"; +contig44 ena CDS 163605 164036 . - 0 gene_id "W7K_02250"; transcript_id "KOF01014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01014"; +contig44 ena start_codon 164034 164036 . - 0 gene_id "W7K_02250"; transcript_id "KOF01014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 163602 163604 . - 0 gene_id "W7K_02250"; transcript_id "KOF01014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 164047 166098 . - . gene_id "W7K_02255"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 164047 166098 . - . gene_id "W7K_02255"; transcript_id "KOF01015"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 164047 166098 . - . gene_id "W7K_02255"; transcript_id "KOF01015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01015-1"; +contig44 ena CDS 164050 166098 . - 0 gene_id "W7K_02255"; transcript_id "KOF01015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01015"; +contig44 ena start_codon 166096 166098 . - 0 gene_id "W7K_02255"; transcript_id "KOF01015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 164047 164049 . - 0 gene_id "W7K_02255"; transcript_id "KOF01015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 166095 166712 . - . gene_id "W7K_02260"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 166095 166712 . - . gene_id "W7K_02260"; transcript_id "KOF01016"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 166095 166712 . - . gene_id "W7K_02260"; transcript_id "KOF01016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01016-1"; +contig44 ena CDS 166098 166712 . - 0 gene_id "W7K_02260"; transcript_id "KOF01016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01016"; +contig44 ena start_codon 166710 166712 . - 0 gene_id "W7K_02260"; transcript_id "KOF01016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 166095 166097 . - 0 gene_id "W7K_02260"; transcript_id "KOF01016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 166717 167193 . - . gene_id "W7K_02265"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 166717 167193 . - . gene_id "W7K_02265"; transcript_id "KOF01017"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 166717 167193 . - . gene_id "W7K_02265"; transcript_id "KOF01017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01017-1"; +contig44 ena CDS 166720 167193 . - 0 gene_id "W7K_02265"; transcript_id "KOF01017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01017"; +contig44 ena start_codon 167191 167193 . - 0 gene_id "W7K_02265"; transcript_id "KOF01017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 166717 166719 . - 0 gene_id "W7K_02265"; transcript_id "KOF01017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 167243 167872 . - . gene_id "W7K_02270"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 167243 167872 . - . gene_id "W7K_02270"; transcript_id "KOF01018"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 167243 167872 . - . gene_id "W7K_02270"; transcript_id "KOF01018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01018-1"; +contig44 ena CDS 167246 167872 . - 0 gene_id "W7K_02270"; transcript_id "KOF01018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01018"; +contig44 ena start_codon 167870 167872 . - 0 gene_id "W7K_02270"; transcript_id "KOF01018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 167243 167245 . - 0 gene_id "W7K_02270"; transcript_id "KOF01018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 167996 169480 . + . gene_id "W7K_02275"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 167996 169480 . + . gene_id "W7K_02275"; transcript_id "KOF01019"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 167996 169480 . + . gene_id "W7K_02275"; transcript_id "KOF01019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01019-1"; +contig44 ena CDS 167996 169477 . + 0 gene_id "W7K_02275"; transcript_id "KOF01019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01019"; +contig44 ena start_codon 167996 167998 . + 0 gene_id "W7K_02275"; transcript_id "KOF01019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 169478 169480 . + 0 gene_id "W7K_02275"; transcript_id "KOF01019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 170069 170704 . - . gene_id "W7K_02280"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 170069 170704 . - . gene_id "W7K_02280"; transcript_id "KOF01020"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 170069 170704 . - . gene_id "W7K_02280"; transcript_id "KOF01020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01020-1"; +contig44 ena CDS 170072 170704 . - 0 gene_id "W7K_02280"; transcript_id "KOF01020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01020"; +contig44 ena start_codon 170702 170704 . - 0 gene_id "W7K_02280"; transcript_id "KOF01020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 170069 170071 . - 0 gene_id "W7K_02280"; transcript_id "KOF01020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 170874 174560 . + . gene_id "W7K_02285"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 170874 174560 . + . gene_id "W7K_02285"; transcript_id "KOF01021"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 170874 174560 . + . gene_id "W7K_02285"; transcript_id "KOF01021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01021-1"; +contig44 ena CDS 170874 174557 . + 0 gene_id "W7K_02285"; transcript_id "KOF01021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01021"; +contig44 ena start_codon 170874 170876 . + 0 gene_id "W7K_02285"; transcript_id "KOF01021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 174558 174560 . + 0 gene_id "W7K_02285"; transcript_id "KOF01021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 174722 174979 . + . gene_id "W7K_02290"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 174722 174979 . + . gene_id "W7K_02290"; transcript_id "KOF01022"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 174722 174979 . + . gene_id "W7K_02290"; transcript_id "KOF01022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01022-1"; +contig44 ena CDS 174722 174976 . + 0 gene_id "W7K_02290"; transcript_id "KOF01022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01022"; +contig44 ena start_codon 174722 174724 . + 0 gene_id "W7K_02290"; transcript_id "KOF01022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 174977 174979 . + 0 gene_id "W7K_02290"; transcript_id "KOF01022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena gene 175959 176573 . - . gene_id "W7K_02300"; gene_source "ena"; gene_biotype "protein_coding"; +contig44 ena transcript 175959 176573 . - . gene_id "W7K_02300"; transcript_id "KOF01023"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena exon 175959 176573 . - . gene_id "W7K_02300"; transcript_id "KOF01023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01023-1"; +contig44 ena CDS 175962 176573 . - 0 gene_id "W7K_02300"; transcript_id "KOF01023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01023"; +contig44 ena start_codon 176571 176573 . - 0 gene_id "W7K_02300"; transcript_id "KOF01023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig44 ena stop_codon 175959 175961 . - 0 gene_id "W7K_02300"; transcript_id "KOF01023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 446 2077 . + . gene_id "W7K_00795"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 446 2077 . + . gene_id "W7K_00795"; transcript_id "KOF01037"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 446 2077 . + . gene_id "W7K_00795"; transcript_id "KOF01037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01037-1"; +contig45 ena CDS 446 2074 . + 0 gene_id "W7K_00795"; transcript_id "KOF01037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01037"; +contig45 ena start_codon 446 448 . + 0 gene_id "W7K_00795"; transcript_id "KOF01037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 2075 2077 . + 0 gene_id "W7K_00795"; transcript_id "KOF01037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 2108 3742 . + . gene_id "W7K_00800"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 2108 3742 . + . gene_id "W7K_00800"; transcript_id "KOF01038"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 2108 3742 . + . gene_id "W7K_00800"; transcript_id "KOF01038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01038-1"; +contig45 ena CDS 2108 3739 . + 0 gene_id "W7K_00800"; transcript_id "KOF01038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01038"; +contig45 ena start_codon 2108 2110 . + 0 gene_id "W7K_00800"; transcript_id "KOF01038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 3740 3742 . + 0 gene_id "W7K_00800"; transcript_id "KOF01038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 3764 5098 . + . gene_id "W7K_00805"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 3764 5098 . + . gene_id "W7K_00805"; transcript_id "KOF01039"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 3764 5098 . + . gene_id "W7K_00805"; transcript_id "KOF01039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01039-1"; +contig45 ena CDS 3764 5095 . + 0 gene_id "W7K_00805"; transcript_id "KOF01039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01039"; +contig45 ena start_codon 3764 3766 . + 0 gene_id "W7K_00805"; transcript_id "KOF01039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 5096 5098 . + 0 gene_id "W7K_00805"; transcript_id "KOF01039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 5098 5805 . + . gene_id "W7K_00810"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 5098 5805 . + . gene_id "W7K_00810"; transcript_id "KOF01040"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 5098 5805 . + . gene_id "W7K_00810"; transcript_id "KOF01040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01040-1"; +contig45 ena CDS 5098 5802 . + 0 gene_id "W7K_00810"; transcript_id "KOF01040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01040"; +contig45 ena start_codon 5098 5100 . + 0 gene_id "W7K_00810"; transcript_id "KOF01040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 5803 5805 . + 0 gene_id "W7K_00810"; transcript_id "KOF01040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 5822 6805 . + . gene_id "W7K_00815"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 5822 6805 . + . gene_id "W7K_00815"; transcript_id "KOF01041"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 5822 6805 . + . gene_id "W7K_00815"; transcript_id "KOF01041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01041-1"; +contig45 ena CDS 5822 6802 . + 0 gene_id "W7K_00815"; transcript_id "KOF01041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01041"; +contig45 ena start_codon 5822 5824 . + 0 gene_id "W7K_00815"; transcript_id "KOF01041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 6803 6805 . + 0 gene_id "W7K_00815"; transcript_id "KOF01041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 6813 7709 . + . gene_id "W7K_00820"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 6813 7709 . + . gene_id "W7K_00820"; transcript_id "KOF01042"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 6813 7709 . + . gene_id "W7K_00820"; transcript_id "KOF01042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01042-1"; +contig45 ena CDS 6813 7706 . + 0 gene_id "W7K_00820"; transcript_id "KOF01042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01042"; +contig45 ena start_codon 6813 6815 . + 0 gene_id "W7K_00820"; transcript_id "KOF01042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 7707 7709 . + 0 gene_id "W7K_00820"; transcript_id "KOF01042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 7706 8827 . + . gene_id "W7K_00825"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 7706 8827 . + . gene_id "W7K_00825"; transcript_id "KOF01043"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 7706 8827 . + . gene_id "W7K_00825"; transcript_id "KOF01043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01043-1"; +contig45 ena CDS 7706 8824 . + 0 gene_id "W7K_00825"; transcript_id "KOF01043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01043"; +contig45 ena start_codon 7706 7708 . + 0 gene_id "W7K_00825"; transcript_id "KOF01043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 8825 8827 . + 0 gene_id "W7K_00825"; transcript_id "KOF01043"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 8824 11016 . + . gene_id "W7K_00830"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 8824 11016 . + . gene_id "W7K_00830"; transcript_id "KOF01159"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 8824 11016 . + . gene_id "W7K_00830"; transcript_id "KOF01159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01159-1"; +contig45 ena CDS 8824 11013 . + 0 gene_id "W7K_00830"; transcript_id "KOF01159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01159"; +contig45 ena start_codon 8824 8826 . + 0 gene_id "W7K_00830"; transcript_id "KOF01159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 11014 11016 . + 0 gene_id "W7K_00830"; transcript_id "KOF01159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 11013 12821 . + . gene_id "W7K_00835"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 11013 12821 . + . gene_id "W7K_00835"; transcript_id "KOF01044"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 11013 12821 . + . gene_id "W7K_00835"; transcript_id "KOF01044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01044-1"; +contig45 ena CDS 11013 12818 . + 0 gene_id "W7K_00835"; transcript_id "KOF01044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01044"; +contig45 ena start_codon 11013 11015 . + 0 gene_id "W7K_00835"; transcript_id "KOF01044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 12819 12821 . + 0 gene_id "W7K_00835"; transcript_id "KOF01044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 12932 13606 . - . gene_id "W7K_00840"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 12932 13606 . - . gene_id "W7K_00840"; transcript_id "KOF01045"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 12932 13606 . - . gene_id "W7K_00840"; transcript_id "KOF01045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01045-1"; +contig45 ena CDS 12935 13606 . - 0 gene_id "W7K_00840"; transcript_id "KOF01045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01045"; +contig45 ena start_codon 13604 13606 . - 0 gene_id "W7K_00840"; transcript_id "KOF01045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 12932 12934 . - 0 gene_id "W7K_00840"; transcript_id "KOF01045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 13646 14164 . - . gene_id "W7K_00845"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 13646 14164 . - . gene_id "W7K_00845"; transcript_id "KOF01046"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 13646 14164 . - . gene_id "W7K_00845"; transcript_id "KOF01046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01046-1"; +contig45 ena CDS 13649 14164 . - 0 gene_id "W7K_00845"; transcript_id "KOF01046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01046"; +contig45 ena start_codon 14162 14164 . - 0 gene_id "W7K_00845"; transcript_id "KOF01046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 13646 13648 . - 0 gene_id "W7K_00845"; transcript_id "KOF01046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 14405 15508 . + . gene_id "W7K_00850"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 14405 15508 . + . gene_id "W7K_00850"; transcript_id "KOF01047"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 14405 15508 . + . gene_id "W7K_00850"; transcript_id "KOF01047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01047-1"; +contig45 ena CDS 14405 15505 . + 0 gene_id "W7K_00850"; transcript_id "KOF01047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01047"; +contig45 ena start_codon 14405 14407 . + 0 gene_id "W7K_00850"; transcript_id "KOF01047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 15506 15508 . + 0 gene_id "W7K_00850"; transcript_id "KOF01047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 15602 18091 . + . gene_id "W7K_00855"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 15602 18091 . + . gene_id "W7K_00855"; transcript_id "KOF01048"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 15602 18091 . + . gene_id "W7K_00855"; transcript_id "KOF01048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01048-1"; +contig45 ena CDS 15602 18088 . + 0 gene_id "W7K_00855"; transcript_id "KOF01048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01048"; +contig45 ena start_codon 15602 15604 . + 0 gene_id "W7K_00855"; transcript_id "KOF01048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 18089 18091 . + 0 gene_id "W7K_00855"; transcript_id "KOF01048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 18088 19110 . + . gene_id "W7K_00860"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 18088 19110 . + . gene_id "W7K_00860"; transcript_id "KOF01049"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 18088 19110 . + . gene_id "W7K_00860"; transcript_id "KOF01049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01049-1"; +contig45 ena CDS 18088 19107 . + 0 gene_id "W7K_00860"; transcript_id "KOF01049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01049"; +contig45 ena start_codon 18088 18090 . + 0 gene_id "W7K_00860"; transcript_id "KOF01049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 19108 19110 . + 0 gene_id "W7K_00860"; transcript_id "KOF01049"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 19189 19503 . + . gene_id "W7K_00865"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 19189 19503 . + . gene_id "W7K_00865"; transcript_id "KOF01050"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 19189 19503 . + . gene_id "W7K_00865"; transcript_id "KOF01050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01050-1"; +contig45 ena CDS 19189 19500 . + 0 gene_id "W7K_00865"; transcript_id "KOF01050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01050"; +contig45 ena start_codon 19189 19191 . + 0 gene_id "W7K_00865"; transcript_id "KOF01050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 19501 19503 . + 0 gene_id "W7K_00865"; transcript_id "KOF01050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 19543 21534 . - . gene_id "W7K_00870"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 19543 21534 . - . gene_id "W7K_00870"; transcript_id "KOF01051"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 19543 21534 . - . gene_id "W7K_00870"; transcript_id "KOF01051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01051-1"; +contig45 ena CDS 19546 21534 . - 0 gene_id "W7K_00870"; transcript_id "KOF01051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01051"; +contig45 ena start_codon 21532 21534 . - 0 gene_id "W7K_00870"; transcript_id "KOF01051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 19543 19545 . - 0 gene_id "W7K_00870"; transcript_id "KOF01051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 21538 21924 . - . gene_id "W7K_00875"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 21538 21924 . - . gene_id "W7K_00875"; transcript_id "KOF01052"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 21538 21924 . - . gene_id "W7K_00875"; transcript_id "KOF01052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01052-1"; +contig45 ena CDS 21541 21924 . - 0 gene_id "W7K_00875"; transcript_id "KOF01052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01052"; +contig45 ena start_codon 21922 21924 . - 0 gene_id "W7K_00875"; transcript_id "KOF01052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 21538 21540 . - 0 gene_id "W7K_00875"; transcript_id "KOF01052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 22117 23229 . + . gene_id "W7K_00880"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 22117 23229 . + . gene_id "W7K_00880"; transcript_id "KOF01160"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 22117 23229 . + . gene_id "W7K_00880"; transcript_id "KOF01160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01160-1"; +contig45 ena CDS 22117 23226 . + 0 gene_id "W7K_00880"; transcript_id "KOF01160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01160"; +contig45 ena start_codon 22117 22119 . + 0 gene_id "W7K_00880"; transcript_id "KOF01160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 23227 23229 . + 0 gene_id "W7K_00880"; transcript_id "KOF01160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 23186 24292 . - . gene_id "W7K_00885"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 23186 24292 . - . gene_id "W7K_00885"; transcript_id "KOF01053"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 23186 24292 . - . gene_id "W7K_00885"; transcript_id "KOF01053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01053-1"; +contig45 ena CDS 23189 24292 . - 0 gene_id "W7K_00885"; transcript_id "KOF01053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01053"; +contig45 ena start_codon 24290 24292 . - 0 gene_id "W7K_00885"; transcript_id "KOF01053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 23186 23188 . - 0 gene_id "W7K_00885"; transcript_id "KOF01053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 24488 24796 . + . gene_id "W7K_00890"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 24488 24796 . + . gene_id "W7K_00890"; transcript_id "KOF01054"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 24488 24796 . + . gene_id "W7K_00890"; transcript_id "KOF01054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01054-1"; +contig45 ena CDS 24488 24793 . + 0 gene_id "W7K_00890"; transcript_id "KOF01054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01054"; +contig45 ena start_codon 24488 24490 . + 0 gene_id "W7K_00890"; transcript_id "KOF01054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 24794 24796 . + 0 gene_id "W7K_00890"; transcript_id "KOF01054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 24774 25829 . - . gene_id "W7K_00895"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 24774 25829 . - . gene_id "W7K_00895"; transcript_id "KOF01055"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 24774 25829 . - . gene_id "W7K_00895"; transcript_id "KOF01055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01055-1"; +contig45 ena CDS 24777 25829 . - 0 gene_id "W7K_00895"; transcript_id "KOF01055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01055"; +contig45 ena start_codon 25827 25829 . - 0 gene_id "W7K_00895"; transcript_id "KOF01055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 24774 24776 . - 0 gene_id "W7K_00895"; transcript_id "KOF01055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 25941 26330 . + . gene_id "W7K_00900"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 25941 26330 . + . gene_id "W7K_00900"; transcript_id "KOF01161"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 25941 26330 . + . gene_id "W7K_00900"; transcript_id "KOF01161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01161-1"; +contig45 ena CDS 25941 26327 . + 0 gene_id "W7K_00900"; transcript_id "KOF01161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01161"; +contig45 ena start_codon 25941 25943 . + 0 gene_id "W7K_00900"; transcript_id "KOF01161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 26328 26330 . + 0 gene_id "W7K_00900"; transcript_id "KOF01161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 26505 30959 . + . gene_id "W7K_00905"; gene_name "gltB"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 26505 30959 . + . gene_id "W7K_00905"; transcript_id "KOF01056"; gene_name "gltB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 26505 30959 . + . gene_id "W7K_00905"; transcript_id "KOF01056"; exon_number "1"; gene_name "gltB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01056-1"; +contig45 ena CDS 26505 30956 . + 0 gene_id "W7K_00905"; transcript_id "KOF01056"; exon_number "1"; gene_name "gltB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01056"; +contig45 ena start_codon 26505 26507 . + 0 gene_id "W7K_00905"; transcript_id "KOF01056"; exon_number "1"; gene_name "gltB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 30957 30959 . + 0 gene_id "W7K_00905"; transcript_id "KOF01056"; exon_number "1"; gene_name "gltB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 31021 32466 . + . gene_id "W7K_00910"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 31021 32466 . + . gene_id "W7K_00910"; transcript_id "KOF01057"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 31021 32466 . + . gene_id "W7K_00910"; transcript_id "KOF01057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01057-1"; +contig45 ena CDS 31021 32463 . + 0 gene_id "W7K_00910"; transcript_id "KOF01057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01057"; +contig45 ena start_codon 31021 31023 . + 0 gene_id "W7K_00910"; transcript_id "KOF01057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 32464 32466 . + 0 gene_id "W7K_00910"; transcript_id "KOF01057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 32452 34860 . - . gene_id "W7K_00915"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 32452 34860 . - . gene_id "W7K_00915"; transcript_id "KOF01058"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 32452 34860 . - . gene_id "W7K_00915"; transcript_id "KOF01058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01058-1"; +contig45 ena CDS 32455 34860 . - 0 gene_id "W7K_00915"; transcript_id "KOF01058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01058"; +contig45 ena start_codon 34858 34860 . - 0 gene_id "W7K_00915"; transcript_id "KOF01058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 32452 32454 . - 0 gene_id "W7K_00915"; transcript_id "KOF01058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 35028 35894 . + . gene_id "W7K_00920"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 35028 35894 . + . gene_id "W7K_00920"; transcript_id "KOF01059"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 35028 35894 . + . gene_id "W7K_00920"; transcript_id "KOF01059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01059-1"; +contig45 ena CDS 35028 35891 . + 0 gene_id "W7K_00920"; transcript_id "KOF01059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01059"; +contig45 ena start_codon 35028 35030 . + 0 gene_id "W7K_00920"; transcript_id "KOF01059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 35892 35894 . + 0 gene_id "W7K_00920"; transcript_id "KOF01059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 36179 36958 . - . gene_id "W7K_00925"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 36179 36958 . - . gene_id "W7K_00925"; transcript_id "KOF01060"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 36179 36958 . - . gene_id "W7K_00925"; transcript_id "KOF01060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01060-1"; +contig45 ena CDS 36182 36958 . - 0 gene_id "W7K_00925"; transcript_id "KOF01060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01060"; +contig45 ena start_codon 36956 36958 . - 0 gene_id "W7K_00925"; transcript_id "KOF01060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 36179 36181 . - 0 gene_id "W7K_00925"; transcript_id "KOF01060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 37018 37923 . - . gene_id "W7K_00930"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 37018 37923 . - . gene_id "W7K_00930"; transcript_id "KOF01061"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 37018 37923 . - . gene_id "W7K_00930"; transcript_id "KOF01061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01061-1"; +contig45 ena CDS 37021 37923 . - 0 gene_id "W7K_00930"; transcript_id "KOF01061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01061"; +contig45 ena start_codon 37921 37923 . - 0 gene_id "W7K_00930"; transcript_id "KOF01061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 37018 37020 . - 0 gene_id "W7K_00930"; transcript_id "KOF01061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 37960 38901 . - . gene_id "W7K_00935"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 37960 38901 . - . gene_id "W7K_00935"; transcript_id "KOF01062"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 37960 38901 . - . gene_id "W7K_00935"; transcript_id "KOF01062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01062-1"; +contig45 ena CDS 37963 38901 . - 0 gene_id "W7K_00935"; transcript_id "KOF01062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01062"; +contig45 ena start_codon 38899 38901 . - 0 gene_id "W7K_00935"; transcript_id "KOF01062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 37960 37962 . - 0 gene_id "W7K_00935"; transcript_id "KOF01062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 38984 39187 . + . gene_id "W7K_00940"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 38984 39187 . + . gene_id "W7K_00940"; transcript_id "KOF01063"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 38984 39187 . + . gene_id "W7K_00940"; transcript_id "KOF01063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01063-1"; +contig45 ena CDS 38984 39184 . + 0 gene_id "W7K_00940"; transcript_id "KOF01063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01063"; +contig45 ena start_codon 38984 38986 . + 0 gene_id "W7K_00940"; transcript_id "KOF01063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 39185 39187 . + 0 gene_id "W7K_00940"; transcript_id "KOF01063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 39293 41929 . - . gene_id "W7K_00945"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 39293 41929 . - . gene_id "W7K_00945"; transcript_id "KOF01064"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 39293 41929 . - . gene_id "W7K_00945"; transcript_id "KOF01064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01064-1"; +contig45 ena CDS 39296 41929 . - 0 gene_id "W7K_00945"; transcript_id "KOF01064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01064"; +contig45 ena start_codon 41927 41929 . - 0 gene_id "W7K_00945"; transcript_id "KOF01064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 39293 39295 . - 0 gene_id "W7K_00945"; transcript_id "KOF01064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 41929 42882 . - . gene_id "W7K_00950"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 41929 42882 . - . gene_id "W7K_00950"; transcript_id "KOF01065"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 41929 42882 . - . gene_id "W7K_00950"; transcript_id "KOF01065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01065-1"; +contig45 ena CDS 41932 42882 . - 0 gene_id "W7K_00950"; transcript_id "KOF01065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01065"; +contig45 ena start_codon 42880 42882 . - 0 gene_id "W7K_00950"; transcript_id "KOF01065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 41929 41931 . - 0 gene_id "W7K_00950"; transcript_id "KOF01065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 43307 44032 . - . gene_id "W7K_00955"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 43307 44032 . - . gene_id "W7K_00955"; transcript_id "KOF01066"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 43307 44032 . - . gene_id "W7K_00955"; transcript_id "KOF01066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01066-1"; +contig45 ena CDS 43310 44032 . - 0 gene_id "W7K_00955"; transcript_id "KOF01066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01066"; +contig45 ena start_codon 44030 44032 . - 0 gene_id "W7K_00955"; transcript_id "KOF01066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 43307 43309 . - 0 gene_id "W7K_00955"; transcript_id "KOF01066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 44029 44952 . - . gene_id "W7K_00960"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 44029 44952 . - . gene_id "W7K_00960"; transcript_id "KOF01067"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 44029 44952 . - . gene_id "W7K_00960"; transcript_id "KOF01067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01067-1"; +contig45 ena CDS 44032 44952 . - 0 gene_id "W7K_00960"; transcript_id "KOF01067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01067"; +contig45 ena start_codon 44950 44952 . - 0 gene_id "W7K_00960"; transcript_id "KOF01067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 44029 44031 . - 0 gene_id "W7K_00960"; transcript_id "KOF01067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 45054 45707 . + . gene_id "W7K_00965"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 45054 45707 . + . gene_id "W7K_00965"; transcript_id "KOF01068"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 45054 45707 . + . gene_id "W7K_00965"; transcript_id "KOF01068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01068-1"; +contig45 ena CDS 45054 45704 . + 0 gene_id "W7K_00965"; transcript_id "KOF01068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01068"; +contig45 ena start_codon 45054 45056 . + 0 gene_id "W7K_00965"; transcript_id "KOF01068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 45705 45707 . + 0 gene_id "W7K_00965"; transcript_id "KOF01068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 45786 46310 . - . gene_id "W7K_00970"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 45786 46310 . - . gene_id "W7K_00970"; transcript_id "KOF01069"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 45786 46310 . - . gene_id "W7K_00970"; transcript_id "KOF01069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01069-1"; +contig45 ena CDS 45789 46310 . - 0 gene_id "W7K_00970"; transcript_id "KOF01069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01069"; +contig45 ena start_codon 46308 46310 . - 0 gene_id "W7K_00970"; transcript_id "KOF01069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 45786 45788 . - 0 gene_id "W7K_00970"; transcript_id "KOF01069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 46571 48547 . - . gene_id "W7K_00975"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 46571 48547 . - . gene_id "W7K_00975"; transcript_id "KOF01070"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 46571 48547 . - . gene_id "W7K_00975"; transcript_id "KOF01070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01070-1"; +contig45 ena CDS 46574 48547 . - 0 gene_id "W7K_00975"; transcript_id "KOF01070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01070"; +contig45 ena start_codon 48545 48547 . - 0 gene_id "W7K_00975"; transcript_id "KOF01070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 46571 46573 . - 0 gene_id "W7K_00975"; transcript_id "KOF01070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 48649 49269 . + . gene_id "W7K_00980"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 48649 49269 . + . gene_id "W7K_00980"; transcript_id "KOF01071"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 48649 49269 . + . gene_id "W7K_00980"; transcript_id "KOF01071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01071-1"; +contig45 ena CDS 48649 49266 . + 0 gene_id "W7K_00980"; transcript_id "KOF01071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01071"; +contig45 ena start_codon 48649 48651 . + 0 gene_id "W7K_00980"; transcript_id "KOF01071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 49267 49269 . + 0 gene_id "W7K_00980"; transcript_id "KOF01071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 49365 50072 . + . gene_id "W7K_00985"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 49365 50072 . + . gene_id "W7K_00985"; transcript_id "KOF01072"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 49365 50072 . + . gene_id "W7K_00985"; transcript_id "KOF01072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01072-1"; +contig45 ena CDS 49365 50069 . + 0 gene_id "W7K_00985"; transcript_id "KOF01072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01072"; +contig45 ena start_codon 49365 49367 . + 0 gene_id "W7K_00985"; transcript_id "KOF01072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 50070 50072 . + 0 gene_id "W7K_00985"; transcript_id "KOF01072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 50115 51719 . - . gene_id "W7K_00990"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 50115 51719 . - . gene_id "W7K_00990"; transcript_id "KOF01073"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 50115 51719 . - . gene_id "W7K_00990"; transcript_id "KOF01073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01073-1"; +contig45 ena CDS 50118 51719 . - 0 gene_id "W7K_00990"; transcript_id "KOF01073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01073"; +contig45 ena start_codon 51717 51719 . - 0 gene_id "W7K_00990"; transcript_id "KOF01073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 50115 50117 . - 0 gene_id "W7K_00990"; transcript_id "KOF01073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 51825 52637 . - . gene_id "W7K_00995"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 51825 52637 . - . gene_id "W7K_00995"; transcript_id "KOF01074"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 51825 52637 . - . gene_id "W7K_00995"; transcript_id "KOF01074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01074-1"; +contig45 ena CDS 51828 52637 . - 0 gene_id "W7K_00995"; transcript_id "KOF01074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01074"; +contig45 ena start_codon 52635 52637 . - 0 gene_id "W7K_00995"; transcript_id "KOF01074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 51825 51827 . - 0 gene_id "W7K_00995"; transcript_id "KOF01074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 52657 52989 . - . gene_id "W7K_01000"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 52657 52989 . - . gene_id "W7K_01000"; transcript_id "KOF01075"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 52657 52989 . - . gene_id "W7K_01000"; transcript_id "KOF01075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01075-1"; +contig45 ena CDS 52660 52989 . - 0 gene_id "W7K_01000"; transcript_id "KOF01075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01075"; +contig45 ena start_codon 52987 52989 . - 0 gene_id "W7K_01000"; transcript_id "KOF01075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 52657 52659 . - 0 gene_id "W7K_01000"; transcript_id "KOF01075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 52986 54188 . - . gene_id "W7K_01005"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 52986 54188 . - . gene_id "W7K_01005"; transcript_id "KOF01076"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 52986 54188 . - . gene_id "W7K_01005"; transcript_id "KOF01076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01076-1"; +contig45 ena CDS 52989 54188 . - 0 gene_id "W7K_01005"; transcript_id "KOF01076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01076"; +contig45 ena start_codon 54186 54188 . - 0 gene_id "W7K_01005"; transcript_id "KOF01076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 52986 52988 . - 0 gene_id "W7K_01005"; transcript_id "KOF01076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 54340 55161 . + . gene_id "W7K_01010"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 54340 55161 . + . gene_id "W7K_01010"; transcript_id "KOF01077"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 54340 55161 . + . gene_id "W7K_01010"; transcript_id "KOF01077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01077-1"; +contig45 ena CDS 54340 55158 . + 0 gene_id "W7K_01010"; transcript_id "KOF01077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01077"; +contig45 ena start_codon 54340 54342 . + 0 gene_id "W7K_01010"; transcript_id "KOF01077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 55159 55161 . + 0 gene_id "W7K_01010"; transcript_id "KOF01077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 55290 56492 . - . gene_id "W7K_01015"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 55290 56492 . - . gene_id "W7K_01015"; transcript_id "KOF01078"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 55290 56492 . - . gene_id "W7K_01015"; transcript_id "KOF01078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01078-1"; +contig45 ena CDS 55293 56492 . - 0 gene_id "W7K_01015"; transcript_id "KOF01078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01078"; +contig45 ena start_codon 56490 56492 . - 0 gene_id "W7K_01015"; transcript_id "KOF01078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 55290 55292 . - 0 gene_id "W7K_01015"; transcript_id "KOF01078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 56504 57382 . - . gene_id "W7K_01020"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 56504 57382 . - . gene_id "W7K_01020"; transcript_id "KOF01079"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 56504 57382 . - . gene_id "W7K_01020"; transcript_id "KOF01079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01079-1"; +contig45 ena CDS 56507 57382 . - 0 gene_id "W7K_01020"; transcript_id "KOF01079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01079"; +contig45 ena start_codon 57380 57382 . - 0 gene_id "W7K_01020"; transcript_id "KOF01079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 56504 56506 . - 0 gene_id "W7K_01020"; transcript_id "KOF01079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 57646 58485 . + . gene_id "W7K_01025"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 57646 58485 . + . gene_id "W7K_01025"; transcript_id "KOF01080"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 57646 58485 . + . gene_id "W7K_01025"; transcript_id "KOF01080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01080-1"; +contig45 ena CDS 57646 58482 . + 0 gene_id "W7K_01025"; transcript_id "KOF01080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01080"; +contig45 ena start_codon 57646 57648 . + 0 gene_id "W7K_01025"; transcript_id "KOF01080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 58483 58485 . + 0 gene_id "W7K_01025"; transcript_id "KOF01080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 58613 60880 . - . gene_id "W7K_01030"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 58613 60880 . - . gene_id "W7K_01030"; transcript_id "KOF01081"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 58613 60880 . - . gene_id "W7K_01030"; transcript_id "KOF01081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01081-1"; +contig45 ena CDS 58616 60880 . - 0 gene_id "W7K_01030"; transcript_id "KOF01081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01081"; +contig45 ena start_codon 60878 60880 . - 0 gene_id "W7K_01030"; transcript_id "KOF01081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 58613 58615 . - 0 gene_id "W7K_01030"; transcript_id "KOF01081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 61039 62055 . + . gene_id "W7K_01035"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 61039 62055 . + . gene_id "W7K_01035"; transcript_id "KOF01082"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 61039 62055 . + . gene_id "W7K_01035"; transcript_id "KOF01082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01082-1"; +contig45 ena CDS 61039 62052 . + 0 gene_id "W7K_01035"; transcript_id "KOF01082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01082"; +contig45 ena start_codon 61039 61041 . + 0 gene_id "W7K_01035"; transcript_id "KOF01082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 62053 62055 . + 0 gene_id "W7K_01035"; transcript_id "KOF01082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 62196 63188 . + . gene_id "W7K_01040"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 62196 63188 . + . gene_id "W7K_01040"; transcript_id "KOF01162"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 62196 63188 . + . gene_id "W7K_01040"; transcript_id "KOF01162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01162-1"; +contig45 ena CDS 62196 63185 . + 0 gene_id "W7K_01040"; transcript_id "KOF01162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01162"; +contig45 ena start_codon 62196 62198 . + 0 gene_id "W7K_01040"; transcript_id "KOF01162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 63186 63188 . + 0 gene_id "W7K_01040"; transcript_id "KOF01162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 63230 65230 . - . gene_id "W7K_01045"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 63230 65230 . - . gene_id "W7K_01045"; transcript_id "KOF01083"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 63230 65230 . - . gene_id "W7K_01045"; transcript_id "KOF01083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01083-1"; +contig45 ena CDS 63233 65230 . - 0 gene_id "W7K_01045"; transcript_id "KOF01083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01083"; +contig45 ena start_codon 65228 65230 . - 0 gene_id "W7K_01045"; transcript_id "KOF01083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 63230 63232 . - 0 gene_id "W7K_01045"; transcript_id "KOF01083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 65316 65798 . - . gene_id "W7K_01050"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 65316 65798 . - . gene_id "W7K_01050"; transcript_id "KOF01084"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 65316 65798 . - . gene_id "W7K_01050"; transcript_id "KOF01084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01084-1"; +contig45 ena CDS 65319 65798 . - 0 gene_id "W7K_01050"; transcript_id "KOF01084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01084"; +contig45 ena start_codon 65796 65798 . - 0 gene_id "W7K_01050"; transcript_id "KOF01084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 65316 65318 . - 0 gene_id "W7K_01050"; transcript_id "KOF01084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 65924 66817 . + . gene_id "W7K_01055"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 65924 66817 . + . gene_id "W7K_01055"; transcript_id "KOF01085"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 65924 66817 . + . gene_id "W7K_01055"; transcript_id "KOF01085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01085-1"; +contig45 ena CDS 65924 66814 . + 0 gene_id "W7K_01055"; transcript_id "KOF01085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01085"; +contig45 ena start_codon 65924 65926 . + 0 gene_id "W7K_01055"; transcript_id "KOF01085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 66815 66817 . + 0 gene_id "W7K_01055"; transcript_id "KOF01085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 66922 67977 . - . gene_id "W7K_01060"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 66922 67977 . - . gene_id "W7K_01060"; transcript_id "KOF01086"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 66922 67977 . - . gene_id "W7K_01060"; transcript_id "KOF01086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01086-1"; +contig45 ena CDS 66925 67977 . - 0 gene_id "W7K_01060"; transcript_id "KOF01086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01086"; +contig45 ena start_codon 67975 67977 . - 0 gene_id "W7K_01060"; transcript_id "KOF01086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 66922 66924 . - 0 gene_id "W7K_01060"; transcript_id "KOF01086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 68217 68807 . + . gene_id "W7K_01065"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 68217 68807 . + . gene_id "W7K_01065"; transcript_id "KOF01087"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 68217 68807 . + . gene_id "W7K_01065"; transcript_id "KOF01087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01087-1"; +contig45 ena CDS 68217 68804 . + 0 gene_id "W7K_01065"; transcript_id "KOF01087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01087"; +contig45 ena start_codon 68217 68219 . + 0 gene_id "W7K_01065"; transcript_id "KOF01087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 68805 68807 . + 0 gene_id "W7K_01065"; transcript_id "KOF01087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 68925 69563 . + . gene_id "W7K_01070"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 68925 69563 . + . gene_id "W7K_01070"; transcript_id "KOF01088"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 68925 69563 . + . gene_id "W7K_01070"; transcript_id "KOF01088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01088-1"; +contig45 ena CDS 68925 69560 . + 0 gene_id "W7K_01070"; transcript_id "KOF01088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01088"; +contig45 ena start_codon 68925 68927 . + 0 gene_id "W7K_01070"; transcript_id "KOF01088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 69561 69563 . + 0 gene_id "W7K_01070"; transcript_id "KOF01088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 69660 70688 . + . gene_id "W7K_01075"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 69660 70688 . + . gene_id "W7K_01075"; transcript_id "KOF01089"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 69660 70688 . + . gene_id "W7K_01075"; transcript_id "KOF01089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01089-1"; +contig45 ena CDS 69660 70685 . + 0 gene_id "W7K_01075"; transcript_id "KOF01089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01089"; +contig45 ena start_codon 69660 69662 . + 0 gene_id "W7K_01075"; transcript_id "KOF01089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 70686 70688 . + 0 gene_id "W7K_01075"; transcript_id "KOF01089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 70816 71208 . + . gene_id "W7K_01080"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 70816 71208 . + . gene_id "W7K_01080"; transcript_id "KOF01090"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 70816 71208 . + . gene_id "W7K_01080"; transcript_id "KOF01090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01090-1"; +contig45 ena CDS 70816 71205 . + 0 gene_id "W7K_01080"; transcript_id "KOF01090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01090"; +contig45 ena start_codon 70816 70818 . + 0 gene_id "W7K_01080"; transcript_id "KOF01090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 71206 71208 . + 0 gene_id "W7K_01080"; transcript_id "KOF01090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 71284 73767 . - . gene_id "W7K_01085"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 71284 73767 . - . gene_id "W7K_01085"; transcript_id "KOF01091"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 71284 73767 . - . gene_id "W7K_01085"; transcript_id "KOF01091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01091-1"; +contig45 ena CDS 71287 73767 . - 0 gene_id "W7K_01085"; transcript_id "KOF01091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01091"; +contig45 ena start_codon 73765 73767 . - 0 gene_id "W7K_01085"; transcript_id "KOF01091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 71284 71286 . - 0 gene_id "W7K_01085"; transcript_id "KOF01091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 73771 74676 . - . gene_id "W7K_01090"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 73771 74676 . - . gene_id "W7K_01090"; transcript_id "KOF01092"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 73771 74676 . - . gene_id "W7K_01090"; transcript_id "KOF01092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01092-1"; +contig45 ena CDS 73774 74676 . - 0 gene_id "W7K_01090"; transcript_id "KOF01092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01092"; +contig45 ena start_codon 74674 74676 . - 0 gene_id "W7K_01090"; transcript_id "KOF01092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 73771 73773 . - 0 gene_id "W7K_01090"; transcript_id "KOF01092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 74816 75214 . - . gene_id "W7K_01095"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 74816 75214 . - . gene_id "W7K_01095"; transcript_id "KOF01093"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 74816 75214 . - . gene_id "W7K_01095"; transcript_id "KOF01093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01093-1"; +contig45 ena CDS 74819 75214 . - 0 gene_id "W7K_01095"; transcript_id "KOF01093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01093"; +contig45 ena start_codon 75212 75214 . - 0 gene_id "W7K_01095"; transcript_id "KOF01093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 74816 74818 . - 0 gene_id "W7K_01095"; transcript_id "KOF01093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 75359 75703 . + . gene_id "W7K_01100"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 75359 75703 . + . gene_id "W7K_01100"; transcript_id "KOF01094"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 75359 75703 . + . gene_id "W7K_01100"; transcript_id "KOF01094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01094-1"; +contig45 ena CDS 75359 75700 . + 0 gene_id "W7K_01100"; transcript_id "KOF01094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01094"; +contig45 ena start_codon 75359 75361 . + 0 gene_id "W7K_01100"; transcript_id "KOF01094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 75701 75703 . + 0 gene_id "W7K_01100"; transcript_id "KOF01094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 75746 77836 . - . gene_id "W7K_01105"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 75746 77836 . - . gene_id "W7K_01105"; transcript_id "KOF01095"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 75746 77836 . - . gene_id "W7K_01105"; transcript_id "KOF01095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01095-1"; +contig45 ena CDS 75749 77836 . - 0 gene_id "W7K_01105"; transcript_id "KOF01095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01095"; +contig45 ena start_codon 77834 77836 . - 0 gene_id "W7K_01105"; transcript_id "KOF01095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 75746 75748 . - 0 gene_id "W7K_01105"; transcript_id "KOF01095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 78008 79210 . + . gene_id "W7K_01110"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 78008 79210 . + . gene_id "W7K_01110"; transcript_id "KOF01096"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 78008 79210 . + . gene_id "W7K_01110"; transcript_id "KOF01096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01096-1"; +contig45 ena CDS 78008 79207 . + 0 gene_id "W7K_01110"; transcript_id "KOF01096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01096"; +contig45 ena start_codon 78008 78010 . + 0 gene_id "W7K_01110"; transcript_id "KOF01096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 79208 79210 . + 0 gene_id "W7K_01110"; transcript_id "KOF01096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 79556 80572 . + . gene_id "W7K_01115"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 79556 80572 . + . gene_id "W7K_01115"; transcript_id "KOF01097"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 79556 80572 . + . gene_id "W7K_01115"; transcript_id "KOF01097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01097-1"; +contig45 ena CDS 79556 80569 . + 0 gene_id "W7K_01115"; transcript_id "KOF01097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01097"; +contig45 ena start_codon 79556 79558 . + 0 gene_id "W7K_01115"; transcript_id "KOF01097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 80570 80572 . + 0 gene_id "W7K_01115"; transcript_id "KOF01097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 80681 81391 . + . gene_id "W7K_01120"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 80681 81391 . + . gene_id "W7K_01120"; transcript_id "KOF01098"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 80681 81391 . + . gene_id "W7K_01120"; transcript_id "KOF01098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01098-1"; +contig45 ena CDS 80681 81388 . + 0 gene_id "W7K_01120"; transcript_id "KOF01098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01098"; +contig45 ena start_codon 80681 80683 . + 0 gene_id "W7K_01120"; transcript_id "KOF01098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 81389 81391 . + 0 gene_id "W7K_01120"; transcript_id "KOF01098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 81454 81849 . - . gene_id "W7K_01125"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 81454 81849 . - . gene_id "W7K_01125"; transcript_id "KOF01163"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 81454 81849 . - . gene_id "W7K_01125"; transcript_id "KOF01163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01163-1"; +contig45 ena CDS 81457 81849 . - 0 gene_id "W7K_01125"; transcript_id "KOF01163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01163"; +contig45 ena start_codon 81847 81849 . - 0 gene_id "W7K_01125"; transcript_id "KOF01163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 81454 81456 . - 0 gene_id "W7K_01125"; transcript_id "KOF01163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 83249 85480 . - . gene_id "W7K_01130"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 83249 85480 . - . gene_id "W7K_01130"; transcript_id "KOF01099"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 83249 85480 . - . gene_id "W7K_01130"; transcript_id "KOF01099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01099-1"; +contig45 ena CDS 83252 85480 . - 0 gene_id "W7K_01130"; transcript_id "KOF01099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01099"; +contig45 ena start_codon 85478 85480 . - 0 gene_id "W7K_01130"; transcript_id "KOF01099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 83249 83251 . - 0 gene_id "W7K_01130"; transcript_id "KOF01099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 85675 88896 . - . gene_id "W7K_01135"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 85675 88896 . - . gene_id "W7K_01135"; transcript_id "KOF01100"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 85675 88896 . - . gene_id "W7K_01135"; transcript_id "KOF01100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01100-1"; +contig45 ena CDS 85678 88896 . - 0 gene_id "W7K_01135"; transcript_id "KOF01100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01100"; +contig45 ena start_codon 88894 88896 . - 0 gene_id "W7K_01135"; transcript_id "KOF01100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 85675 85677 . - 0 gene_id "W7K_01135"; transcript_id "KOF01100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 89065 90156 . - . gene_id "W7K_01140"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 89065 90156 . - . gene_id "W7K_01140"; transcript_id "KOF01101"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 89065 90156 . - . gene_id "W7K_01140"; transcript_id "KOF01101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01101-1"; +contig45 ena CDS 89068 90156 . - 0 gene_id "W7K_01140"; transcript_id "KOF01101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01101"; +contig45 ena start_codon 90154 90156 . - 0 gene_id "W7K_01140"; transcript_id "KOF01101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 89065 89067 . - 0 gene_id "W7K_01140"; transcript_id "KOF01101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 90299 91042 . - . gene_id "W7K_01145"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 90299 91042 . - . gene_id "W7K_01145"; transcript_id "KOF01102"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 90299 91042 . - . gene_id "W7K_01145"; transcript_id "KOF01102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01102-1"; +contig45 ena CDS 90302 91042 . - 0 gene_id "W7K_01145"; transcript_id "KOF01102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01102"; +contig45 ena start_codon 91040 91042 . - 0 gene_id "W7K_01145"; transcript_id "KOF01102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 90299 90301 . - 0 gene_id "W7K_01145"; transcript_id "KOF01102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 91052 91321 . - . gene_id "W7K_01150"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 91052 91321 . - . gene_id "W7K_01150"; transcript_id "KOF01103"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 91052 91321 . - . gene_id "W7K_01150"; transcript_id "KOF01103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01103-1"; +contig45 ena CDS 91055 91321 . - 0 gene_id "W7K_01150"; transcript_id "KOF01103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01103"; +contig45 ena start_codon 91319 91321 . - 0 gene_id "W7K_01150"; transcript_id "KOF01103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 91052 91054 . - 0 gene_id "W7K_01150"; transcript_id "KOF01103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 91362 92822 . - . gene_id "W7K_01155"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 91362 92822 . - . gene_id "W7K_01155"; transcript_id "KOF01164"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 91362 92822 . - . gene_id "W7K_01155"; transcript_id "KOF01164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01164-1"; +contig45 ena CDS 91365 92822 . - 0 gene_id "W7K_01155"; transcript_id "KOF01164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01164"; +contig45 ena start_codon 92820 92822 . - 0 gene_id "W7K_01155"; transcript_id "KOF01164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 91362 91364 . - 0 gene_id "W7K_01155"; transcript_id "KOF01164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 92959 93372 . - . gene_id "W7K_01160"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 92959 93372 . - . gene_id "W7K_01160"; transcript_id "KOF01104"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 92959 93372 . - . gene_id "W7K_01160"; transcript_id "KOF01104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01104-1"; +contig45 ena CDS 92962 93372 . - 0 gene_id "W7K_01160"; transcript_id "KOF01104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01104"; +contig45 ena start_codon 93370 93372 . - 0 gene_id "W7K_01160"; transcript_id "KOF01104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 92959 92961 . - 0 gene_id "W7K_01160"; transcript_id "KOF01104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 93376 93801 . - . gene_id "W7K_01165"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 93376 93801 . - . gene_id "W7K_01165"; transcript_id "KOF01105"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 93376 93801 . - . gene_id "W7K_01165"; transcript_id "KOF01105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01105-1"; +contig45 ena CDS 93379 93801 . - 0 gene_id "W7K_01165"; transcript_id "KOF01105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01105"; +contig45 ena start_codon 93799 93801 . - 0 gene_id "W7K_01165"; transcript_id "KOF01105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 93376 93378 . - 0 gene_id "W7K_01165"; transcript_id "KOF01105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 93863 94624 . - . gene_id "W7K_01170"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 93863 94624 . - . gene_id "W7K_01170"; transcript_id "KOF01106"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 93863 94624 . - . gene_id "W7K_01170"; transcript_id "KOF01106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01106-1"; +contig45 ena CDS 93866 94624 . - 0 gene_id "W7K_01170"; transcript_id "KOF01106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01106"; +contig45 ena start_codon 94622 94624 . - 0 gene_id "W7K_01170"; transcript_id "KOF01106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 93863 93865 . - 0 gene_id "W7K_01170"; transcript_id "KOF01106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 94718 95386 . - . gene_id "W7K_01175"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 94718 95386 . - . gene_id "W7K_01175"; transcript_id "KOF01107"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 94718 95386 . - . gene_id "W7K_01175"; transcript_id "KOF01107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01107-1"; +contig45 ena CDS 94721 95386 . - 0 gene_id "W7K_01175"; transcript_id "KOF01107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01107"; +contig45 ena start_codon 95384 95386 . - 0 gene_id "W7K_01175"; transcript_id "KOF01107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 94718 94720 . - 0 gene_id "W7K_01175"; transcript_id "KOF01107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 95530 96717 . - . gene_id "W7K_01180"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 95530 96717 . - . gene_id "W7K_01180"; transcript_id "KOF01108"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 95530 96717 . - . gene_id "W7K_01180"; transcript_id "KOF01108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01108-1"; +contig45 ena CDS 95533 96717 . - 0 gene_id "W7K_01180"; transcript_id "KOF01108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01108"; +contig45 ena start_codon 96715 96717 . - 0 gene_id "W7K_01180"; transcript_id "KOF01108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 95530 95532 . - 0 gene_id "W7K_01180"; transcript_id "KOF01108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 96850 97656 . - . gene_id "W7K_01185"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 96850 97656 . - . gene_id "W7K_01185"; transcript_id "KOF01109"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 96850 97656 . - . gene_id "W7K_01185"; transcript_id "KOF01109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01109-1"; +contig45 ena CDS 96853 97656 . - 0 gene_id "W7K_01185"; transcript_id "KOF01109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01109"; +contig45 ena start_codon 97654 97656 . - 0 gene_id "W7K_01185"; transcript_id "KOF01109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 96850 96852 . - 0 gene_id "W7K_01185"; transcript_id "KOF01109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 97728 98573 . - . gene_id "W7K_01190"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 97728 98573 . - . gene_id "W7K_01190"; transcript_id "KOF01110"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 97728 98573 . - . gene_id "W7K_01190"; transcript_id "KOF01110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01110-1"; +contig45 ena CDS 97731 98573 . - 0 gene_id "W7K_01190"; transcript_id "KOF01110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01110"; +contig45 ena start_codon 98571 98573 . - 0 gene_id "W7K_01190"; transcript_id "KOF01110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 97728 97730 . - 0 gene_id "W7K_01190"; transcript_id "KOF01110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 98641 101100 . - . gene_id "W7K_01195"; gene_name "gyrB"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 98641 101100 . - . gene_id "W7K_01195"; transcript_id "KOF01111"; gene_name "gyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 98641 101100 . - . gene_id "W7K_01195"; transcript_id "KOF01111"; exon_number "1"; gene_name "gyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01111-1"; +contig45 ena CDS 98644 101100 . - 0 gene_id "W7K_01195"; transcript_id "KOF01111"; exon_number "1"; gene_name "gyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01111"; +contig45 ena start_codon 101098 101100 . - 0 gene_id "W7K_01195"; transcript_id "KOF01111"; exon_number "1"; gene_name "gyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 98641 98643 . - 0 gene_id "W7K_01195"; transcript_id "KOF01111"; exon_number "1"; gene_name "gyrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gyrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 101213 102307 . - . gene_id "W7K_01200"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 101213 102307 . - . gene_id "W7K_01200"; transcript_id "KOF01112"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 101213 102307 . - . gene_id "W7K_01200"; transcript_id "KOF01112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01112-1"; +contig45 ena CDS 101216 102307 . - 0 gene_id "W7K_01200"; transcript_id "KOF01112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01112"; +contig45 ena start_codon 102305 102307 . - 0 gene_id "W7K_01200"; transcript_id "KOF01112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 101213 101215 . - 0 gene_id "W7K_01200"; transcript_id "KOF01112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 103289 104389 . - . gene_id "W7K_01205"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 103289 104389 . - . gene_id "W7K_01205"; transcript_id "KOF01113"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 103289 104389 . - . gene_id "W7K_01205"; transcript_id "KOF01113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01113-1"; +contig45 ena CDS 103292 104389 . - 0 gene_id "W7K_01205"; transcript_id "KOF01113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01113"; +contig45 ena start_codon 104387 104389 . - 0 gene_id "W7K_01205"; transcript_id "KOF01113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 103289 103291 . - 0 gene_id "W7K_01205"; transcript_id "KOF01113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 104665 105996 . - . gene_id "W7K_01210"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 104665 105996 . - . gene_id "W7K_01210"; transcript_id "KOF01165"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 104665 105996 . - . gene_id "W7K_01210"; transcript_id "KOF01165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01165-1"; +contig45 ena CDS 104668 105996 . - 0 gene_id "W7K_01210"; transcript_id "KOF01165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01165"; +contig45 ena start_codon 105994 105996 . - 0 gene_id "W7K_01210"; transcript_id "KOF01165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 104665 104667 . - 0 gene_id "W7K_01210"; transcript_id "KOF01165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 106253 106393 . + . gene_id "W7K_01215"; gene_name "rpmH"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 106253 106393 . + . gene_id "W7K_01215"; transcript_id "KOF01114"; gene_name "rpmH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 106253 106393 . + . gene_id "W7K_01215"; transcript_id "KOF01114"; exon_number "1"; gene_name "rpmH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01114-1"; +contig45 ena CDS 106253 106390 . + 0 gene_id "W7K_01215"; transcript_id "KOF01114"; exon_number "1"; gene_name "rpmH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01114"; +contig45 ena start_codon 106253 106255 . + 0 gene_id "W7K_01215"; transcript_id "KOF01114"; exon_number "1"; gene_name "rpmH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 106391 106393 . + 0 gene_id "W7K_01215"; transcript_id "KOF01114"; exon_number "1"; gene_name "rpmH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 106543 106893 . + . gene_id "W7K_01220"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 106543 106893 . + . gene_id "W7K_01220"; transcript_id "KOF01166"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 106543 106893 . + . gene_id "W7K_01220"; transcript_id "KOF01166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01166-1"; +contig45 ena CDS 106543 106890 . + 0 gene_id "W7K_01220"; transcript_id "KOF01166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01166"; +contig45 ena start_codon 106543 106545 . + 0 gene_id "W7K_01220"; transcript_id "KOF01166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 106891 106893 . + 0 gene_id "W7K_01220"; transcript_id "KOF01166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 106893 108608 . + . gene_id "W7K_01225"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 106893 108608 . + . gene_id "W7K_01225"; transcript_id "KOF01115"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 106893 108608 . + . gene_id "W7K_01225"; transcript_id "KOF01115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01115-1"; +contig45 ena CDS 106893 108605 . + 0 gene_id "W7K_01225"; transcript_id "KOF01115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01115"; +contig45 ena start_codon 106893 106895 . + 0 gene_id "W7K_01225"; transcript_id "KOF01115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 108606 108608 . + 0 gene_id "W7K_01225"; transcript_id "KOF01115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 108724 111396 . + . gene_id "W7K_01230"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 108724 111396 . + . gene_id "W7K_01230"; transcript_id "KOF01116"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 108724 111396 . + . gene_id "W7K_01230"; transcript_id "KOF01116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01116-1"; +contig45 ena CDS 108724 111393 . + 0 gene_id "W7K_01230"; transcript_id "KOF01116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01116"; +contig45 ena start_codon 108724 108726 . + 0 gene_id "W7K_01230"; transcript_id "KOF01116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 111394 111396 . + 0 gene_id "W7K_01230"; transcript_id "KOF01116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 111400 112749 . + . gene_id "W7K_01235"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 111400 112749 . + . gene_id "W7K_01235"; transcript_id "KOF01117"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 111400 112749 . + . gene_id "W7K_01235"; transcript_id "KOF01117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01117-1"; +contig45 ena CDS 111400 112746 . + 0 gene_id "W7K_01235"; transcript_id "KOF01117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01117"; +contig45 ena start_codon 111400 111402 . + 0 gene_id "W7K_01235"; transcript_id "KOF01117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 112747 112749 . + 0 gene_id "W7K_01235"; transcript_id "KOF01117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 112887 113993 . + . gene_id "W7K_01240"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 112887 113993 . + . gene_id "W7K_01240"; transcript_id "KOF01118"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 112887 113993 . + . gene_id "W7K_01240"; transcript_id "KOF01118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01118-1"; +contig45 ena CDS 112887 113990 . + 0 gene_id "W7K_01240"; transcript_id "KOF01118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01118"; +contig45 ena start_codon 112887 112889 . + 0 gene_id "W7K_01240"; transcript_id "KOF01118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 113991 113993 . + 0 gene_id "W7K_01240"; transcript_id "KOF01118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 114148 114918 . - . gene_id "W7K_01245"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 114148 114918 . - . gene_id "W7K_01245"; transcript_id "KOF01119"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 114148 114918 . - . gene_id "W7K_01245"; transcript_id "KOF01119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01119-1"; +contig45 ena CDS 114151 114918 . - 0 gene_id "W7K_01245"; transcript_id "KOF01119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01119"; +contig45 ena start_codon 114916 114918 . - 0 gene_id "W7K_01245"; transcript_id "KOF01119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 114148 114150 . - 0 gene_id "W7K_01245"; transcript_id "KOF01119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 115025 115987 . - . gene_id "W7K_01250"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 115025 115987 . - . gene_id "W7K_01250"; transcript_id "KOF01120"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 115025 115987 . - . gene_id "W7K_01250"; transcript_id "KOF01120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01120-1"; +contig45 ena CDS 115028 115987 . - 0 gene_id "W7K_01250"; transcript_id "KOF01120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01120"; +contig45 ena start_codon 115985 115987 . - 0 gene_id "W7K_01250"; transcript_id "KOF01120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 115025 115027 . - 0 gene_id "W7K_01250"; transcript_id "KOF01120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 116361 117530 . + . gene_id "W7K_01255"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 116361 117530 . + . gene_id "W7K_01255"; transcript_id "KOF01121"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 116361 117530 . + . gene_id "W7K_01255"; transcript_id "KOF01121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01121-1"; +contig45 ena CDS 116361 117527 . + 0 gene_id "W7K_01255"; transcript_id "KOF01121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01121"; +contig45 ena start_codon 116361 116363 . + 0 gene_id "W7K_01255"; transcript_id "KOF01121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 117528 117530 . + 0 gene_id "W7K_01255"; transcript_id "KOF01121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 117669 118910 . + . gene_id "W7K_01260"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 117669 118910 . + . gene_id "W7K_01260"; transcript_id "KOF01122"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 117669 118910 . + . gene_id "W7K_01260"; transcript_id "KOF01122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01122-1"; +contig45 ena CDS 117669 118907 . + 0 gene_id "W7K_01260"; transcript_id "KOF01122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01122"; +contig45 ena start_codon 117669 117671 . + 0 gene_id "W7K_01260"; transcript_id "KOF01122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 118908 118910 . + 0 gene_id "W7K_01260"; transcript_id "KOF01122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 119004 120431 . - . gene_id "W7K_01265"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 119004 120431 . - . gene_id "W7K_01265"; transcript_id "KOF01123"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 119004 120431 . - . gene_id "W7K_01265"; transcript_id "KOF01123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01123-1"; +contig45 ena CDS 119007 120431 . - 0 gene_id "W7K_01265"; transcript_id "KOF01123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01123"; +contig45 ena start_codon 120429 120431 . - 0 gene_id "W7K_01265"; transcript_id "KOF01123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 119004 119006 . - 0 gene_id "W7K_01265"; transcript_id "KOF01123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 120607 121602 . - . gene_id "W7K_01270"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 120607 121602 . - . gene_id "W7K_01270"; transcript_id "KOF01124"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 120607 121602 . - . gene_id "W7K_01270"; transcript_id "KOF01124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01124-1"; +contig45 ena CDS 120610 121602 . - 0 gene_id "W7K_01270"; transcript_id "KOF01124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01124"; +contig45 ena start_codon 121600 121602 . - 0 gene_id "W7K_01270"; transcript_id "KOF01124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 120607 120609 . - 0 gene_id "W7K_01270"; transcript_id "KOF01124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 121724 122626 . + . gene_id "W7K_01275"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 121724 122626 . + . gene_id "W7K_01275"; transcript_id "KOF01125"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 121724 122626 . + . gene_id "W7K_01275"; transcript_id "KOF01125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01125-1"; +contig45 ena CDS 121724 122623 . + 0 gene_id "W7K_01275"; transcript_id "KOF01125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01125"; +contig45 ena start_codon 121724 121726 . + 0 gene_id "W7K_01275"; transcript_id "KOF01125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 122624 122626 . + 0 gene_id "W7K_01275"; transcript_id "KOF01125"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 122650 123084 . - . gene_id "W7K_01280"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 122650 123084 . - . gene_id "W7K_01280"; transcript_id "KOF01126"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 122650 123084 . - . gene_id "W7K_01280"; transcript_id "KOF01126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01126-1"; +contig45 ena CDS 122653 123084 . - 0 gene_id "W7K_01280"; transcript_id "KOF01126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01126"; +contig45 ena start_codon 123082 123084 . - 0 gene_id "W7K_01280"; transcript_id "KOF01126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 122650 122652 . - 0 gene_id "W7K_01280"; transcript_id "KOF01126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 123081 123710 . - . gene_id "W7K_01285"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 123081 123710 . - . gene_id "W7K_01285"; transcript_id "KOF01127"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 123081 123710 . - . gene_id "W7K_01285"; transcript_id "KOF01127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01127-1"; +contig45 ena CDS 123084 123710 . - 0 gene_id "W7K_01285"; transcript_id "KOF01127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01127"; +contig45 ena start_codon 123708 123710 . - 0 gene_id "W7K_01285"; transcript_id "KOF01127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 123081 123083 . - 0 gene_id "W7K_01285"; transcript_id "KOF01127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 123725 124696 . - . gene_id "W7K_01290"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 123725 124696 . - . gene_id "W7K_01290"; transcript_id "KOF01128"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 123725 124696 . - . gene_id "W7K_01290"; transcript_id "KOF01128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01128-1"; +contig45 ena CDS 123728 124696 . - 0 gene_id "W7K_01290"; transcript_id "KOF01128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01128"; +contig45 ena start_codon 124694 124696 . - 0 gene_id "W7K_01290"; transcript_id "KOF01128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 123725 123727 . - 0 gene_id "W7K_01290"; transcript_id "KOF01128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 124788 125795 . + . gene_id "W7K_01295"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 124788 125795 . + . gene_id "W7K_01295"; transcript_id "KOF01129"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 124788 125795 . + . gene_id "W7K_01295"; transcript_id "KOF01129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01129-1"; +contig45 ena CDS 124788 125792 . + 0 gene_id "W7K_01295"; transcript_id "KOF01129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01129"; +contig45 ena start_codon 124788 124790 . + 0 gene_id "W7K_01295"; transcript_id "KOF01129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 125793 125795 . + 0 gene_id "W7K_01295"; transcript_id "KOF01129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 125957 126562 . - . gene_id "W7K_01300"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 125957 126562 . - . gene_id "W7K_01300"; transcript_id "KOF01130"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 125957 126562 . - . gene_id "W7K_01300"; transcript_id "KOF01130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01130-1"; +contig45 ena CDS 125960 126562 . - 0 gene_id "W7K_01300"; transcript_id "KOF01130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01130"; +contig45 ena start_codon 126560 126562 . - 0 gene_id "W7K_01300"; transcript_id "KOF01130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 125957 125959 . - 0 gene_id "W7K_01300"; transcript_id "KOF01130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 126608 128164 . + . gene_id "W7K_01305"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 126608 128164 . + . gene_id "W7K_01305"; transcript_id "KOF01131"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 126608 128164 . + . gene_id "W7K_01305"; transcript_id "KOF01131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01131-1"; +contig45 ena CDS 126608 128161 . + 0 gene_id "W7K_01305"; transcript_id "KOF01131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01131"; +contig45 ena start_codon 126608 126610 . + 0 gene_id "W7K_01305"; transcript_id "KOF01131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 128162 128164 . + 0 gene_id "W7K_01305"; transcript_id "KOF01131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 128236 128634 . + . gene_id "W7K_01310"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 128236 128634 . + . gene_id "W7K_01310"; transcript_id "KOF01132"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 128236 128634 . + . gene_id "W7K_01310"; transcript_id "KOF01132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01132-1"; +contig45 ena CDS 128236 128631 . + 0 gene_id "W7K_01310"; transcript_id "KOF01132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01132"; +contig45 ena start_codon 128236 128238 . + 0 gene_id "W7K_01310"; transcript_id "KOF01132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 128632 128634 . + 0 gene_id "W7K_01310"; transcript_id "KOF01132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 128761 129306 . + . gene_id "W7K_01315"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 128761 129306 . + . gene_id "W7K_01315"; transcript_id "KOF01133"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 128761 129306 . + . gene_id "W7K_01315"; transcript_id "KOF01133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01133-1"; +contig45 ena CDS 128761 129303 . + 0 gene_id "W7K_01315"; transcript_id "KOF01133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01133"; +contig45 ena start_codon 128761 128763 . + 0 gene_id "W7K_01315"; transcript_id "KOF01133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 129304 129306 . + 0 gene_id "W7K_01315"; transcript_id "KOF01133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 129392 130405 . - . gene_id "W7K_01320"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 129392 130405 . - . gene_id "W7K_01320"; transcript_id "KOF01134"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 129392 130405 . - . gene_id "W7K_01320"; transcript_id "KOF01134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01134-1"; +contig45 ena CDS 129395 130405 . - 0 gene_id "W7K_01320"; transcript_id "KOF01134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01134"; +contig45 ena start_codon 130403 130405 . - 0 gene_id "W7K_01320"; transcript_id "KOF01134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 129392 129394 . - 0 gene_id "W7K_01320"; transcript_id "KOF01134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 130407 130718 . - . gene_id "W7K_01325"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 130407 130718 . - . gene_id "W7K_01325"; transcript_id "KOF01135"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 130407 130718 . - . gene_id "W7K_01325"; transcript_id "KOF01135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01135-1"; +contig45 ena CDS 130410 130718 . - 0 gene_id "W7K_01325"; transcript_id "KOF01135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01135"; +contig45 ena start_codon 130716 130718 . - 0 gene_id "W7K_01325"; transcript_id "KOF01135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 130407 130409 . - 0 gene_id "W7K_01325"; transcript_id "KOF01135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 130708 131370 . - . gene_id "W7K_01330"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 130708 131370 . - . gene_id "W7K_01330"; transcript_id "KOF01136"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 130708 131370 . - . gene_id "W7K_01330"; transcript_id "KOF01136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01136-1"; +contig45 ena CDS 130711 131370 . - 0 gene_id "W7K_01330"; transcript_id "KOF01136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01136"; +contig45 ena start_codon 131368 131370 . - 0 gene_id "W7K_01330"; transcript_id "KOF01136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 130708 130710 . - 0 gene_id "W7K_01330"; transcript_id "KOF01136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 131367 131891 . - . gene_id "W7K_01335"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 131367 131891 . - . gene_id "W7K_01335"; transcript_id "KOF01137"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 131367 131891 . - . gene_id "W7K_01335"; transcript_id "KOF01137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01137-1"; +contig45 ena CDS 131370 131891 . - 0 gene_id "W7K_01335"; transcript_id "KOF01137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01137"; +contig45 ena start_codon 131889 131891 . - 0 gene_id "W7K_01335"; transcript_id "KOF01137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 131367 131369 . - 0 gene_id "W7K_01335"; transcript_id "KOF01137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 131951 132700 . - . gene_id "W7K_01340"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 131951 132700 . - . gene_id "W7K_01340"; transcript_id "KOF01138"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 131951 132700 . - . gene_id "W7K_01340"; transcript_id "KOF01138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01138-1"; +contig45 ena CDS 131954 132700 . - 0 gene_id "W7K_01340"; transcript_id "KOF01138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01138"; +contig45 ena start_codon 132698 132700 . - 0 gene_id "W7K_01340"; transcript_id "KOF01138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 131951 131953 . - 0 gene_id "W7K_01340"; transcript_id "KOF01138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 132700 133488 . - . gene_id "W7K_01345"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 132700 133488 . - . gene_id "W7K_01345"; transcript_id "KOF01167"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 132700 133488 . - . gene_id "W7K_01345"; transcript_id "KOF01167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01167-1"; +contig45 ena CDS 132703 133488 . - 0 gene_id "W7K_01345"; transcript_id "KOF01167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01167"; +contig45 ena start_codon 133486 133488 . - 0 gene_id "W7K_01345"; transcript_id "KOF01167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 132700 132702 . - 0 gene_id "W7K_01345"; transcript_id "KOF01167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 133678 137025 . + . gene_id "W7K_01350"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 133678 137025 . + . gene_id "W7K_01350"; transcript_id "KOF01139"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 133678 137025 . + . gene_id "W7K_01350"; transcript_id "KOF01139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01139-1"; +contig45 ena CDS 133678 137022 . + 0 gene_id "W7K_01350"; transcript_id "KOF01139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01139"; +contig45 ena start_codon 133678 133680 . + 0 gene_id "W7K_01350"; transcript_id "KOF01139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 137023 137025 . + 0 gene_id "W7K_01350"; transcript_id "KOF01139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 137022 140702 . + . gene_id "W7K_01355"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 137022 140702 . + . gene_id "W7K_01355"; transcript_id "KOF01140"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 137022 140702 . + . gene_id "W7K_01355"; transcript_id "KOF01140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01140-1"; +contig45 ena CDS 137022 140699 . + 0 gene_id "W7K_01355"; transcript_id "KOF01140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01140"; +contig45 ena start_codon 137022 137024 . + 0 gene_id "W7K_01355"; transcript_id "KOF01140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 140700 140702 . + 0 gene_id "W7K_01355"; transcript_id "KOF01140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 140699 142582 . + . gene_id "W7K_01360"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 140699 142582 . + . gene_id "W7K_01360"; transcript_id "KOF01141"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 140699 142582 . + . gene_id "W7K_01360"; transcript_id "KOF01141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01141-1"; +contig45 ena CDS 140699 142579 . + 0 gene_id "W7K_01360"; transcript_id "KOF01141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01141"; +contig45 ena start_codon 140699 140701 . + 0 gene_id "W7K_01360"; transcript_id "KOF01141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 142580 142582 . + 0 gene_id "W7K_01360"; transcript_id "KOF01141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 142916 143314 . - . gene_id "W7K_01365"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 142916 143314 . - . gene_id "W7K_01365"; transcript_id "KOF01142"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 142916 143314 . - . gene_id "W7K_01365"; transcript_id "KOF01142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01142-1"; +contig45 ena CDS 142919 143314 . - 0 gene_id "W7K_01365"; transcript_id "KOF01142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01142"; +contig45 ena start_codon 143312 143314 . - 0 gene_id "W7K_01365"; transcript_id "KOF01142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 142916 142918 . - 0 gene_id "W7K_01365"; transcript_id "KOF01142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 143365 145404 . - . gene_id "W7K_01370"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 143365 145404 . - . gene_id "W7K_01370"; transcript_id "KOF01143"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 143365 145404 . - . gene_id "W7K_01370"; transcript_id "KOF01143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01143-1"; +contig45 ena CDS 143368 145404 . - 0 gene_id "W7K_01370"; transcript_id "KOF01143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01143"; +contig45 ena start_codon 145402 145404 . - 0 gene_id "W7K_01370"; transcript_id "KOF01143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 143365 143367 . - 0 gene_id "W7K_01370"; transcript_id "KOF01143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 145408 146868 . - . gene_id "W7K_01375"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 145408 146868 . - . gene_id "W7K_01375"; transcript_id "KOF01144"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 145408 146868 . - . gene_id "W7K_01375"; transcript_id "KOF01144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01144-1"; +contig45 ena CDS 145411 146868 . - 0 gene_id "W7K_01375"; transcript_id "KOF01144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01144"; +contig45 ena start_codon 146866 146868 . - 0 gene_id "W7K_01375"; transcript_id "KOF01144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 145408 145410 . - 0 gene_id "W7K_01375"; transcript_id "KOF01144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 146865 147782 . - . gene_id "W7K_01380"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 146865 147782 . - . gene_id "W7K_01380"; transcript_id "KOF01168"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 146865 147782 . - . gene_id "W7K_01380"; transcript_id "KOF01168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01168-1"; +contig45 ena CDS 146868 147782 . - 0 gene_id "W7K_01380"; transcript_id "KOF01168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01168"; +contig45 ena start_codon 147780 147782 . - 0 gene_id "W7K_01380"; transcript_id "KOF01168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 146865 146867 . - 0 gene_id "W7K_01380"; transcript_id "KOF01168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 147779 147988 . - . gene_id "W7K_01385"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 147779 147988 . - . gene_id "W7K_01385"; transcript_id "KOF01145"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 147779 147988 . - . gene_id "W7K_01385"; transcript_id "KOF01145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01145-1"; +contig45 ena CDS 147782 147988 . - 0 gene_id "W7K_01385"; transcript_id "KOF01145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01145"; +contig45 ena start_codon 147986 147988 . - 0 gene_id "W7K_01385"; transcript_id "KOF01145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 147779 147781 . - 0 gene_id "W7K_01385"; transcript_id "KOF01145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 148097 148552 . - . gene_id "W7K_01390"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 148097 148552 . - . gene_id "W7K_01390"; transcript_id "KOF01146"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 148097 148552 . - . gene_id "W7K_01390"; transcript_id "KOF01146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01146-1"; +contig45 ena CDS 148100 148552 . - 0 gene_id "W7K_01390"; transcript_id "KOF01146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01146"; +contig45 ena start_codon 148550 148552 . - 0 gene_id "W7K_01390"; transcript_id "KOF01146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 148097 148099 . - 0 gene_id "W7K_01390"; transcript_id "KOF01146"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 149162 149773 . + . gene_id "W7K_01395"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 149162 149773 . + . gene_id "W7K_01395"; transcript_id "KOF01147"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 149162 149773 . + . gene_id "W7K_01395"; transcript_id "KOF01147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01147-1"; +contig45 ena CDS 149162 149770 . + 0 gene_id "W7K_01395"; transcript_id "KOF01147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01147"; +contig45 ena start_codon 149162 149164 . + 0 gene_id "W7K_01395"; transcript_id "KOF01147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 149771 149773 . + 0 gene_id "W7K_01395"; transcript_id "KOF01147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 149886 151355 . + . gene_id "W7K_01400"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 149886 151355 . + . gene_id "W7K_01400"; transcript_id "KOF01148"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 149886 151355 . + . gene_id "W7K_01400"; transcript_id "KOF01148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01148-1"; +contig45 ena CDS 149886 151352 . + 0 gene_id "W7K_01400"; transcript_id "KOF01148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01148"; +contig45 ena start_codon 149886 149888 . + 0 gene_id "W7K_01400"; transcript_id "KOF01148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 151353 151355 . + 0 gene_id "W7K_01400"; transcript_id "KOF01148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 151342 152043 . + . gene_id "W7K_01405"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 151342 152043 . + . gene_id "W7K_01405"; transcript_id "KOF01149"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 151342 152043 . + . gene_id "W7K_01405"; transcript_id "KOF01149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01149-1"; +contig45 ena CDS 151342 152040 . + 0 gene_id "W7K_01405"; transcript_id "KOF01149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01149"; +contig45 ena start_codon 151342 151344 . + 0 gene_id "W7K_01405"; transcript_id "KOF01149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 152041 152043 . + 0 gene_id "W7K_01405"; transcript_id "KOF01149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 152060 155440 . + . gene_id "W7K_01410"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 152060 155440 . + . gene_id "W7K_01410"; transcript_id "KOF01150"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 152060 155440 . + . gene_id "W7K_01410"; transcript_id "KOF01150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01150-1"; +contig45 ena CDS 152060 155437 . + 0 gene_id "W7K_01410"; transcript_id "KOF01150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01150"; +contig45 ena start_codon 152060 152062 . + 0 gene_id "W7K_01410"; transcript_id "KOF01150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 155438 155440 . + 0 gene_id "W7K_01410"; transcript_id "KOF01150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 155546 156325 . - . gene_id "W7K_01415"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 155546 156325 . - . gene_id "W7K_01415"; transcript_id "KOF01169"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 155546 156325 . - . gene_id "W7K_01415"; transcript_id "KOF01169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01169-1"; +contig45 ena CDS 155549 156325 . - 0 gene_id "W7K_01415"; transcript_id "KOF01169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01169"; +contig45 ena start_codon 156323 156325 . - 0 gene_id "W7K_01415"; transcript_id "KOF01169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 155546 155548 . - 0 gene_id "W7K_01415"; transcript_id "KOF01169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 156428 156820 . + . gene_id "W7K_01420"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 156428 156820 . + . gene_id "W7K_01420"; transcript_id "KOF01151"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 156428 156820 . + . gene_id "W7K_01420"; transcript_id "KOF01151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01151-1"; +contig45 ena CDS 156428 156817 . + 0 gene_id "W7K_01420"; transcript_id "KOF01151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01151"; +contig45 ena start_codon 156428 156430 . + 0 gene_id "W7K_01420"; transcript_id "KOF01151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 156818 156820 . + 0 gene_id "W7K_01420"; transcript_id "KOF01151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 156824 158104 . - . gene_id "W7K_01425"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 156824 158104 . - . gene_id "W7K_01425"; transcript_id "KOF01152"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 156824 158104 . - . gene_id "W7K_01425"; transcript_id "KOF01152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01152-1"; +contig45 ena CDS 156827 158104 . - 0 gene_id "W7K_01425"; transcript_id "KOF01152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01152"; +contig45 ena start_codon 158102 158104 . - 0 gene_id "W7K_01425"; transcript_id "KOF01152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 156824 156826 . - 0 gene_id "W7K_01425"; transcript_id "KOF01152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 158255 159526 . + . gene_id "W7K_01430"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 158255 159526 . + . gene_id "W7K_01430"; transcript_id "KOF01153"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 158255 159526 . + . gene_id "W7K_01430"; transcript_id "KOF01153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01153-1"; +contig45 ena CDS 158255 159523 . + 0 gene_id "W7K_01430"; transcript_id "KOF01153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01153"; +contig45 ena start_codon 158255 158257 . + 0 gene_id "W7K_01430"; transcript_id "KOF01153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 159524 159526 . + 0 gene_id "W7K_01430"; transcript_id "KOF01153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 159523 160497 . + . gene_id "W7K_01435"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 159523 160497 . + . gene_id "W7K_01435"; transcript_id "KOF01154"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 159523 160497 . + . gene_id "W7K_01435"; transcript_id "KOF01154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01154-1"; +contig45 ena CDS 159523 160494 . + 0 gene_id "W7K_01435"; transcript_id "KOF01154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01154"; +contig45 ena start_codon 159523 159525 . + 0 gene_id "W7K_01435"; transcript_id "KOF01154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 160495 160497 . + 0 gene_id "W7K_01435"; transcript_id "KOF01154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 160582 161847 . + . gene_id "W7K_01440"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 160582 161847 . + . gene_id "W7K_01440"; transcript_id "KOF01155"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 160582 161847 . + . gene_id "W7K_01440"; transcript_id "KOF01155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01155-1"; +contig45 ena CDS 160582 161844 . + 0 gene_id "W7K_01440"; transcript_id "KOF01155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01155"; +contig45 ena start_codon 160582 160584 . + 0 gene_id "W7K_01440"; transcript_id "KOF01155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 161845 161847 . + 0 gene_id "W7K_01440"; transcript_id "KOF01155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 161888 162754 . + . gene_id "W7K_01445"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 161888 162754 . + . gene_id "W7K_01445"; transcript_id "KOF01156"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 161888 162754 . + . gene_id "W7K_01445"; transcript_id "KOF01156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01156-1"; +contig45 ena CDS 161888 162751 . + 0 gene_id "W7K_01445"; transcript_id "KOF01156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01156"; +contig45 ena start_codon 161888 161890 . + 0 gene_id "W7K_01445"; transcript_id "KOF01156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 162752 162754 . + 0 gene_id "W7K_01445"; transcript_id "KOF01156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 162805 163578 . + . gene_id "W7K_01450"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 162805 163578 . + . gene_id "W7K_01450"; transcript_id "KOF01157"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 162805 163578 . + . gene_id "W7K_01450"; transcript_id "KOF01157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01157-1"; +contig45 ena CDS 162805 163575 . + 0 gene_id "W7K_01450"; transcript_id "KOF01157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01157"; +contig45 ena start_codon 162805 162807 . + 0 gene_id "W7K_01450"; transcript_id "KOF01157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 163576 163578 . + 0 gene_id "W7K_01450"; transcript_id "KOF01157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 163585 164772 . - . gene_id "W7K_01455"; gene_source "ena"; gene_biotype "protein_coding"; +contig45 ena transcript 163585 164772 . - . gene_id "W7K_01455"; transcript_id "KOF01158"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena exon 163585 164772 . - . gene_id "W7K_01455"; transcript_id "KOF01158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01158-1"; +contig45 ena CDS 163588 164772 . - 0 gene_id "W7K_01455"; transcript_id "KOF01158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01158"; +contig45 ena start_codon 164770 164772 . - 0 gene_id "W7K_01455"; transcript_id "KOF01158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena stop_codon 163585 163587 . - 0 gene_id "W7K_01455"; transcript_id "KOF01158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig45 ena gene 165411 165609 . + . gene_id "W7K_01460"; gene_source "ena"; gene_biotype "rRNA"; +contig45 ena transcript 165411 165609 . + . gene_id "W7K_01460"; transcript_id "EBT00051077668"; gene_source "ena"; gene_biotype "rRNA"; transcript_name "W7K_01460"; transcript_source "ena"; transcript_biotype "rRNA"; +contig45 ena exon 165411 165609 . + . gene_id "W7K_01460"; transcript_id "EBT00051077668"; exon_number "1"; gene_source "ena"; gene_biotype "rRNA"; transcript_name "W7K_01460"; transcript_source "ena"; transcript_biotype "rRNA"; exon_id "W7K_01460-1"; +contig15 ena gene 416 2785 . - . gene_id "W7K_15880"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 416 2785 . - . gene_id "W7K_15880"; transcript_id "KOE98078"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 416 2785 . - . gene_id "W7K_15880"; transcript_id "KOE98078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98078-1"; +contig15 ena CDS 419 2785 . - 0 gene_id "W7K_15880"; transcript_id "KOE98078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98078"; +contig15 ena start_codon 2783 2785 . - 0 gene_id "W7K_15880"; transcript_id "KOE98078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 416 418 . - 0 gene_id "W7K_15880"; transcript_id "KOE98078"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 2927 3175 . - . gene_id "W7K_15885"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 2927 3175 . - . gene_id "W7K_15885"; transcript_id "KOE98079"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 2927 3175 . - . gene_id "W7K_15885"; transcript_id "KOE98079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98079-1"; +contig15 ena CDS 2930 3175 . - 0 gene_id "W7K_15885"; transcript_id "KOE98079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98079"; +contig15 ena start_codon 3173 3175 . - 0 gene_id "W7K_15885"; transcript_id "KOE98079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 2927 2929 . - 0 gene_id "W7K_15885"; transcript_id "KOE98079"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 3358 3852 . + . gene_id "W7K_15890"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 3358 3852 . + . gene_id "W7K_15890"; transcript_id "KOE98080"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 3358 3852 . + . gene_id "W7K_15890"; transcript_id "KOE98080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98080-1"; +contig15 ena CDS 3358 3849 . + 0 gene_id "W7K_15890"; transcript_id "KOE98080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98080"; +contig15 ena start_codon 3358 3360 . + 0 gene_id "W7K_15890"; transcript_id "KOE98080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 3850 3852 . + 0 gene_id "W7K_15890"; transcript_id "KOE98080"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 3866 5074 . + . gene_id "W7K_15895"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 3866 5074 . + . gene_id "W7K_15895"; transcript_id "KOE98081"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 3866 5074 . + . gene_id "W7K_15895"; transcript_id "KOE98081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98081-1"; +contig15 ena CDS 3866 5071 . + 0 gene_id "W7K_15895"; transcript_id "KOE98081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98081"; +contig15 ena start_codon 3866 3868 . + 0 gene_id "W7K_15895"; transcript_id "KOE98081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 5072 5074 . + 0 gene_id "W7K_15895"; transcript_id "KOE98081"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 5201 5683 . + . gene_id "W7K_15900"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 5201 5683 . + . gene_id "W7K_15900"; transcript_id "KOE98082"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 5201 5683 . + . gene_id "W7K_15900"; transcript_id "KOE98082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98082-1"; +contig15 ena CDS 5201 5680 . + 0 gene_id "W7K_15900"; transcript_id "KOE98082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98082"; +contig15 ena start_codon 5201 5203 . + 0 gene_id "W7K_15900"; transcript_id "KOE98082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 5681 5683 . + 0 gene_id "W7K_15900"; transcript_id "KOE98082"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 5767 6201 . - . gene_id "W7K_15905"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 5767 6201 . - . gene_id "W7K_15905"; transcript_id "KOE98083"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 5767 6201 . - . gene_id "W7K_15905"; transcript_id "KOE98083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98083-1"; +contig15 ena CDS 5770 6201 . - 0 gene_id "W7K_15905"; transcript_id "KOE98083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98083"; +contig15 ena start_codon 6199 6201 . - 0 gene_id "W7K_15905"; transcript_id "KOE98083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 5767 5769 . - 0 gene_id "W7K_15905"; transcript_id "KOE98083"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 6353 6643 . + . gene_id "W7K_15910"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 6353 6643 . + . gene_id "W7K_15910"; transcript_id "KOE98084"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 6353 6643 . + . gene_id "W7K_15910"; transcript_id "KOE98084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98084-1"; +contig15 ena CDS 6353 6640 . + 0 gene_id "W7K_15910"; transcript_id "KOE98084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98084"; +contig15 ena start_codon 6353 6355 . + 0 gene_id "W7K_15910"; transcript_id "KOE98084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 6641 6643 . + 0 gene_id "W7K_15910"; transcript_id "KOE98084"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 6643 7302 . + . gene_id "W7K_15915"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 6643 7302 . + . gene_id "W7K_15915"; transcript_id "KOE98085"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 6643 7302 . + . gene_id "W7K_15915"; transcript_id "KOE98085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98085-1"; +contig15 ena CDS 6643 7299 . + 0 gene_id "W7K_15915"; transcript_id "KOE98085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98085"; +contig15 ena start_codon 6643 6645 . + 0 gene_id "W7K_15915"; transcript_id "KOE98085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 7300 7302 . + 0 gene_id "W7K_15915"; transcript_id "KOE98085"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 7299 8618 . + . gene_id "W7K_15920"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 7299 8618 . + . gene_id "W7K_15920"; transcript_id "KOE98086"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 7299 8618 . + . gene_id "W7K_15920"; transcript_id "KOE98086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98086-1"; +contig15 ena CDS 7299 8615 . + 0 gene_id "W7K_15920"; transcript_id "KOE98086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98086"; +contig15 ena start_codon 7299 7301 . + 0 gene_id "W7K_15920"; transcript_id "KOE98086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 8616 8618 . + 0 gene_id "W7K_15920"; transcript_id "KOE98086"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 8707 9027 . - . gene_id "W7K_15925"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 8707 9027 . - . gene_id "W7K_15925"; transcript_id "KOE98087"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 8707 9027 . - . gene_id "W7K_15925"; transcript_id "KOE98087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98087-1"; +contig15 ena CDS 8710 9027 . - 0 gene_id "W7K_15925"; transcript_id "KOE98087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98087"; +contig15 ena start_codon 9025 9027 . - 0 gene_id "W7K_15925"; transcript_id "KOE98087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 8707 8709 . - 0 gene_id "W7K_15925"; transcript_id "KOE98087"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 9064 10953 . - . gene_id "W7K_15930"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 9064 10953 . - . gene_id "W7K_15930"; transcript_id "KOE98088"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 9064 10953 . - . gene_id "W7K_15930"; transcript_id "KOE98088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98088-1"; +contig15 ena CDS 9067 10953 . - 0 gene_id "W7K_15930"; transcript_id "KOE98088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98088"; +contig15 ena start_codon 10951 10953 . - 0 gene_id "W7K_15930"; transcript_id "KOE98088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 9064 9066 . - 0 gene_id "W7K_15930"; transcript_id "KOE98088"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 11145 11999 . + . gene_id "W7K_15935"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 11145 11999 . + . gene_id "W7K_15935"; transcript_id "KOE98089"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 11145 11999 . + . gene_id "W7K_15935"; transcript_id "KOE98089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98089-1"; +contig15 ena CDS 11145 11996 . + 0 gene_id "W7K_15935"; transcript_id "KOE98089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98089"; +contig15 ena start_codon 11145 11147 . + 0 gene_id "W7K_15935"; transcript_id "KOE98089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 11997 11999 . + 0 gene_id "W7K_15935"; transcript_id "KOE98089"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 12123 13028 . - . gene_id "W7K_15940"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 12123 13028 . - . gene_id "W7K_15940"; transcript_id "KOE98215"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 12123 13028 . - . gene_id "W7K_15940"; transcript_id "KOE98215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98215-1"; +contig15 ena CDS 12126 13028 . - 0 gene_id "W7K_15940"; transcript_id "KOE98215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98215"; +contig15 ena start_codon 13026 13028 . - 0 gene_id "W7K_15940"; transcript_id "KOE98215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 12123 12125 . - 0 gene_id "W7K_15940"; transcript_id "KOE98215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 13464 14123 . + . gene_id "W7K_15945"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 13464 14123 . + . gene_id "W7K_15945"; transcript_id "KOE98090"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 13464 14123 . + . gene_id "W7K_15945"; transcript_id "KOE98090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98090-1"; +contig15 ena CDS 13464 14120 . + 0 gene_id "W7K_15945"; transcript_id "KOE98090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98090"; +contig15 ena start_codon 13464 13466 . + 0 gene_id "W7K_15945"; transcript_id "KOE98090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 14121 14123 . + 0 gene_id "W7K_15945"; transcript_id "KOE98090"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 14249 14587 . - . gene_id "W7K_15950"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 14249 14587 . - . gene_id "W7K_15950"; transcript_id "KOE98091"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 14249 14587 . - . gene_id "W7K_15950"; transcript_id "KOE98091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98091-1"; +contig15 ena CDS 14252 14587 . - 0 gene_id "W7K_15950"; transcript_id "KOE98091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98091"; +contig15 ena start_codon 14585 14587 . - 0 gene_id "W7K_15950"; transcript_id "KOE98091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 14249 14251 . - 0 gene_id "W7K_15950"; transcript_id "KOE98091"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 14724 14975 . + . gene_id "W7K_15955"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 14724 14975 . + . gene_id "W7K_15955"; transcript_id "KOE98092"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 14724 14975 . + . gene_id "W7K_15955"; transcript_id "KOE98092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98092-1"; +contig15 ena CDS 14724 14972 . + 0 gene_id "W7K_15955"; transcript_id "KOE98092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98092"; +contig15 ena start_codon 14724 14726 . + 0 gene_id "W7K_15955"; transcript_id "KOE98092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 14973 14975 . + 0 gene_id "W7K_15955"; transcript_id "KOE98092"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 15101 15535 . + . gene_id "W7K_15960"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 15101 15535 . + . gene_id "W7K_15960"; transcript_id "KOE98093"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 15101 15535 . + . gene_id "W7K_15960"; transcript_id "KOE98093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98093-1"; +contig15 ena CDS 15101 15532 . + 0 gene_id "W7K_15960"; transcript_id "KOE98093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98093"; +contig15 ena start_codon 15101 15103 . + 0 gene_id "W7K_15960"; transcript_id "KOE98093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 15533 15535 . + 0 gene_id "W7K_15960"; transcript_id "KOE98093"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 16107 16709 . - . gene_id "W7K_15970"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 16107 16709 . - . gene_id "W7K_15970"; transcript_id "KOE98094"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 16107 16709 . - . gene_id "W7K_15970"; transcript_id "KOE98094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98094-1"; +contig15 ena CDS 16110 16709 . - 0 gene_id "W7K_15970"; transcript_id "KOE98094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98094"; +contig15 ena start_codon 16707 16709 . - 0 gene_id "W7K_15970"; transcript_id "KOE98094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 16107 16109 . - 0 gene_id "W7K_15970"; transcript_id "KOE98094"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 17359 17721 . + . gene_id "W7K_15975"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 17359 17721 . + . gene_id "W7K_15975"; transcript_id "KOE98095"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 17359 17721 . + . gene_id "W7K_15975"; transcript_id "KOE98095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98095-1"; +contig15 ena CDS 17359 17718 . + 0 gene_id "W7K_15975"; transcript_id "KOE98095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98095"; +contig15 ena start_codon 17359 17361 . + 0 gene_id "W7K_15975"; transcript_id "KOE98095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 17719 17721 . + 0 gene_id "W7K_15975"; transcript_id "KOE98095"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 17767 18255 . + . gene_id "W7K_15980"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 17767 18255 . + . gene_id "W7K_15980"; transcript_id "KOE98096"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 17767 18255 . + . gene_id "W7K_15980"; transcript_id "KOE98096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98096-1"; +contig15 ena CDS 17767 18252 . + 0 gene_id "W7K_15980"; transcript_id "KOE98096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98096"; +contig15 ena start_codon 17767 17769 . + 0 gene_id "W7K_15980"; transcript_id "KOE98096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 18253 18255 . + 0 gene_id "W7K_15980"; transcript_id "KOE98096"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 18321 19226 . - . gene_id "W7K_15985"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 18321 19226 . - . gene_id "W7K_15985"; transcript_id "KOE98097"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 18321 19226 . - . gene_id "W7K_15985"; transcript_id "KOE98097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98097-1"; +contig15 ena CDS 18324 19226 . - 0 gene_id "W7K_15985"; transcript_id "KOE98097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98097"; +contig15 ena start_codon 19224 19226 . - 0 gene_id "W7K_15985"; transcript_id "KOE98097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 18321 18323 . - 0 gene_id "W7K_15985"; transcript_id "KOE98097"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 19673 21178 . + . gene_id "W7K_15990"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 19673 21178 . + . gene_id "W7K_15990"; transcript_id "KOE98098"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 19673 21178 . + . gene_id "W7K_15990"; transcript_id "KOE98098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98098-1"; +contig15 ena CDS 19673 21175 . + 0 gene_id "W7K_15990"; transcript_id "KOE98098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98098"; +contig15 ena start_codon 19673 19675 . + 0 gene_id "W7K_15990"; transcript_id "KOE98098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 21176 21178 . + 0 gene_id "W7K_15990"; transcript_id "KOE98098"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 21186 21419 . - . gene_id "W7K_15995"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 21186 21419 . - . gene_id "W7K_15995"; transcript_id "KOE98099"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 21186 21419 . - . gene_id "W7K_15995"; transcript_id "KOE98099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98099-1"; +contig15 ena CDS 21189 21419 . - 0 gene_id "W7K_15995"; transcript_id "KOE98099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98099"; +contig15 ena start_codon 21417 21419 . - 0 gene_id "W7K_15995"; transcript_id "KOE98099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 21186 21188 . - 0 gene_id "W7K_15995"; transcript_id "KOE98099"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 21507 21896 . - . gene_id "W7K_16000"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 21507 21896 . - . gene_id "W7K_16000"; transcript_id "KOE98100"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 21507 21896 . - . gene_id "W7K_16000"; transcript_id "KOE98100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98100-1"; +contig15 ena CDS 21510 21896 . - 0 gene_id "W7K_16000"; transcript_id "KOE98100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98100"; +contig15 ena start_codon 21894 21896 . - 0 gene_id "W7K_16000"; transcript_id "KOE98100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 21507 21509 . - 0 gene_id "W7K_16000"; transcript_id "KOE98100"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 21992 24310 . - . gene_id "W7K_16005"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 21992 24310 . - . gene_id "W7K_16005"; transcript_id "KOE98101"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 21992 24310 . - . gene_id "W7K_16005"; transcript_id "KOE98101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98101-1"; +contig15 ena CDS 21995 24310 . - 0 gene_id "W7K_16005"; transcript_id "KOE98101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98101"; +contig15 ena start_codon 24308 24310 . - 0 gene_id "W7K_16005"; transcript_id "KOE98101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 21992 21994 . - 0 gene_id "W7K_16005"; transcript_id "KOE98101"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 24698 25531 . - . gene_id "W7K_16010"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 24698 25531 . - . gene_id "W7K_16010"; transcript_id "KOE98102"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 24698 25531 . - . gene_id "W7K_16010"; transcript_id "KOE98102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98102-1"; +contig15 ena CDS 24701 25531 . - 0 gene_id "W7K_16010"; transcript_id "KOE98102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98102"; +contig15 ena start_codon 25529 25531 . - 0 gene_id "W7K_16010"; transcript_id "KOE98102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 24698 24700 . - 0 gene_id "W7K_16010"; transcript_id "KOE98102"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 25682 26344 . + . gene_id "W7K_16015"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 25682 26344 . + . gene_id "W7K_16015"; transcript_id "KOE98103"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 25682 26344 . + . gene_id "W7K_16015"; transcript_id "KOE98103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98103-1"; +contig15 ena CDS 25682 26341 . + 0 gene_id "W7K_16015"; transcript_id "KOE98103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98103"; +contig15 ena start_codon 25682 25684 . + 0 gene_id "W7K_16015"; transcript_id "KOE98103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 26342 26344 . + 0 gene_id "W7K_16015"; transcript_id "KOE98103"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 26435 27745 . - . gene_id "W7K_16020"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 26435 27745 . - . gene_id "W7K_16020"; transcript_id "KOE98104"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 26435 27745 . - . gene_id "W7K_16020"; transcript_id "KOE98104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98104-1"; +contig15 ena CDS 26438 27745 . - 0 gene_id "W7K_16020"; transcript_id "KOE98104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98104"; +contig15 ena start_codon 27743 27745 . - 0 gene_id "W7K_16020"; transcript_id "KOE98104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 26435 26437 . - 0 gene_id "W7K_16020"; transcript_id "KOE98104"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 27738 28178 . - . gene_id "W7K_16025"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 27738 28178 . - . gene_id "W7K_16025"; transcript_id "KOE98105"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 27738 28178 . - . gene_id "W7K_16025"; transcript_id "KOE98105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98105-1"; +contig15 ena CDS 27741 28178 . - 0 gene_id "W7K_16025"; transcript_id "KOE98105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98105"; +contig15 ena start_codon 28176 28178 . - 0 gene_id "W7K_16025"; transcript_id "KOE98105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 27738 27740 . - 0 gene_id "W7K_16025"; transcript_id "KOE98105"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 28508 30274 . + . gene_id "W7K_16030"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 28508 30274 . + . gene_id "W7K_16030"; transcript_id "KOE98106"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 28508 30274 . + . gene_id "W7K_16030"; transcript_id "KOE98106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98106-1"; +contig15 ena CDS 28508 30271 . + 0 gene_id "W7K_16030"; transcript_id "KOE98106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98106"; +contig15 ena start_codon 28508 28510 . + 0 gene_id "W7K_16030"; transcript_id "KOE98106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 30272 30274 . + 0 gene_id "W7K_16030"; transcript_id "KOE98106"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 30274 30867 . + . gene_id "W7K_16035"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 30274 30867 . + . gene_id "W7K_16035"; transcript_id "KOE98107"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 30274 30867 . + . gene_id "W7K_16035"; transcript_id "KOE98107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98107-1"; +contig15 ena CDS 30274 30864 . + 0 gene_id "W7K_16035"; transcript_id "KOE98107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98107"; +contig15 ena start_codon 30274 30276 . + 0 gene_id "W7K_16035"; transcript_id "KOE98107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 30865 30867 . + 0 gene_id "W7K_16035"; transcript_id "KOE98107"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 31032 31703 . - . gene_id "W7K_16040"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 31032 31703 . - . gene_id "W7K_16040"; transcript_id "KOE98108"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 31032 31703 . - . gene_id "W7K_16040"; transcript_id "KOE98108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98108-1"; +contig15 ena CDS 31035 31703 . - 0 gene_id "W7K_16040"; transcript_id "KOE98108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98108"; +contig15 ena start_codon 31701 31703 . - 0 gene_id "W7K_16040"; transcript_id "KOE98108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 31032 31034 . - 0 gene_id "W7K_16040"; transcript_id "KOE98108"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 31847 32179 . - . gene_id "W7K_16045"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 31847 32179 . - . gene_id "W7K_16045"; transcript_id "KOE98109"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 31847 32179 . - . gene_id "W7K_16045"; transcript_id "KOE98109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98109-1"; +contig15 ena CDS 31850 32179 . - 0 gene_id "W7K_16045"; transcript_id "KOE98109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98109"; +contig15 ena start_codon 32177 32179 . - 0 gene_id "W7K_16045"; transcript_id "KOE98109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 31847 31849 . - 0 gene_id "W7K_16045"; transcript_id "KOE98109"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 32181 32792 . - . gene_id "W7K_16050"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 32181 32792 . - . gene_id "W7K_16050"; transcript_id "KOE98216"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 32181 32792 . - . gene_id "W7K_16050"; transcript_id "KOE98216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98216-1"; +contig15 ena CDS 32184 32792 . - 0 gene_id "W7K_16050"; transcript_id "KOE98216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98216"; +contig15 ena start_codon 32790 32792 . - 0 gene_id "W7K_16050"; transcript_id "KOE98216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 32181 32183 . - 0 gene_id "W7K_16050"; transcript_id "KOE98216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 32813 34789 . - . gene_id "W7K_16055"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 32813 34789 . - . gene_id "W7K_16055"; transcript_id "KOE98110"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 32813 34789 . - . gene_id "W7K_16055"; transcript_id "KOE98110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98110-1"; +contig15 ena CDS 32816 34789 . - 0 gene_id "W7K_16055"; transcript_id "KOE98110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98110"; +contig15 ena start_codon 34787 34789 . - 0 gene_id "W7K_16055"; transcript_id "KOE98110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 32813 32815 . - 0 gene_id "W7K_16055"; transcript_id "KOE98110"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 34795 35700 . - . gene_id "W7K_16060"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 34795 35700 . - . gene_id "W7K_16060"; transcript_id "KOE98111"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 34795 35700 . - . gene_id "W7K_16060"; transcript_id "KOE98111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98111-1"; +contig15 ena CDS 34798 35700 . - 0 gene_id "W7K_16060"; transcript_id "KOE98111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98111"; +contig15 ena start_codon 35698 35700 . - 0 gene_id "W7K_16060"; transcript_id "KOE98111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 34795 34797 . - 0 gene_id "W7K_16060"; transcript_id "KOE98111"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 35884 37299 . + . gene_id "W7K_16065"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 35884 37299 . + . gene_id "W7K_16065"; transcript_id "KOE98112"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 35884 37299 . + . gene_id "W7K_16065"; transcript_id "KOE98112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98112-1"; +contig15 ena CDS 35884 37296 . + 0 gene_id "W7K_16065"; transcript_id "KOE98112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98112"; +contig15 ena start_codon 35884 35886 . + 0 gene_id "W7K_16065"; transcript_id "KOE98112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 37297 37299 . + 0 gene_id "W7K_16065"; transcript_id "KOE98112"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 37373 37633 . + . gene_id "W7K_16070"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 37373 37633 . + . gene_id "W7K_16070"; transcript_id "KOE98217"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 37373 37633 . + . gene_id "W7K_16070"; transcript_id "KOE98217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98217-1"; +contig15 ena CDS 37373 37630 . + 0 gene_id "W7K_16070"; transcript_id "KOE98217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98217"; +contig15 ena start_codon 37373 37375 . + 0 gene_id "W7K_16070"; transcript_id "KOE98217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 37631 37633 . + 0 gene_id "W7K_16070"; transcript_id "KOE98217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 37633 38232 . + . gene_id "W7K_16075"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 37633 38232 . + . gene_id "W7K_16075"; transcript_id "KOE98113"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 37633 38232 . + . gene_id "W7K_16075"; transcript_id "KOE98113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98113-1"; +contig15 ena CDS 37633 38229 . + 0 gene_id "W7K_16075"; transcript_id "KOE98113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98113"; +contig15 ena start_codon 37633 37635 . + 0 gene_id "W7K_16075"; transcript_id "KOE98113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 38230 38232 . + 0 gene_id "W7K_16075"; transcript_id "KOE98113"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 38242 39756 . + . gene_id "W7K_16080"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 38242 39756 . + . gene_id "W7K_16080"; transcript_id "KOE98114"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 38242 39756 . + . gene_id "W7K_16080"; transcript_id "KOE98114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98114-1"; +contig15 ena CDS 38242 39753 . + 0 gene_id "W7K_16080"; transcript_id "KOE98114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98114"; +contig15 ena start_codon 38242 38244 . + 0 gene_id "W7K_16080"; transcript_id "KOE98114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 39754 39756 . + 0 gene_id "W7K_16080"; transcript_id "KOE98114"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 39979 41280 . - . gene_id "W7K_16085"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 39979 41280 . - . gene_id "W7K_16085"; transcript_id "KOE98115"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 39979 41280 . - . gene_id "W7K_16085"; transcript_id "KOE98115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98115-1"; +contig15 ena CDS 39982 41280 . - 0 gene_id "W7K_16085"; transcript_id "KOE98115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98115"; +contig15 ena start_codon 41278 41280 . - 0 gene_id "W7K_16085"; transcript_id "KOE98115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 39979 39981 . - 0 gene_id "W7K_16085"; transcript_id "KOE98115"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 41280 43637 . - . gene_id "W7K_16090"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 41280 43637 . - . gene_id "W7K_16090"; transcript_id "KOE98116"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 41280 43637 . - . gene_id "W7K_16090"; transcript_id "KOE98116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98116-1"; +contig15 ena CDS 41283 43637 . - 0 gene_id "W7K_16090"; transcript_id "KOE98116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98116"; +contig15 ena start_codon 43635 43637 . - 0 gene_id "W7K_16090"; transcript_id "KOE98116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 41280 41282 . - 0 gene_id "W7K_16090"; transcript_id "KOE98116"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 43882 44709 . + . gene_id "W7K_16095"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 43882 44709 . + . gene_id "W7K_16095"; transcript_id "KOE98117"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 43882 44709 . + . gene_id "W7K_16095"; transcript_id "KOE98117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98117-1"; +contig15 ena CDS 43882 44706 . + 0 gene_id "W7K_16095"; transcript_id "KOE98117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98117"; +contig15 ena start_codon 43882 43884 . + 0 gene_id "W7K_16095"; transcript_id "KOE98117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 44707 44709 . + 0 gene_id "W7K_16095"; transcript_id "KOE98117"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 44723 45802 . + . gene_id "W7K_16100"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 44723 45802 . + . gene_id "W7K_16100"; transcript_id "KOE98118"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 44723 45802 . + . gene_id "W7K_16100"; transcript_id "KOE98118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98118-1"; +contig15 ena CDS 44723 45799 . + 0 gene_id "W7K_16100"; transcript_id "KOE98118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98118"; +contig15 ena start_codon 44723 44725 . + 0 gene_id "W7K_16100"; transcript_id "KOE98118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 45800 45802 . + 0 gene_id "W7K_16100"; transcript_id "KOE98118"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 45857 46528 . + . gene_id "W7K_16105"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 45857 46528 . + . gene_id "W7K_16105"; transcript_id "KOE98119"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 45857 46528 . + . gene_id "W7K_16105"; transcript_id "KOE98119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98119-1"; +contig15 ena CDS 45857 46525 . + 0 gene_id "W7K_16105"; transcript_id "KOE98119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98119"; +contig15 ena start_codon 45857 45859 . + 0 gene_id "W7K_16105"; transcript_id "KOE98119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 46526 46528 . + 0 gene_id "W7K_16105"; transcript_id "KOE98119"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 46530 47933 . - . gene_id "W7K_16110"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 46530 47933 . - . gene_id "W7K_16110"; transcript_id "KOE98120"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 46530 47933 . - . gene_id "W7K_16110"; transcript_id "KOE98120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98120-1"; +contig15 ena CDS 46533 47933 . - 0 gene_id "W7K_16110"; transcript_id "KOE98120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98120"; +contig15 ena start_codon 47931 47933 . - 0 gene_id "W7K_16110"; transcript_id "KOE98120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 46530 46532 . - 0 gene_id "W7K_16110"; transcript_id "KOE98120"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 47936 49774 . - . gene_id "W7K_16115"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 47936 49774 . - . gene_id "W7K_16115"; transcript_id "KOE98121"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 47936 49774 . - . gene_id "W7K_16115"; transcript_id "KOE98121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98121-1"; +contig15 ena CDS 47939 49774 . - 0 gene_id "W7K_16115"; transcript_id "KOE98121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98121"; +contig15 ena start_codon 49772 49774 . - 0 gene_id "W7K_16115"; transcript_id "KOE98121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 47936 47938 . - 0 gene_id "W7K_16115"; transcript_id "KOE98121"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 49848 50360 . - . gene_id "W7K_16120"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 49848 50360 . - . gene_id "W7K_16120"; transcript_id "KOE98122"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 49848 50360 . - . gene_id "W7K_16120"; transcript_id "KOE98122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98122-1"; +contig15 ena CDS 49851 50360 . - 0 gene_id "W7K_16120"; transcript_id "KOE98122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98122"; +contig15 ena start_codon 50358 50360 . - 0 gene_id "W7K_16120"; transcript_id "KOE98122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 49848 49850 . - 0 gene_id "W7K_16120"; transcript_id "KOE98122"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 50443 51069 . + . gene_id "W7K_16125"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 50443 51069 . + . gene_id "W7K_16125"; transcript_id "KOE98123"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 50443 51069 . + . gene_id "W7K_16125"; transcript_id "KOE98123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98123-1"; +contig15 ena CDS 50443 51066 . + 0 gene_id "W7K_16125"; transcript_id "KOE98123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98123"; +contig15 ena start_codon 50443 50445 . + 0 gene_id "W7K_16125"; transcript_id "KOE98123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 51067 51069 . + 0 gene_id "W7K_16125"; transcript_id "KOE98123"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 51559 52950 . - . gene_id "W7K_16130"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 51559 52950 . - . gene_id "W7K_16130"; transcript_id "KOE98124"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 51559 52950 . - . gene_id "W7K_16130"; transcript_id "KOE98124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98124-1"; +contig15 ena CDS 51562 52950 . - 0 gene_id "W7K_16130"; transcript_id "KOE98124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98124"; +contig15 ena start_codon 52948 52950 . - 0 gene_id "W7K_16130"; transcript_id "KOE98124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 51559 51561 . - 0 gene_id "W7K_16130"; transcript_id "KOE98124"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 53171 54064 . - . gene_id "W7K_16135"; gene_name "ubiA"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 53171 54064 . - . gene_id "W7K_16135"; transcript_id "KOE98125"; gene_name "ubiA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ubiA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 53171 54064 . - . gene_id "W7K_16135"; transcript_id "KOE98125"; exon_number "1"; gene_name "ubiA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ubiA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98125-1"; +contig15 ena CDS 53174 54064 . - 0 gene_id "W7K_16135"; transcript_id "KOE98125"; exon_number "1"; gene_name "ubiA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ubiA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98125"; +contig15 ena start_codon 54062 54064 . - 0 gene_id "W7K_16135"; transcript_id "KOE98125"; exon_number "1"; gene_name "ubiA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ubiA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 53171 53173 . - 0 gene_id "W7K_16135"; transcript_id "KOE98125"; exon_number "1"; gene_name "ubiA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ubiA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 54214 54290 . + . gene_id "W7K_16140"; gene_source "ena"; gene_biotype "tRNA"; +contig15 ena transcript 54214 54290 . + . gene_id "W7K_16140"; transcript_id "EBT00051077617"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_16140"; transcript_source "ena"; transcript_biotype "tRNA"; +contig15 ena exon 54214 54290 . + . gene_id "W7K_16140"; transcript_id "EBT00051077617"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_16140"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_16140-1"; +contig15 ena gene 54798 55217 . - . gene_id "W7K_16150"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 54798 55217 . - . gene_id "W7K_16150"; transcript_id "KOE98126"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 54798 55217 . - . gene_id "W7K_16150"; transcript_id "KOE98126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98126-1"; +contig15 ena CDS 54801 55217 . - 0 gene_id "W7K_16150"; transcript_id "KOE98126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98126"; +contig15 ena start_codon 55215 55217 . - 0 gene_id "W7K_16150"; transcript_id "KOE98126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 54798 54800 . - 0 gene_id "W7K_16150"; transcript_id "KOE98126"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 55375 56730 . - . gene_id "W7K_16155"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 55375 56730 . - . gene_id "W7K_16155"; transcript_id "KOE98218"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 55375 56730 . - . gene_id "W7K_16155"; transcript_id "KOE98218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98218-1"; +contig15 ena CDS 55378 56730 . - 0 gene_id "W7K_16155"; transcript_id "KOE98218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98218"; +contig15 ena start_codon 56728 56730 . - 0 gene_id "W7K_16155"; transcript_id "KOE98218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 55375 55377 . - 0 gene_id "W7K_16155"; transcript_id "KOE98218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 56796 59771 . - . gene_id "W7K_16160"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 56796 59771 . - . gene_id "W7K_16160"; transcript_id "KOE98127"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 56796 59771 . - . gene_id "W7K_16160"; transcript_id "KOE98127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98127-1"; +contig15 ena CDS 56799 59771 . - 0 gene_id "W7K_16160"; transcript_id "KOE98127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98127"; +contig15 ena start_codon 59769 59771 . - 0 gene_id "W7K_16160"; transcript_id "KOE98127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 56796 56798 . - 0 gene_id "W7K_16160"; transcript_id "KOE98127"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 59905 63264 . - . gene_id "W7K_16165"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 59905 63264 . - . gene_id "W7K_16165"; transcript_id "KOE98128"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 59905 63264 . - . gene_id "W7K_16165"; transcript_id "KOE98128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98128-1"; +contig15 ena CDS 59908 63264 . - 0 gene_id "W7K_16165"; transcript_id "KOE98128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98128"; +contig15 ena start_codon 63262 63264 . - 0 gene_id "W7K_16165"; transcript_id "KOE98128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 59905 59907 . - 0 gene_id "W7K_16165"; transcript_id "KOE98128"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 63587 64741 . + . gene_id "W7K_16170"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 63587 64741 . + . gene_id "W7K_16170"; transcript_id "KOE98129"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 63587 64741 . + . gene_id "W7K_16170"; transcript_id "KOE98129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98129-1"; +contig15 ena CDS 63587 64738 . + 0 gene_id "W7K_16170"; transcript_id "KOE98129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98129"; +contig15 ena start_codon 63587 63589 . + 0 gene_id "W7K_16170"; transcript_id "KOE98129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 64739 64741 . + 0 gene_id "W7K_16170"; transcript_id "KOE98129"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 64734 65672 . + . gene_id "W7K_16175"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 64734 65672 . + . gene_id "W7K_16175"; transcript_id "KOE98130"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 64734 65672 . + . gene_id "W7K_16175"; transcript_id "KOE98130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98130-1"; +contig15 ena CDS 64734 65669 . + 0 gene_id "W7K_16175"; transcript_id "KOE98130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98130"; +contig15 ena start_codon 64734 64736 . + 0 gene_id "W7K_16175"; transcript_id "KOE98130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 65670 65672 . + 0 gene_id "W7K_16175"; transcript_id "KOE98130"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 65690 67024 . + . gene_id "W7K_16180"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 65690 67024 . + . gene_id "W7K_16180"; transcript_id "KOE98131"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 65690 67024 . + . gene_id "W7K_16180"; transcript_id "KOE98131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98131-1"; +contig15 ena CDS 65690 67021 . + 0 gene_id "W7K_16180"; transcript_id "KOE98131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98131"; +contig15 ena start_codon 65690 65692 . + 0 gene_id "W7K_16180"; transcript_id "KOE98131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 67022 67024 . + 0 gene_id "W7K_16180"; transcript_id "KOE98131"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 67058 67834 . + . gene_id "W7K_16185"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 67058 67834 . + . gene_id "W7K_16185"; transcript_id "KOE98219"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 67058 67834 . + . gene_id "W7K_16185"; transcript_id "KOE98219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98219-1"; +contig15 ena CDS 67058 67831 . + 0 gene_id "W7K_16185"; transcript_id "KOE98219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98219"; +contig15 ena start_codon 67058 67060 . + 0 gene_id "W7K_16185"; transcript_id "KOE98219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 67832 67834 . + 0 gene_id "W7K_16185"; transcript_id "KOE98219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 67831 68946 . + . gene_id "W7K_16190"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 67831 68946 . + . gene_id "W7K_16190"; transcript_id "KOE98132"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 67831 68946 . + . gene_id "W7K_16190"; transcript_id "KOE98132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98132-1"; +contig15 ena CDS 67831 68943 . + 0 gene_id "W7K_16190"; transcript_id "KOE98132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98132"; +contig15 ena start_codon 67831 67833 . + 0 gene_id "W7K_16190"; transcript_id "KOE98132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 68944 68946 . + 0 gene_id "W7K_16190"; transcript_id "KOE98132"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 69139 70917 . + . gene_id "W7K_16195"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 69139 70917 . + . gene_id "W7K_16195"; transcript_id "KOE98133"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 69139 70917 . + . gene_id "W7K_16195"; transcript_id "KOE98133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98133-1"; +contig15 ena CDS 69139 70914 . + 0 gene_id "W7K_16195"; transcript_id "KOE98133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98133"; +contig15 ena start_codon 69139 69141 . + 0 gene_id "W7K_16195"; transcript_id "KOE98133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 70915 70917 . + 0 gene_id "W7K_16195"; transcript_id "KOE98133"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 70970 71440 . - . gene_id "W7K_16200"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 70970 71440 . - . gene_id "W7K_16200"; transcript_id "KOE98134"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 70970 71440 . - . gene_id "W7K_16200"; transcript_id "KOE98134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98134-1"; +contig15 ena CDS 70973 71440 . - 0 gene_id "W7K_16200"; transcript_id "KOE98134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98134"; +contig15 ena start_codon 71438 71440 . - 0 gene_id "W7K_16200"; transcript_id "KOE98134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 70970 70972 . - 0 gene_id "W7K_16200"; transcript_id "KOE98134"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 71437 71988 . - . gene_id "W7K_16205"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 71437 71988 . - . gene_id "W7K_16205"; transcript_id "KOE98135"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 71437 71988 . - . gene_id "W7K_16205"; transcript_id "KOE98135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98135-1"; +contig15 ena CDS 71440 71988 . - 0 gene_id "W7K_16205"; transcript_id "KOE98135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98135"; +contig15 ena start_codon 71986 71988 . - 0 gene_id "W7K_16205"; transcript_id "KOE98135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 71437 71439 . - 0 gene_id "W7K_16205"; transcript_id "KOE98135"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 72047 72736 . - . gene_id "W7K_16210"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 72047 72736 . - . gene_id "W7K_16210"; transcript_id "KOE98136"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 72047 72736 . - . gene_id "W7K_16210"; transcript_id "KOE98136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98136-1"; +contig15 ena CDS 72050 72736 . - 0 gene_id "W7K_16210"; transcript_id "KOE98136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98136"; +contig15 ena start_codon 72734 72736 . - 0 gene_id "W7K_16210"; transcript_id "KOE98136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 72047 72049 . - 0 gene_id "W7K_16210"; transcript_id "KOE98136"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 72832 74001 . - . gene_id "W7K_16215"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 72832 74001 . - . gene_id "W7K_16215"; transcript_id "KOE98137"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 72832 74001 . - . gene_id "W7K_16215"; transcript_id "KOE98137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98137-1"; +contig15 ena CDS 72835 74001 . - 0 gene_id "W7K_16215"; transcript_id "KOE98137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98137"; +contig15 ena start_codon 73999 74001 . - 0 gene_id "W7K_16215"; transcript_id "KOE98137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 72832 72834 . - 0 gene_id "W7K_16215"; transcript_id "KOE98137"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 74149 75474 . - . gene_id "W7K_16220"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 74149 75474 . - . gene_id "W7K_16220"; transcript_id "KOE98138"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 74149 75474 . - . gene_id "W7K_16220"; transcript_id "KOE98138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98138-1"; +contig15 ena CDS 74152 75474 . - 0 gene_id "W7K_16220"; transcript_id "KOE98138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98138"; +contig15 ena start_codon 75472 75474 . - 0 gene_id "W7K_16220"; transcript_id "KOE98138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 74149 74151 . - 0 gene_id "W7K_16220"; transcript_id "KOE98138"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 75678 76721 . + . gene_id "W7K_16225"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 75678 76721 . + . gene_id "W7K_16225"; transcript_id "KOE98139"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 75678 76721 . + . gene_id "W7K_16225"; transcript_id "KOE98139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98139-1"; +contig15 ena CDS 75678 76718 . + 0 gene_id "W7K_16225"; transcript_id "KOE98139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98139"; +contig15 ena start_codon 75678 75680 . + 0 gene_id "W7K_16225"; transcript_id "KOE98139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 76719 76721 . + 0 gene_id "W7K_16225"; transcript_id "KOE98139"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 76789 78012 . + . gene_id "W7K_16230"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 76789 78012 . + . gene_id "W7K_16230"; transcript_id "KOE98140"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 76789 78012 . + . gene_id "W7K_16230"; transcript_id "KOE98140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98140-1"; +contig15 ena CDS 76789 78009 . + 0 gene_id "W7K_16230"; transcript_id "KOE98140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98140"; +contig15 ena start_codon 76789 76791 . + 0 gene_id "W7K_16230"; transcript_id "KOE98140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 78010 78012 . + 0 gene_id "W7K_16230"; transcript_id "KOE98140"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 78030 78809 . + . gene_id "W7K_16235"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 78030 78809 . + . gene_id "W7K_16235"; transcript_id "KOE98141"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 78030 78809 . + . gene_id "W7K_16235"; transcript_id "KOE98141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98141-1"; +contig15 ena CDS 78030 78806 . + 0 gene_id "W7K_16235"; transcript_id "KOE98141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98141"; +contig15 ena start_codon 78030 78032 . + 0 gene_id "W7K_16235"; transcript_id "KOE98141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 78807 78809 . + 0 gene_id "W7K_16235"; transcript_id "KOE98141"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 78839 79618 . + . gene_id "W7K_16240"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 78839 79618 . + . gene_id "W7K_16240"; transcript_id "KOE98142"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 78839 79618 . + . gene_id "W7K_16240"; transcript_id "KOE98142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98142-1"; +contig15 ena CDS 78839 79615 . + 0 gene_id "W7K_16240"; transcript_id "KOE98142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98142"; +contig15 ena start_codon 78839 78841 . + 0 gene_id "W7K_16240"; transcript_id "KOE98142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 79616 79618 . + 0 gene_id "W7K_16240"; transcript_id "KOE98142"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 79631 80515 . + . gene_id "W7K_16245"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 79631 80515 . + . gene_id "W7K_16245"; transcript_id "KOE98143"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 79631 80515 . + . gene_id "W7K_16245"; transcript_id "KOE98143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98143-1"; +contig15 ena CDS 79631 80512 . + 0 gene_id "W7K_16245"; transcript_id "KOE98143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98143"; +contig15 ena start_codon 79631 79633 . + 0 gene_id "W7K_16245"; transcript_id "KOE98143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 80513 80515 . + 0 gene_id "W7K_16245"; transcript_id "KOE98143"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 80629 81273 . - . gene_id "W7K_16250"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 80629 81273 . - . gene_id "W7K_16250"; transcript_id "KOE98220"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 80629 81273 . - . gene_id "W7K_16250"; transcript_id "KOE98220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98220-1"; +contig15 ena CDS 80632 81273 . - 0 gene_id "W7K_16250"; transcript_id "KOE98220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98220"; +contig15 ena start_codon 81271 81273 . - 0 gene_id "W7K_16250"; transcript_id "KOE98220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 80629 80631 . - 0 gene_id "W7K_16250"; transcript_id "KOE98220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 81258 82220 . - . gene_id "W7K_16255"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 81258 82220 . - . gene_id "W7K_16255"; transcript_id "KOE98144"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 81258 82220 . - . gene_id "W7K_16255"; transcript_id "KOE98144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98144-1"; +contig15 ena CDS 81261 82220 . - 0 gene_id "W7K_16255"; transcript_id "KOE98144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98144"; +contig15 ena start_codon 82218 82220 . - 0 gene_id "W7K_16255"; transcript_id "KOE98144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 81258 81260 . - 0 gene_id "W7K_16255"; transcript_id "KOE98144"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 82380 82865 . + . gene_id "W7K_16260"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 82380 82865 . + . gene_id "W7K_16260"; transcript_id "KOE98145"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 82380 82865 . + . gene_id "W7K_16260"; transcript_id "KOE98145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98145-1"; +contig15 ena CDS 82380 82862 . + 0 gene_id "W7K_16260"; transcript_id "KOE98145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98145"; +contig15 ena start_codon 82380 82382 . + 0 gene_id "W7K_16260"; transcript_id "KOE98145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 82863 82865 . + 0 gene_id "W7K_16260"; transcript_id "KOE98145"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 83413 85302 . + . gene_id "W7K_16265"; gene_name "gidA"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 83413 85302 . + . gene_id "W7K_16265"; transcript_id "KOE98146"; gene_name "gidA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gidA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 83413 85302 . + . gene_id "W7K_16265"; transcript_id "KOE98146"; exon_number "1"; gene_name "gidA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gidA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98146-1"; +contig15 ena CDS 83413 85299 . + 0 gene_id "W7K_16265"; transcript_id "KOE98146"; exon_number "1"; gene_name "gidA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gidA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98146"; +contig15 ena start_codon 83413 83415 . + 0 gene_id "W7K_16265"; transcript_id "KOE98146"; exon_number "1"; gene_name "gidA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gidA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 85300 85302 . + 0 gene_id "W7K_16265"; transcript_id "KOE98146"; exon_number "1"; gene_name "gidA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gidA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 85453 86868 . - . gene_id "W7K_16270"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 85453 86868 . - . gene_id "W7K_16270"; transcript_id "KOE98147"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 85453 86868 . - . gene_id "W7K_16270"; transcript_id "KOE98147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98147-1"; +contig15 ena CDS 85456 86868 . - 0 gene_id "W7K_16270"; transcript_id "KOE98147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98147"; +contig15 ena start_codon 86866 86868 . - 0 gene_id "W7K_16270"; transcript_id "KOE98147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 85453 85455 . - 0 gene_id "W7K_16270"; transcript_id "KOE98147"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 86865 90014 . - . gene_id "W7K_16275"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 86865 90014 . - . gene_id "W7K_16275"; transcript_id "KOE98148"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 86865 90014 . - . gene_id "W7K_16275"; transcript_id "KOE98148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98148-1"; +contig15 ena CDS 86868 90014 . - 0 gene_id "W7K_16275"; transcript_id "KOE98148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98148"; +contig15 ena start_codon 90012 90014 . - 0 gene_id "W7K_16275"; transcript_id "KOE98148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 86865 86867 . - 0 gene_id "W7K_16275"; transcript_id "KOE98148"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 90027 91223 . - . gene_id "W7K_16280"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 90027 91223 . - . gene_id "W7K_16280"; transcript_id "KOE98149"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 90027 91223 . - . gene_id "W7K_16280"; transcript_id "KOE98149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98149-1"; +contig15 ena CDS 90030 91223 . - 0 gene_id "W7K_16280"; transcript_id "KOE98149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98149"; +contig15 ena start_codon 91221 91223 . - 0 gene_id "W7K_16280"; transcript_id "KOE98149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 90027 90029 . - 0 gene_id "W7K_16280"; transcript_id "KOE98149"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 91341 92744 . + . gene_id "W7K_16285"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 91341 92744 . + . gene_id "W7K_16285"; transcript_id "KOE98150"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 91341 92744 . + . gene_id "W7K_16285"; transcript_id "KOE98150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98150-1"; +contig15 ena CDS 91341 92741 . + 0 gene_id "W7K_16285"; transcript_id "KOE98150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98150"; +contig15 ena start_codon 91341 91343 . + 0 gene_id "W7K_16285"; transcript_id "KOE98150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 92742 92744 . + 0 gene_id "W7K_16285"; transcript_id "KOE98150"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 92741 93430 . + . gene_id "W7K_16290"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 92741 93430 . + . gene_id "W7K_16290"; transcript_id "KOE98151"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 92741 93430 . + . gene_id "W7K_16290"; transcript_id "KOE98151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98151-1"; +contig15 ena CDS 92741 93427 . + 0 gene_id "W7K_16290"; transcript_id "KOE98151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98151"; +contig15 ena start_codon 92741 92743 . + 0 gene_id "W7K_16290"; transcript_id "KOE98151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 93428 93430 . + 0 gene_id "W7K_16290"; transcript_id "KOE98151"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 93580 94401 . + . gene_id "W7K_16295"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 93580 94401 . + . gene_id "W7K_16295"; transcript_id "KOE98152"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 93580 94401 . + . gene_id "W7K_16295"; transcript_id "KOE98152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98152-1"; +contig15 ena CDS 93580 94398 . + 0 gene_id "W7K_16295"; transcript_id "KOE98152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98152"; +contig15 ena start_codon 93580 93582 . + 0 gene_id "W7K_16295"; transcript_id "KOE98152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 94399 94401 . + 0 gene_id "W7K_16295"; transcript_id "KOE98152"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 94566 95096 . + . gene_id "W7K_16300"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 94566 95096 . + . gene_id "W7K_16300"; transcript_id "KOE98153"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 94566 95096 . + . gene_id "W7K_16300"; transcript_id "KOE98153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98153-1"; +contig15 ena CDS 94566 95093 . + 0 gene_id "W7K_16300"; transcript_id "KOE98153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98153"; +contig15 ena start_codon 94566 94568 . + 0 gene_id "W7K_16300"; transcript_id "KOE98153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 95094 95096 . + 0 gene_id "W7K_16300"; transcript_id "KOE98153"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 95220 95909 . + . gene_id "W7K_16305"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 95220 95909 . + . gene_id "W7K_16305"; transcript_id "KOE98154"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 95220 95909 . + . gene_id "W7K_16305"; transcript_id "KOE98154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98154-1"; +contig15 ena CDS 95220 95906 . + 0 gene_id "W7K_16305"; transcript_id "KOE98154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98154"; +contig15 ena start_codon 95220 95222 . + 0 gene_id "W7K_16305"; transcript_id "KOE98154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 95907 95909 . + 0 gene_id "W7K_16305"; transcript_id "KOE98154"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 95906 96898 . + . gene_id "W7K_16310"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 95906 96898 . + . gene_id "W7K_16310"; transcript_id "KOE98155"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 95906 96898 . + . gene_id "W7K_16310"; transcript_id "KOE98155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98155-1"; +contig15 ena CDS 95906 96895 . + 0 gene_id "W7K_16310"; transcript_id "KOE98155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98155"; +contig15 ena start_codon 95906 95908 . + 0 gene_id "W7K_16310"; transcript_id "KOE98155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 96896 96898 . + 0 gene_id "W7K_16310"; transcript_id "KOE98155"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 96888 98510 . + . gene_id "W7K_16315"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 96888 98510 . + . gene_id "W7K_16315"; transcript_id "KOE98156"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 96888 98510 . + . gene_id "W7K_16315"; transcript_id "KOE98156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98156-1"; +contig15 ena CDS 96888 98507 . + 0 gene_id "W7K_16315"; transcript_id "KOE98156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98156"; +contig15 ena start_codon 96888 96890 . + 0 gene_id "W7K_16315"; transcript_id "KOE98156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 98508 98510 . + 0 gene_id "W7K_16315"; transcript_id "KOE98156"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 98507 99691 . + . gene_id "W7K_16320"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 98507 99691 . + . gene_id "W7K_16320"; transcript_id "KOE98157"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 98507 99691 . + . gene_id "W7K_16320"; transcript_id "KOE98157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98157-1"; +contig15 ena CDS 98507 99688 . + 0 gene_id "W7K_16320"; transcript_id "KOE98157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98157"; +contig15 ena start_codon 98507 98509 . + 0 gene_id "W7K_16320"; transcript_id "KOE98157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 99689 99691 . + 0 gene_id "W7K_16320"; transcript_id "KOE98157"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 99688 100674 . + . gene_id "W7K_16325"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 99688 100674 . + . gene_id "W7K_16325"; transcript_id "KOE98158"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 99688 100674 . + . gene_id "W7K_16325"; transcript_id "KOE98158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98158-1"; +contig15 ena CDS 99688 100671 . + 0 gene_id "W7K_16325"; transcript_id "KOE98158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98158"; +contig15 ena start_codon 99688 99690 . + 0 gene_id "W7K_16325"; transcript_id "KOE98158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 100672 100674 . + 0 gene_id "W7K_16325"; transcript_id "KOE98158"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 100671 101969 . + . gene_id "W7K_16330"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 100671 101969 . + . gene_id "W7K_16330"; transcript_id "KOE98159"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 100671 101969 . + . gene_id "W7K_16330"; transcript_id "KOE98159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98159-1"; +contig15 ena CDS 100671 101966 . + 0 gene_id "W7K_16330"; transcript_id "KOE98159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98159"; +contig15 ena start_codon 100671 100673 . + 0 gene_id "W7K_16330"; transcript_id "KOE98159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 101967 101969 . + 0 gene_id "W7K_16330"; transcript_id "KOE98159"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 102074 102694 . - . gene_id "W7K_16335"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 102074 102694 . - . gene_id "W7K_16335"; transcript_id "KOE98160"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 102074 102694 . - . gene_id "W7K_16335"; transcript_id "KOE98160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98160-1"; +contig15 ena CDS 102077 102694 . - 0 gene_id "W7K_16335"; transcript_id "KOE98160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98160"; +contig15 ena start_codon 102692 102694 . - 0 gene_id "W7K_16335"; transcript_id "KOE98160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 102074 102076 . - 0 gene_id "W7K_16335"; transcript_id "KOE98160"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 102694 103872 . - . gene_id "W7K_16340"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 102694 103872 . - . gene_id "W7K_16340"; transcript_id "KOE98161"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 102694 103872 . - . gene_id "W7K_16340"; transcript_id "KOE98161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98161-1"; +contig15 ena CDS 102697 103872 . - 0 gene_id "W7K_16340"; transcript_id "KOE98161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98161"; +contig15 ena start_codon 103870 103872 . - 0 gene_id "W7K_16340"; transcript_id "KOE98161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 102694 102696 . - 0 gene_id "W7K_16340"; transcript_id "KOE98161"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 103880 104452 . - . gene_id "W7K_16345"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 103880 104452 . - . gene_id "W7K_16345"; transcript_id "KOE98162"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 103880 104452 . - . gene_id "W7K_16345"; transcript_id "KOE98162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98162-1"; +contig15 ena CDS 103883 104452 . - 0 gene_id "W7K_16345"; transcript_id "KOE98162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98162"; +contig15 ena start_codon 104450 104452 . - 0 gene_id "W7K_16345"; transcript_id "KOE98162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 103880 103882 . - 0 gene_id "W7K_16345"; transcript_id "KOE98162"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 104545 104856 . - . gene_id "W7K_16350"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 104545 104856 . - . gene_id "W7K_16350"; transcript_id "KOE98163"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 104545 104856 . - . gene_id "W7K_16350"; transcript_id "KOE98163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98163-1"; +contig15 ena CDS 104548 104856 . - 0 gene_id "W7K_16350"; transcript_id "KOE98163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98163"; +contig15 ena start_codon 104854 104856 . - 0 gene_id "W7K_16350"; transcript_id "KOE98163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 104545 104547 . - 0 gene_id "W7K_16350"; transcript_id "KOE98163"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 104919 106757 . + . gene_id "W7K_16355"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 104919 106757 . + . gene_id "W7K_16355"; transcript_id "KOE98164"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 104919 106757 . + . gene_id "W7K_16355"; transcript_id "KOE98164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98164-1"; +contig15 ena CDS 104919 106754 . + 0 gene_id "W7K_16355"; transcript_id "KOE98164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98164"; +contig15 ena start_codon 104919 104921 . + 0 gene_id "W7K_16355"; transcript_id "KOE98164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 106755 106757 . + 0 gene_id "W7K_16355"; transcript_id "KOE98164"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 106896 107507 . + . gene_id "W7K_16360"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 106896 107507 . + . gene_id "W7K_16360"; transcript_id "KOE98221"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 106896 107507 . + . gene_id "W7K_16360"; transcript_id "KOE98221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98221-1"; +contig15 ena CDS 106896 107504 . + 0 gene_id "W7K_16360"; transcript_id "KOE98221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98221"; +contig15 ena start_codon 106896 106898 . + 0 gene_id "W7K_16360"; transcript_id "KOE98221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 107505 107507 . + 0 gene_id "W7K_16360"; transcript_id "KOE98221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 107547 109649 . - . gene_id "W7K_16365"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 107547 109649 . - . gene_id "W7K_16365"; transcript_id "KOE98165"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 107547 109649 . - . gene_id "W7K_16365"; transcript_id "KOE98165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98165-1"; +contig15 ena CDS 107550 109649 . - 0 gene_id "W7K_16365"; transcript_id "KOE98165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98165"; +contig15 ena start_codon 109647 109649 . - 0 gene_id "W7K_16365"; transcript_id "KOE98165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 107547 107549 . - 0 gene_id "W7K_16365"; transcript_id "KOE98165"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 109817 110170 . - . gene_id "W7K_16370"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 109817 110170 . - . gene_id "W7K_16370"; transcript_id "KOE98166"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 109817 110170 . - . gene_id "W7K_16370"; transcript_id "KOE98166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98166-1"; +contig15 ena CDS 109820 110170 . - 0 gene_id "W7K_16370"; transcript_id "KOE98166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98166"; +contig15 ena start_codon 110168 110170 . - 0 gene_id "W7K_16370"; transcript_id "KOE98166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 109817 109819 . - 0 gene_id "W7K_16370"; transcript_id "KOE98166"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 110174 111019 . - . gene_id "W7K_16375"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 110174 111019 . - . gene_id "W7K_16375"; transcript_id "KOE98167"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 110174 111019 . - . gene_id "W7K_16375"; transcript_id "KOE98167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98167-1"; +contig15 ena CDS 110177 111019 . - 0 gene_id "W7K_16375"; transcript_id "KOE98167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98167"; +contig15 ena start_codon 111017 111019 . - 0 gene_id "W7K_16375"; transcript_id "KOE98167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 110174 110176 . - 0 gene_id "W7K_16375"; transcript_id "KOE98167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 111068 111940 . + . gene_id "W7K_16380"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 111068 111940 . + . gene_id "W7K_16380"; transcript_id "KOE98168"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 111068 111940 . + . gene_id "W7K_16380"; transcript_id "KOE98168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98168-1"; +contig15 ena CDS 111068 111937 . + 0 gene_id "W7K_16380"; transcript_id "KOE98168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98168"; +contig15 ena start_codon 111068 111070 . + 0 gene_id "W7K_16380"; transcript_id "KOE98168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 111938 111940 . + 0 gene_id "W7K_16380"; transcript_id "KOE98168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 111996 112265 . - . gene_id "W7K_16385"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 111996 112265 . - . gene_id "W7K_16385"; transcript_id "KOE98169"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 111996 112265 . - . gene_id "W7K_16385"; transcript_id "KOE98169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98169-1"; +contig15 ena CDS 111999 112265 . - 0 gene_id "W7K_16385"; transcript_id "KOE98169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98169"; +contig15 ena start_codon 112263 112265 . - 0 gene_id "W7K_16385"; transcript_id "KOE98169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 111996 111998 . - 0 gene_id "W7K_16385"; transcript_id "KOE98169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 112298 113287 . - . gene_id "W7K_16390"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 112298 113287 . - . gene_id "W7K_16390"; transcript_id "KOE98170"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 112298 113287 . - . gene_id "W7K_16390"; transcript_id "KOE98170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98170-1"; +contig15 ena CDS 112301 113287 . - 0 gene_id "W7K_16390"; transcript_id "KOE98170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98170"; +contig15 ena start_codon 113285 113287 . - 0 gene_id "W7K_16390"; transcript_id "KOE98170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 112298 112300 . - 0 gene_id "W7K_16390"; transcript_id "KOE98170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 113307 114224 . - . gene_id "W7K_16395"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 113307 114224 . - . gene_id "W7K_16395"; transcript_id "KOE98171"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 113307 114224 . - . gene_id "W7K_16395"; transcript_id "KOE98171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98171-1"; +contig15 ena CDS 113310 114224 . - 0 gene_id "W7K_16395"; transcript_id "KOE98171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98171"; +contig15 ena start_codon 114222 114224 . - 0 gene_id "W7K_16395"; transcript_id "KOE98171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 113307 113309 . - 0 gene_id "W7K_16395"; transcript_id "KOE98171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 114346 114594 . - . gene_id "W7K_16400"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 114346 114594 . - . gene_id "W7K_16400"; transcript_id "KOE98172"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 114346 114594 . - . gene_id "W7K_16400"; transcript_id "KOE98172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98172-1"; +contig15 ena CDS 114349 114594 . - 0 gene_id "W7K_16400"; transcript_id "KOE98172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98172"; +contig15 ena start_codon 114592 114594 . - 0 gene_id "W7K_16400"; transcript_id "KOE98172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 114346 114348 . - 0 gene_id "W7K_16400"; transcript_id "KOE98172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 114779 115237 . + . gene_id "W7K_16405"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 114779 115237 . + . gene_id "W7K_16405"; transcript_id "KOE98173"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 114779 115237 . + . gene_id "W7K_16405"; transcript_id "KOE98173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98173-1"; +contig15 ena CDS 114779 115234 . + 0 gene_id "W7K_16405"; transcript_id "KOE98173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98173"; +contig15 ena start_codon 114779 114781 . + 0 gene_id "W7K_16405"; transcript_id "KOE98173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 115235 115237 . + 0 gene_id "W7K_16405"; transcript_id "KOE98173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 115322 117124 . - . gene_id "W7K_16410"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 115322 117124 . - . gene_id "W7K_16410"; transcript_id "KOE98174"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 115322 117124 . - . gene_id "W7K_16410"; transcript_id "KOE98174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98174-1"; +contig15 ena CDS 115325 117124 . - 0 gene_id "W7K_16410"; transcript_id "KOE98174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98174"; +contig15 ena start_codon 117122 117124 . - 0 gene_id "W7K_16410"; transcript_id "KOE98174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 115322 115324 . - 0 gene_id "W7K_16410"; transcript_id "KOE98174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 117192 117707 . - . gene_id "W7K_16415"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 117192 117707 . - . gene_id "W7K_16415"; transcript_id "KOE98175"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 117192 117707 . - . gene_id "W7K_16415"; transcript_id "KOE98175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98175-1"; +contig15 ena CDS 117195 117707 . - 0 gene_id "W7K_16415"; transcript_id "KOE98175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98175"; +contig15 ena start_codon 117705 117707 . - 0 gene_id "W7K_16415"; transcript_id "KOE98175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 117192 117194 . - 0 gene_id "W7K_16415"; transcript_id "KOE98175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 117733 119958 . - . gene_id "W7K_16420"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 117733 119958 . - . gene_id "W7K_16420"; transcript_id "KOE98176"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 117733 119958 . - . gene_id "W7K_16420"; transcript_id "KOE98176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98176-1"; +contig15 ena CDS 117736 119958 . - 0 gene_id "W7K_16420"; transcript_id "KOE98176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98176"; +contig15 ena start_codon 119956 119958 . - 0 gene_id "W7K_16420"; transcript_id "KOE98176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 117733 117735 . - 0 gene_id "W7K_16420"; transcript_id "KOE98176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 120113 120802 . - . gene_id "W7K_16425"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 120113 120802 . - . gene_id "W7K_16425"; transcript_id "KOE98177"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 120113 120802 . - . gene_id "W7K_16425"; transcript_id "KOE98177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98177-1"; +contig15 ena CDS 120116 120802 . - 0 gene_id "W7K_16425"; transcript_id "KOE98177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98177"; +contig15 ena start_codon 120800 120802 . - 0 gene_id "W7K_16425"; transcript_id "KOE98177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 120113 120115 . - 0 gene_id "W7K_16425"; transcript_id "KOE98177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 120913 121554 . + . gene_id "W7K_16430"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 120913 121554 . + . gene_id "W7K_16430"; transcript_id "KOE98178"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 120913 121554 . + . gene_id "W7K_16430"; transcript_id "KOE98178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98178-1"; +contig15 ena CDS 120913 121551 . + 0 gene_id "W7K_16430"; transcript_id "KOE98178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98178"; +contig15 ena start_codon 120913 120915 . + 0 gene_id "W7K_16430"; transcript_id "KOE98178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 121552 121554 . + 0 gene_id "W7K_16430"; transcript_id "KOE98178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 121755 122756 . + . gene_id "W7K_16435"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 121755 122756 . + . gene_id "W7K_16435"; transcript_id "KOE98179"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 121755 122756 . + . gene_id "W7K_16435"; transcript_id "KOE98179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98179-1"; +contig15 ena CDS 121755 122753 . + 0 gene_id "W7K_16435"; transcript_id "KOE98179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98179"; +contig15 ena start_codon 121755 121757 . + 0 gene_id "W7K_16435"; transcript_id "KOE98179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 122754 122756 . + 0 gene_id "W7K_16435"; transcript_id "KOE98179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 122841 123095 . - . gene_id "W7K_16440"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 122841 123095 . - . gene_id "W7K_16440"; transcript_id "KOE98180"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 122841 123095 . - . gene_id "W7K_16440"; transcript_id "KOE98180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98180-1"; +contig15 ena CDS 122844 123095 . - 0 gene_id "W7K_16440"; transcript_id "KOE98180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98180"; +contig15 ena start_codon 123093 123095 . - 0 gene_id "W7K_16440"; transcript_id "KOE98180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 122841 122843 . - 0 gene_id "W7K_16440"; transcript_id "KOE98180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 123173 123958 . + . gene_id "W7K_16445"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 123173 123958 . + . gene_id "W7K_16445"; transcript_id "KOE98181"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 123173 123958 . + . gene_id "W7K_16445"; transcript_id "KOE98181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98181-1"; +contig15 ena CDS 123173 123955 . + 0 gene_id "W7K_16445"; transcript_id "KOE98181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98181"; +contig15 ena start_codon 123173 123175 . + 0 gene_id "W7K_16445"; transcript_id "KOE98181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 123956 123958 . + 0 gene_id "W7K_16445"; transcript_id "KOE98181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 124026 124454 . + . gene_id "W7K_16450"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 124026 124454 . + . gene_id "W7K_16450"; transcript_id "KOE98182"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 124026 124454 . + . gene_id "W7K_16450"; transcript_id "KOE98182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98182-1"; +contig15 ena CDS 124026 124451 . + 0 gene_id "W7K_16450"; transcript_id "KOE98182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98182"; +contig15 ena start_codon 124026 124028 . + 0 gene_id "W7K_16450"; transcript_id "KOE98182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 124452 124454 . + 0 gene_id "W7K_16450"; transcript_id "KOE98182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 124527 125711 . - . gene_id "W7K_16455"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 124527 125711 . - . gene_id "W7K_16455"; transcript_id "KOE98183"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 124527 125711 . - . gene_id "W7K_16455"; transcript_id "KOE98183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98183-1"; +contig15 ena CDS 124530 125711 . - 0 gene_id "W7K_16455"; transcript_id "KOE98183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98183"; +contig15 ena start_codon 125709 125711 . - 0 gene_id "W7K_16455"; transcript_id "KOE98183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 124527 124529 . - 0 gene_id "W7K_16455"; transcript_id "KOE98183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 125708 126454 . - . gene_id "W7K_16460"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 125708 126454 . - . gene_id "W7K_16460"; transcript_id "KOE98184"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 125708 126454 . - . gene_id "W7K_16460"; transcript_id "KOE98184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98184-1"; +contig15 ena CDS 125711 126454 . - 0 gene_id "W7K_16460"; transcript_id "KOE98184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98184"; +contig15 ena start_codon 126452 126454 . - 0 gene_id "W7K_16460"; transcript_id "KOE98184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 125708 125710 . - 0 gene_id "W7K_16460"; transcript_id "KOE98184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 126451 127977 . - . gene_id "W7K_16465"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 126451 127977 . - . gene_id "W7K_16465"; transcript_id "KOE98185"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 126451 127977 . - . gene_id "W7K_16465"; transcript_id "KOE98185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98185-1"; +contig15 ena CDS 126454 127977 . - 0 gene_id "W7K_16465"; transcript_id "KOE98185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98185"; +contig15 ena start_codon 127975 127977 . - 0 gene_id "W7K_16465"; transcript_id "KOE98185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 126451 126453 . - 0 gene_id "W7K_16465"; transcript_id "KOE98185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 128046 129248 . - . gene_id "W7K_16470"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 128046 129248 . - . gene_id "W7K_16470"; transcript_id "KOE98186"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 128046 129248 . - . gene_id "W7K_16470"; transcript_id "KOE98186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98186-1"; +contig15 ena CDS 128049 129248 . - 0 gene_id "W7K_16470"; transcript_id "KOE98186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98186"; +contig15 ena start_codon 129246 129248 . - 0 gene_id "W7K_16470"; transcript_id "KOE98186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 128046 128048 . - 0 gene_id "W7K_16470"; transcript_id "KOE98186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 129403 129888 . + . gene_id "W7K_16475"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 129403 129888 . + . gene_id "W7K_16475"; transcript_id "KOE98187"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 129403 129888 . + . gene_id "W7K_16475"; transcript_id "KOE98187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98187-1"; +contig15 ena CDS 129403 129885 . + 0 gene_id "W7K_16475"; transcript_id "KOE98187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98187"; +contig15 ena start_codon 129403 129405 . + 0 gene_id "W7K_16475"; transcript_id "KOE98187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 129886 129888 . + 0 gene_id "W7K_16475"; transcript_id "KOE98187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 130122 131291 . + . gene_id "W7K_16480"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 130122 131291 . + . gene_id "W7K_16480"; transcript_id "KOE98188"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 130122 131291 . + . gene_id "W7K_16480"; transcript_id "KOE98188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98188-1"; +contig15 ena CDS 130122 131288 . + 0 gene_id "W7K_16480"; transcript_id "KOE98188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98188"; +contig15 ena start_codon 130122 130124 . + 0 gene_id "W7K_16480"; transcript_id "KOE98188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 131289 131291 . + 0 gene_id "W7K_16480"; transcript_id "KOE98188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 131473 132633 . + . gene_id "W7K_16485"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 131473 132633 . + . gene_id "W7K_16485"; transcript_id "KOE98189"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 131473 132633 . + . gene_id "W7K_16485"; transcript_id "KOE98189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98189-1"; +contig15 ena CDS 131473 132630 . + 0 gene_id "W7K_16485"; transcript_id "KOE98189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98189"; +contig15 ena start_codon 131473 131475 . + 0 gene_id "W7K_16485"; transcript_id "KOE98189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 132631 132633 . + 0 gene_id "W7K_16485"; transcript_id "KOE98189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 132708 133418 . - . gene_id "W7K_16490"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 132708 133418 . - . gene_id "W7K_16490"; transcript_id "KOE98190"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 132708 133418 . - . gene_id "W7K_16490"; transcript_id "KOE98190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98190-1"; +contig15 ena CDS 132711 133418 . - 0 gene_id "W7K_16490"; transcript_id "KOE98190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98190"; +contig15 ena start_codon 133416 133418 . - 0 gene_id "W7K_16490"; transcript_id "KOE98190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 132708 132710 . - 0 gene_id "W7K_16490"; transcript_id "KOE98190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 133542 134510 . + . gene_id "W7K_16495"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 133542 134510 . + . gene_id "W7K_16495"; transcript_id "KOE98191"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 133542 134510 . + . gene_id "W7K_16495"; transcript_id "KOE98191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98191-1"; +contig15 ena CDS 133542 134507 . + 0 gene_id "W7K_16495"; transcript_id "KOE98191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98191"; +contig15 ena start_codon 133542 133544 . + 0 gene_id "W7K_16495"; transcript_id "KOE98191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 134508 134510 . + 0 gene_id "W7K_16495"; transcript_id "KOE98191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 134507 135298 . + . gene_id "W7K_16500"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 134507 135298 . + . gene_id "W7K_16500"; transcript_id "KOE98192"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 134507 135298 . + . gene_id "W7K_16500"; transcript_id "KOE98192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98192-1"; +contig15 ena CDS 134507 135295 . + 0 gene_id "W7K_16500"; transcript_id "KOE98192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98192"; +contig15 ena start_codon 134507 134509 . + 0 gene_id "W7K_16500"; transcript_id "KOE98192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 135296 135298 . + 0 gene_id "W7K_16500"; transcript_id "KOE98192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 135639 136406 . + . gene_id "W7K_16505"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 135639 136406 . + . gene_id "W7K_16505"; transcript_id "KOE98193"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 135639 136406 . + . gene_id "W7K_16505"; transcript_id "KOE98193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98193-1"; +contig15 ena CDS 135639 136403 . + 0 gene_id "W7K_16505"; transcript_id "KOE98193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98193"; +contig15 ena start_codon 135639 135641 . + 0 gene_id "W7K_16505"; transcript_id "KOE98193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 136404 136406 . + 0 gene_id "W7K_16505"; transcript_id "KOE98193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 136594 137532 . + . gene_id "W7K_16510"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 136594 137532 . + . gene_id "W7K_16510"; transcript_id "KOE98194"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 136594 137532 . + . gene_id "W7K_16510"; transcript_id "KOE98194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98194-1"; +contig15 ena CDS 136594 137529 . + 0 gene_id "W7K_16510"; transcript_id "KOE98194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98194"; +contig15 ena start_codon 136594 136596 . + 0 gene_id "W7K_16510"; transcript_id "KOE98194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 137530 137532 . + 0 gene_id "W7K_16510"; transcript_id "KOE98194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 137529 138455 . + . gene_id "W7K_16515"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 137529 138455 . + . gene_id "W7K_16515"; transcript_id "KOE98195"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 137529 138455 . + . gene_id "W7K_16515"; transcript_id "KOE98195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98195-1"; +contig15 ena CDS 137529 138452 . + 0 gene_id "W7K_16515"; transcript_id "KOE98195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98195"; +contig15 ena start_codon 137529 137531 . + 0 gene_id "W7K_16515"; transcript_id "KOE98195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 138453 138455 . + 0 gene_id "W7K_16515"; transcript_id "KOE98195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 138534 139331 . - . gene_id "W7K_16520"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 138534 139331 . - . gene_id "W7K_16520"; transcript_id "KOE98222"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 138534 139331 . - . gene_id "W7K_16520"; transcript_id "KOE98222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98222-1"; +contig15 ena CDS 138537 139331 . - 0 gene_id "W7K_16520"; transcript_id "KOE98222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98222"; +contig15 ena start_codon 139329 139331 . - 0 gene_id "W7K_16520"; transcript_id "KOE98222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 138534 138536 . - 0 gene_id "W7K_16520"; transcript_id "KOE98222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 139399 141903 . + . gene_id "W7K_16525"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 139399 141903 . + . gene_id "W7K_16525"; transcript_id "KOE98196"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 139399 141903 . + . gene_id "W7K_16525"; transcript_id "KOE98196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98196-1"; +contig15 ena CDS 139399 141900 . + 0 gene_id "W7K_16525"; transcript_id "KOE98196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98196"; +contig15 ena start_codon 139399 139401 . + 0 gene_id "W7K_16525"; transcript_id "KOE98196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 141901 141903 . + 0 gene_id "W7K_16525"; transcript_id "KOE98196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 142048 142422 . + . gene_id "W7K_16530"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 142048 142422 . + . gene_id "W7K_16530"; transcript_id "KOE98197"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 142048 142422 . + . gene_id "W7K_16530"; transcript_id "KOE98197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98197-1"; +contig15 ena CDS 142048 142419 . + 0 gene_id "W7K_16530"; transcript_id "KOE98197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98197"; +contig15 ena start_codon 142048 142050 . + 0 gene_id "W7K_16530"; transcript_id "KOE98197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 142420 142422 . + 0 gene_id "W7K_16530"; transcript_id "KOE98197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 142483 143022 . - . gene_id "W7K_16535"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 142483 143022 . - . gene_id "W7K_16535"; transcript_id "KOE98198"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 142483 143022 . - . gene_id "W7K_16535"; transcript_id "KOE98198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98198-1"; +contig15 ena CDS 142486 143022 . - 0 gene_id "W7K_16535"; transcript_id "KOE98198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98198"; +contig15 ena start_codon 143020 143022 . - 0 gene_id "W7K_16535"; transcript_id "KOE98198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 142483 142485 . - 0 gene_id "W7K_16535"; transcript_id "KOE98198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 143111 143371 . - . gene_id "W7K_16540"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 143111 143371 . - . gene_id "W7K_16540"; transcript_id "KOE98199"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 143111 143371 . - . gene_id "W7K_16540"; transcript_id "KOE98199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98199-1"; +contig15 ena CDS 143114 143371 . - 0 gene_id "W7K_16540"; transcript_id "KOE98199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98199"; +contig15 ena start_codon 143369 143371 . - 0 gene_id "W7K_16540"; transcript_id "KOE98199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 143111 143113 . - 0 gene_id "W7K_16540"; transcript_id "KOE98199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 143475 144332 . - . gene_id "W7K_16545"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 143475 144332 . - . gene_id "W7K_16545"; transcript_id "KOE98200"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 143475 144332 . - . gene_id "W7K_16545"; transcript_id "KOE98200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98200-1"; +contig15 ena CDS 143478 144332 . - 0 gene_id "W7K_16545"; transcript_id "KOE98200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98200"; +contig15 ena start_codon 144330 144332 . - 0 gene_id "W7K_16545"; transcript_id "KOE98200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 143475 143477 . - 0 gene_id "W7K_16545"; transcript_id "KOE98200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 144502 145458 . + . gene_id "W7K_16550"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 144502 145458 . + . gene_id "W7K_16550"; transcript_id "KOE98201"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 144502 145458 . + . gene_id "W7K_16550"; transcript_id "KOE98201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98201-1"; +contig15 ena CDS 144502 145455 . + 0 gene_id "W7K_16550"; transcript_id "KOE98201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98201"; +contig15 ena start_codon 144502 144504 . + 0 gene_id "W7K_16550"; transcript_id "KOE98201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 145456 145458 . + 0 gene_id "W7K_16550"; transcript_id "KOE98201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 146104 146177 . + . gene_id "W7K_16555"; gene_source "ena"; gene_biotype "tRNA"; +contig15 ena transcript 146104 146177 . + . gene_id "W7K_16555"; transcript_id "EBT00051077616"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_16555"; transcript_source "ena"; transcript_biotype "tRNA"; +contig15 ena exon 146104 146177 . + . gene_id "W7K_16555"; transcript_id "EBT00051077616"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_16555"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_16555-1"; +contig15 ena gene 146535 147659 . + . gene_id "W7K_16560"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 146535 147659 . + . gene_id "W7K_16560"; transcript_id "KOE98202"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 146535 147659 . + . gene_id "W7K_16560"; transcript_id "KOE98202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98202-1"; +contig15 ena CDS 146535 147656 . + 0 gene_id "W7K_16560"; transcript_id "KOE98202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98202"; +contig15 ena start_codon 146535 146537 . + 0 gene_id "W7K_16560"; transcript_id "KOE98202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 147657 147659 . + 0 gene_id "W7K_16560"; transcript_id "KOE98202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 147717 148937 . + . gene_id "W7K_16565"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 147717 148937 . + . gene_id "W7K_16565"; transcript_id "KOE98203"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 147717 148937 . + . gene_id "W7K_16565"; transcript_id "KOE98203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98203-1"; +contig15 ena CDS 147717 148934 . + 0 gene_id "W7K_16565"; transcript_id "KOE98203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98203"; +contig15 ena start_codon 147717 147719 . + 0 gene_id "W7K_16565"; transcript_id "KOE98203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 148935 148937 . + 0 gene_id "W7K_16565"; transcript_id "KOE98203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 148979 149884 . - . gene_id "W7K_16570"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 148979 149884 . - . gene_id "W7K_16570"; transcript_id "KOE98204"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 148979 149884 . - . gene_id "W7K_16570"; transcript_id "KOE98204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98204-1"; +contig15 ena CDS 148982 149884 . - 0 gene_id "W7K_16570"; transcript_id "KOE98204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98204"; +contig15 ena start_codon 149882 149884 . - 0 gene_id "W7K_16570"; transcript_id "KOE98204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 148979 148981 . - 0 gene_id "W7K_16570"; transcript_id "KOE98204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 149874 150329 . - . gene_id "W7K_16575"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 149874 150329 . - . gene_id "W7K_16575"; transcript_id "KOE98205"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 149874 150329 . - . gene_id "W7K_16575"; transcript_id "KOE98205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98205-1"; +contig15 ena CDS 149877 150329 . - 0 gene_id "W7K_16575"; transcript_id "KOE98205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98205"; +contig15 ena start_codon 150327 150329 . - 0 gene_id "W7K_16575"; transcript_id "KOE98205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 149874 149876 . - 0 gene_id "W7K_16575"; transcript_id "KOE98205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 150513 152633 . + . gene_id "W7K_16580"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 150513 152633 . + . gene_id "W7K_16580"; transcript_id "KOE98206"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 150513 152633 . + . gene_id "W7K_16580"; transcript_id "KOE98206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98206-1"; +contig15 ena CDS 150513 152630 . + 0 gene_id "W7K_16580"; transcript_id "KOE98206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98206"; +contig15 ena start_codon 150513 150515 . + 0 gene_id "W7K_16580"; transcript_id "KOE98206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 152631 152633 . + 0 gene_id "W7K_16580"; transcript_id "KOE98206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 152725 153627 . - . gene_id "W7K_16585"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 152725 153627 . - . gene_id "W7K_16585"; transcript_id "KOE98207"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 152725 153627 . - . gene_id "W7K_16585"; transcript_id "KOE98207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98207-1"; +contig15 ena CDS 152728 153627 . - 0 gene_id "W7K_16585"; transcript_id "KOE98207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98207"; +contig15 ena start_codon 153625 153627 . - 0 gene_id "W7K_16585"; transcript_id "KOE98207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 152725 152727 . - 0 gene_id "W7K_16585"; transcript_id "KOE98207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 153733 154947 . + . gene_id "W7K_16590"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 153733 154947 . + . gene_id "W7K_16590"; transcript_id "KOE98208"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 153733 154947 . + . gene_id "W7K_16590"; transcript_id "KOE98208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98208-1"; +contig15 ena CDS 153733 154944 . + 0 gene_id "W7K_16590"; transcript_id "KOE98208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98208"; +contig15 ena start_codon 153733 153735 . + 0 gene_id "W7K_16590"; transcript_id "KOE98208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 154945 154947 . + 0 gene_id "W7K_16590"; transcript_id "KOE98208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 155033 155842 . + . gene_id "W7K_16595"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 155033 155842 . + . gene_id "W7K_16595"; transcript_id "KOE98209"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 155033 155842 . + . gene_id "W7K_16595"; transcript_id "KOE98209"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98209-1"; +contig15 ena CDS 155033 155839 . + 0 gene_id "W7K_16595"; transcript_id "KOE98209"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98209"; +contig15 ena start_codon 155033 155035 . + 0 gene_id "W7K_16595"; transcript_id "KOE98209"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 155840 155842 . + 0 gene_id "W7K_16595"; transcript_id "KOE98209"; exon_number "1"; gene_name "dkgB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dkgB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 155916 156617 . - . gene_id "W7K_16600"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 155916 156617 . - . gene_id "W7K_16600"; transcript_id "KOE98210"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 155916 156617 . - . gene_id "W7K_16600"; transcript_id "KOE98210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98210-1"; +contig15 ena CDS 155919 156617 . - 0 gene_id "W7K_16600"; transcript_id "KOE98210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98210"; +contig15 ena start_codon 156615 156617 . - 0 gene_id "W7K_16600"; transcript_id "KOE98210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 155916 155918 . - 0 gene_id "W7K_16600"; transcript_id "KOE98210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 156716 157096 . + . gene_id "W7K_16605"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 156716 157096 . + . gene_id "W7K_16605"; transcript_id "KOE98211"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 156716 157096 . + . gene_id "W7K_16605"; transcript_id "KOE98211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98211-1"; +contig15 ena CDS 156716 157093 . + 0 gene_id "W7K_16605"; transcript_id "KOE98211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98211"; +contig15 ena start_codon 156716 156718 . + 0 gene_id "W7K_16605"; transcript_id "KOE98211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 157094 157096 . + 0 gene_id "W7K_16605"; transcript_id "KOE98211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 157170 159890 . - . gene_id "W7K_16610"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 157170 159890 . - . gene_id "W7K_16610"; transcript_id "KOE98212"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 157170 159890 . - . gene_id "W7K_16610"; transcript_id "KOE98212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98212-1"; +contig15 ena CDS 157173 159890 . - 0 gene_id "W7K_16610"; transcript_id "KOE98212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98212"; +contig15 ena start_codon 159888 159890 . - 0 gene_id "W7K_16610"; transcript_id "KOE98212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 157170 157172 . - 0 gene_id "W7K_16610"; transcript_id "KOE98212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 160024 161394 . - . gene_id "W7K_16615"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 160024 161394 . - . gene_id "W7K_16615"; transcript_id "KOE98213"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 160024 161394 . - . gene_id "W7K_16615"; transcript_id "KOE98213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98213-1"; +contig15 ena CDS 160027 161394 . - 0 gene_id "W7K_16615"; transcript_id "KOE98213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98213"; +contig15 ena start_codon 161392 161394 . - 0 gene_id "W7K_16615"; transcript_id "KOE98213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 160024 160026 . - 0 gene_id "W7K_16615"; transcript_id "KOE98213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena gene 161741 163519 . + . gene_id "W7K_16620"; gene_source "ena"; gene_biotype "protein_coding"; +contig15 ena transcript 161741 163519 . + . gene_id "W7K_16620"; transcript_id "KOE98214"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena exon 161741 163519 . + . gene_id "W7K_16620"; transcript_id "KOE98214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98214-1"; +contig15 ena CDS 161741 163516 . + 0 gene_id "W7K_16620"; transcript_id "KOE98214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98214"; +contig15 ena start_codon 161741 161743 . + 0 gene_id "W7K_16620"; transcript_id "KOE98214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig15 ena stop_codon 163517 163519 . + 0 gene_id "W7K_16620"; transcript_id "KOE98214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 184 1977 . - . gene_id "W7K_19755"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 184 1977 . - . gene_id "W7K_19755"; transcript_id "KOE97349"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 184 1977 . - . gene_id "W7K_19755"; transcript_id "KOE97349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97349-1"; +contig07 ena CDS 187 1977 . - 0 gene_id "W7K_19755"; transcript_id "KOE97349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97349"; +contig07 ena start_codon 1975 1977 . - 0 gene_id "W7K_19755"; transcript_id "KOE97349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 184 186 . - 0 gene_id "W7K_19755"; transcript_id "KOE97349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 2593 3567 . + . gene_id "W7K_19760"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 2593 3567 . + . gene_id "W7K_19760"; transcript_id "KOE97350"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 2593 3567 . + . gene_id "W7K_19760"; transcript_id "KOE97350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97350-1"; +contig07 ena CDS 2593 3564 . + 0 gene_id "W7K_19760"; transcript_id "KOE97350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97350"; +contig07 ena start_codon 2593 2595 . + 0 gene_id "W7K_19760"; transcript_id "KOE97350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 3565 3567 . + 0 gene_id "W7K_19760"; transcript_id "KOE97350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 3604 5340 . + . gene_id "W7K_19765"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 3604 5340 . + . gene_id "W7K_19765"; transcript_id "KOE97351"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 3604 5340 . + . gene_id "W7K_19765"; transcript_id "KOE97351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97351-1"; +contig07 ena CDS 3604 5337 . + 0 gene_id "W7K_19765"; transcript_id "KOE97351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97351"; +contig07 ena start_codon 3604 3606 . + 0 gene_id "W7K_19765"; transcript_id "KOE97351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 5338 5340 . + 0 gene_id "W7K_19765"; transcript_id "KOE97351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 5324 5575 . + . gene_id "W7K_19770"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 5324 5575 . + . gene_id "W7K_19770"; transcript_id "KOE97352"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 5324 5575 . + . gene_id "W7K_19770"; transcript_id "KOE97352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97352-1"; +contig07 ena CDS 5324 5572 . + 0 gene_id "W7K_19770"; transcript_id "KOE97352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97352"; +contig07 ena start_codon 5324 5326 . + 0 gene_id "W7K_19770"; transcript_id "KOE97352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 5573 5575 . + 0 gene_id "W7K_19770"; transcript_id "KOE97352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 5672 6763 . + . gene_id "W7K_19775"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 5672 6763 . + . gene_id "W7K_19775"; transcript_id "KOE97353"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 5672 6763 . + . gene_id "W7K_19775"; transcript_id "KOE97353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97353-1"; +contig07 ena CDS 5672 6760 . + 0 gene_id "W7K_19775"; transcript_id "KOE97353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97353"; +contig07 ena start_codon 5672 5674 . + 0 gene_id "W7K_19775"; transcript_id "KOE97353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 6761 6763 . + 0 gene_id "W7K_19775"; transcript_id "KOE97353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 6760 8346 . + . gene_id "W7K_19780"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 6760 8346 . + . gene_id "W7K_19780"; transcript_id "KOE97354"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 6760 8346 . + . gene_id "W7K_19780"; transcript_id "KOE97354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97354-1"; +contig07 ena CDS 6760 8343 . + 0 gene_id "W7K_19780"; transcript_id "KOE97354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97354"; +contig07 ena start_codon 6760 6762 . + 0 gene_id "W7K_19780"; transcript_id "KOE97354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 8344 8346 . + 0 gene_id "W7K_19780"; transcript_id "KOE97354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 8357 9136 . + . gene_id "W7K_19785"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 8357 9136 . + . gene_id "W7K_19785"; transcript_id "KOE97355"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 8357 9136 . + . gene_id "W7K_19785"; transcript_id "KOE97355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97355-1"; +contig07 ena CDS 8357 9133 . + 0 gene_id "W7K_19785"; transcript_id "KOE97355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97355"; +contig07 ena start_codon 8357 8359 . + 0 gene_id "W7K_19785"; transcript_id "KOE97355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 9134 9136 . + 0 gene_id "W7K_19785"; transcript_id "KOE97355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 9197 10615 . + . gene_id "W7K_19790"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 9197 10615 . + . gene_id "W7K_19790"; transcript_id "KOE97356"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 9197 10615 . + . gene_id "W7K_19790"; transcript_id "KOE97356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97356-1"; +contig07 ena CDS 9197 10612 . + 0 gene_id "W7K_19790"; transcript_id "KOE97356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97356"; +contig07 ena start_codon 9197 9199 . + 0 gene_id "W7K_19790"; transcript_id "KOE97356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 10613 10615 . + 0 gene_id "W7K_19790"; transcript_id "KOE97356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 10615 11193 . + . gene_id "W7K_19795"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 10615 11193 . + . gene_id "W7K_19795"; transcript_id "KOE97357"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 10615 11193 . + . gene_id "W7K_19795"; transcript_id "KOE97357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97357-1"; +contig07 ena CDS 10615 11190 . + 0 gene_id "W7K_19795"; transcript_id "KOE97357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97357"; +contig07 ena start_codon 10615 10617 . + 0 gene_id "W7K_19795"; transcript_id "KOE97357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 11191 11193 . + 0 gene_id "W7K_19795"; transcript_id "KOE97357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 11183 12244 . + . gene_id "W7K_19800"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 11183 12244 . + . gene_id "W7K_19800"; transcript_id "KOE97358"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 11183 12244 . + . gene_id "W7K_19800"; transcript_id "KOE97358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97358-1"; +contig07 ena CDS 11183 12241 . + 0 gene_id "W7K_19800"; transcript_id "KOE97358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97358"; +contig07 ena start_codon 11183 11185 . + 0 gene_id "W7K_19800"; transcript_id "KOE97358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 12242 12244 . + 0 gene_id "W7K_19800"; transcript_id "KOE97358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 12318 13091 . - . gene_id "W7K_19805"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 12318 13091 . - . gene_id "W7K_19805"; transcript_id "KOE97359"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 12318 13091 . - . gene_id "W7K_19805"; transcript_id "KOE97359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97359-1"; +contig07 ena CDS 12321 13091 . - 0 gene_id "W7K_19805"; transcript_id "KOE97359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97359"; +contig07 ena start_codon 13089 13091 . - 0 gene_id "W7K_19805"; transcript_id "KOE97359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 12318 12320 . - 0 gene_id "W7K_19805"; transcript_id "KOE97359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 13210 14115 . + . gene_id "W7K_19810"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 13210 14115 . + . gene_id "W7K_19810"; transcript_id "KOE97360"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 13210 14115 . + . gene_id "W7K_19810"; transcript_id "KOE97360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97360-1"; +contig07 ena CDS 13210 14112 . + 0 gene_id "W7K_19810"; transcript_id "KOE97360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97360"; +contig07 ena start_codon 13210 13212 . + 0 gene_id "W7K_19810"; transcript_id "KOE97360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 14113 14115 . + 0 gene_id "W7K_19810"; transcript_id "KOE97360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 14198 17359 . - . gene_id "W7K_19815"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 14198 17359 . - . gene_id "W7K_19815"; transcript_id "KOE97361"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 14198 17359 . - . gene_id "W7K_19815"; transcript_id "KOE97361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97361-1"; +contig07 ena CDS 14201 17359 . - 0 gene_id "W7K_19815"; transcript_id "KOE97361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97361"; +contig07 ena start_codon 17357 17359 . - 0 gene_id "W7K_19815"; transcript_id "KOE97361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 14198 14200 . - 0 gene_id "W7K_19815"; transcript_id "KOE97361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 17364 18494 . - . gene_id "W7K_19820"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 17364 18494 . - . gene_id "W7K_19820"; transcript_id "KOE97362"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 17364 18494 . - . gene_id "W7K_19820"; transcript_id "KOE97362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97362-1"; +contig07 ena CDS 17367 18494 . - 0 gene_id "W7K_19820"; transcript_id "KOE97362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97362"; +contig07 ena start_codon 18492 18494 . - 0 gene_id "W7K_19820"; transcript_id "KOE97362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 17364 17366 . - 0 gene_id "W7K_19820"; transcript_id "KOE97362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 18614 19294 . + . gene_id "W7K_19825"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 18614 19294 . + . gene_id "W7K_19825"; transcript_id "KOE97363"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 18614 19294 . + . gene_id "W7K_19825"; transcript_id "KOE97363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97363-1"; +contig07 ena CDS 18614 19291 . + 0 gene_id "W7K_19825"; transcript_id "KOE97363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97363"; +contig07 ena start_codon 18614 18616 . + 0 gene_id "W7K_19825"; transcript_id "KOE97363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 19292 19294 . + 0 gene_id "W7K_19825"; transcript_id "KOE97363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 19431 20078 . + . gene_id "W7K_19830"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 19431 20078 . + . gene_id "W7K_19830"; transcript_id "KOE97364"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 19431 20078 . + . gene_id "W7K_19830"; transcript_id "KOE97364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97364-1"; +contig07 ena CDS 19431 20075 . + 0 gene_id "W7K_19830"; transcript_id "KOE97364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97364"; +contig07 ena start_codon 19431 19433 . + 0 gene_id "W7K_19830"; transcript_id "KOE97364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 20076 20078 . + 0 gene_id "W7K_19830"; transcript_id "KOE97364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 20095 21453 . + . gene_id "W7K_19835"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 20095 21453 . + . gene_id "W7K_19835"; transcript_id "KOE97365"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 20095 21453 . + . gene_id "W7K_19835"; transcript_id "KOE97365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97365-1"; +contig07 ena CDS 20095 21450 . + 0 gene_id "W7K_19835"; transcript_id "KOE97365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97365"; +contig07 ena start_codon 20095 20097 . + 0 gene_id "W7K_19835"; transcript_id "KOE97365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 21451 21453 . + 0 gene_id "W7K_19835"; transcript_id "KOE97365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 21554 22774 . - . gene_id "W7K_19840"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 21554 22774 . - . gene_id "W7K_19840"; transcript_id "KOE97366"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 21554 22774 . - . gene_id "W7K_19840"; transcript_id "KOE97366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97366-1"; +contig07 ena CDS 21557 22774 . - 0 gene_id "W7K_19840"; transcript_id "KOE97366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97366"; +contig07 ena start_codon 22772 22774 . - 0 gene_id "W7K_19840"; transcript_id "KOE97366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 21554 21556 . - 0 gene_id "W7K_19840"; transcript_id "KOE97366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 23004 24302 . - . gene_id "W7K_19845"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 23004 24302 . - . gene_id "W7K_19845"; transcript_id "KOE97367"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 23004 24302 . - . gene_id "W7K_19845"; transcript_id "KOE97367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97367-1"; +contig07 ena CDS 23007 24302 . - 0 gene_id "W7K_19845"; transcript_id "KOE97367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97367"; +contig07 ena start_codon 24300 24302 . - 0 gene_id "W7K_19845"; transcript_id "KOE97367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 23004 23006 . - 0 gene_id "W7K_19845"; transcript_id "KOE97367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 24363 25280 . + . gene_id "W7K_19850"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 24363 25280 . + . gene_id "W7K_19850"; transcript_id "KOE97368"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 24363 25280 . + . gene_id "W7K_19850"; transcript_id "KOE97368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97368-1"; +contig07 ena CDS 24363 25277 . + 0 gene_id "W7K_19850"; transcript_id "KOE97368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97368"; +contig07 ena start_codon 24363 24365 . + 0 gene_id "W7K_19850"; transcript_id "KOE97368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 25278 25280 . + 0 gene_id "W7K_19850"; transcript_id "KOE97368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 25381 26712 . - . gene_id "W7K_19855"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 25381 26712 . - . gene_id "W7K_19855"; transcript_id "KOE97369"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 25381 26712 . - . gene_id "W7K_19855"; transcript_id "KOE97369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97369-1"; +contig07 ena CDS 25384 26712 . - 0 gene_id "W7K_19855"; transcript_id "KOE97369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97369"; +contig07 ena start_codon 26710 26712 . - 0 gene_id "W7K_19855"; transcript_id "KOE97369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 25381 25383 . - 0 gene_id "W7K_19855"; transcript_id "KOE97369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 26693 27808 . - . gene_id "W7K_19860"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 26693 27808 . - . gene_id "W7K_19860"; transcript_id "KOE97370"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 26693 27808 . - . gene_id "W7K_19860"; transcript_id "KOE97370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97370-1"; +contig07 ena CDS 26696 27808 . - 0 gene_id "W7K_19860"; transcript_id "KOE97370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97370"; +contig07 ena start_codon 27806 27808 . - 0 gene_id "W7K_19860"; transcript_id "KOE97370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 26693 26695 . - 0 gene_id "W7K_19860"; transcript_id "KOE97370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 27824 28021 . - . gene_id "W7K_19865"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 27824 28021 . - . gene_id "W7K_19865"; transcript_id "KOE97371"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 27824 28021 . - . gene_id "W7K_19865"; transcript_id "KOE97371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97371-1"; +contig07 ena CDS 27827 28021 . - 0 gene_id "W7K_19865"; transcript_id "KOE97371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97371"; +contig07 ena start_codon 28019 28021 . - 0 gene_id "W7K_19865"; transcript_id "KOE97371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 27824 27826 . - 0 gene_id "W7K_19865"; transcript_id "KOE97371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 28443 31787 . + . gene_id "W7K_19870"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 28443 31787 . + . gene_id "W7K_19870"; transcript_id "KOE97372"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 28443 31787 . + . gene_id "W7K_19870"; transcript_id "KOE97372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97372-1"; +contig07 ena CDS 28443 31784 . + 0 gene_id "W7K_19870"; transcript_id "KOE97372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97372"; +contig07 ena start_codon 28443 28445 . + 0 gene_id "W7K_19870"; transcript_id "KOE97372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 31785 31787 . + 0 gene_id "W7K_19870"; transcript_id "KOE97372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 31784 32527 . + . gene_id "W7K_19875"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 31784 32527 . + . gene_id "W7K_19875"; transcript_id "KOE97373"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 31784 32527 . + . gene_id "W7K_19875"; transcript_id "KOE97373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97373-1"; +contig07 ena CDS 31784 32524 . + 0 gene_id "W7K_19875"; transcript_id "KOE97373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97373"; +contig07 ena start_codon 31784 31786 . + 0 gene_id "W7K_19875"; transcript_id "KOE97373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 32525 32527 . + 0 gene_id "W7K_19875"; transcript_id "KOE97373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 32946 35237 . - . gene_id "W7K_19880"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 32946 35237 . - . gene_id "W7K_19880"; transcript_id "KOE97374"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 32946 35237 . - . gene_id "W7K_19880"; transcript_id "KOE97374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97374-1"; +contig07 ena CDS 32949 35237 . - 0 gene_id "W7K_19880"; transcript_id "KOE97374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97374"; +contig07 ena start_codon 35235 35237 . - 0 gene_id "W7K_19880"; transcript_id "KOE97374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 32946 32948 . - 0 gene_id "W7K_19880"; transcript_id "KOE97374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 35468 36811 . - . gene_id "W7K_19885"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 35468 36811 . - . gene_id "W7K_19885"; transcript_id "KOE97375"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 35468 36811 . - . gene_id "W7K_19885"; transcript_id "KOE97375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97375-1"; +contig07 ena CDS 35471 36811 . - 0 gene_id "W7K_19885"; transcript_id "KOE97375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97375"; +contig07 ena start_codon 36809 36811 . - 0 gene_id "W7K_19885"; transcript_id "KOE97375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 35468 35470 . - 0 gene_id "W7K_19885"; transcript_id "KOE97375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 37142 38311 . + . gene_id "W7K_19890"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 37142 38311 . + . gene_id "W7K_19890"; transcript_id "KOE97376"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 37142 38311 . + . gene_id "W7K_19890"; transcript_id "KOE97376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97376-1"; +contig07 ena CDS 37142 38308 . + 0 gene_id "W7K_19890"; transcript_id "KOE97376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97376"; +contig07 ena start_codon 37142 37144 . + 0 gene_id "W7K_19890"; transcript_id "KOE97376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 38309 38311 . + 0 gene_id "W7K_19890"; transcript_id "KOE97376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 38378 41026 . + . gene_id "W7K_19895"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 38378 41026 . + . gene_id "W7K_19895"; transcript_id "KOE97377"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 38378 41026 . + . gene_id "W7K_19895"; transcript_id "KOE97377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97377-1"; +contig07 ena CDS 38378 41023 . + 0 gene_id "W7K_19895"; transcript_id "KOE97377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97377"; +contig07 ena start_codon 38378 38380 . + 0 gene_id "W7K_19895"; transcript_id "KOE97377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 41024 41026 . + 0 gene_id "W7K_19895"; transcript_id "KOE97377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 42271 43629 . + . gene_id "W7K_19900"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 42271 43629 . + . gene_id "W7K_19900"; transcript_id "KOE97378"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 42271 43629 . + . gene_id "W7K_19900"; transcript_id "KOE97378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97378-1"; +contig07 ena CDS 42271 43626 . + 0 gene_id "W7K_19900"; transcript_id "KOE97378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97378"; +contig07 ena start_codon 42271 42273 . + 0 gene_id "W7K_19900"; transcript_id "KOE97378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 43627 43629 . + 0 gene_id "W7K_19900"; transcript_id "KOE97378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 43675 44331 . - . gene_id "W7K_19905"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 43675 44331 . - . gene_id "W7K_19905"; transcript_id "KOE97379"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 43675 44331 . - . gene_id "W7K_19905"; transcript_id "KOE97379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97379-1"; +contig07 ena CDS 43678 44331 . - 0 gene_id "W7K_19905"; transcript_id "KOE97379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97379"; +contig07 ena start_codon 44329 44331 . - 0 gene_id "W7K_19905"; transcript_id "KOE97379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 43675 43677 . - 0 gene_id "W7K_19905"; transcript_id "KOE97379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 44360 45415 . - . gene_id "W7K_19910"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 44360 45415 . - . gene_id "W7K_19910"; transcript_id "KOE97380"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 44360 45415 . - . gene_id "W7K_19910"; transcript_id "KOE97380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97380-1"; +contig07 ena CDS 44363 45415 . - 0 gene_id "W7K_19910"; transcript_id "KOE97380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97380"; +contig07 ena start_codon 45413 45415 . - 0 gene_id "W7K_19910"; transcript_id "KOE97380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 44360 44362 . - 0 gene_id "W7K_19910"; transcript_id "KOE97380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 45412 46803 . - . gene_id "W7K_19915"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 45412 46803 . - . gene_id "W7K_19915"; transcript_id "KOE97464"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 45412 46803 . - . gene_id "W7K_19915"; transcript_id "KOE97464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97464-1"; +contig07 ena CDS 45415 46803 . - 0 gene_id "W7K_19915"; transcript_id "KOE97464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97464"; +contig07 ena start_codon 46801 46803 . - 0 gene_id "W7K_19915"; transcript_id "KOE97464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 45412 45414 . - 0 gene_id "W7K_19915"; transcript_id "KOE97464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 46796 47485 . - . gene_id "W7K_19920"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 46796 47485 . - . gene_id "W7K_19920"; transcript_id "KOE97381"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 46796 47485 . - . gene_id "W7K_19920"; transcript_id "KOE97381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97381-1"; +contig07 ena CDS 46799 47485 . - 0 gene_id "W7K_19920"; transcript_id "KOE97381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97381"; +contig07 ena start_codon 47483 47485 . - 0 gene_id "W7K_19920"; transcript_id "KOE97381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 46796 46798 . - 0 gene_id "W7K_19920"; transcript_id "KOE97381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 47728 48867 . + . gene_id "W7K_19925"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 47728 48867 . + . gene_id "W7K_19925"; transcript_id "KOE97382"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 47728 48867 . + . gene_id "W7K_19925"; transcript_id "KOE97382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97382-1"; +contig07 ena CDS 47728 48864 . + 0 gene_id "W7K_19925"; transcript_id "KOE97382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97382"; +contig07 ena start_codon 47728 47730 . + 0 gene_id "W7K_19925"; transcript_id "KOE97382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 48865 48867 . + 0 gene_id "W7K_19925"; transcript_id "KOE97382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 48943 50271 . + . gene_id "W7K_19930"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 48943 50271 . + . gene_id "W7K_19930"; transcript_id "KOE97465"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 48943 50271 . + . gene_id "W7K_19930"; transcript_id "KOE97465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97465-1"; +contig07 ena CDS 48943 50268 . + 0 gene_id "W7K_19930"; transcript_id "KOE97465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97465"; +contig07 ena start_codon 48943 48945 . + 0 gene_id "W7K_19930"; transcript_id "KOE97465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 50269 50271 . + 0 gene_id "W7K_19930"; transcript_id "KOE97465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 50295 51035 . + . gene_id "W7K_19935"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 50295 51035 . + . gene_id "W7K_19935"; transcript_id "KOE97383"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 50295 51035 . + . gene_id "W7K_19935"; transcript_id "KOE97383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97383-1"; +contig07 ena CDS 50295 51032 . + 0 gene_id "W7K_19935"; transcript_id "KOE97383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97383"; +contig07 ena start_codon 50295 50297 . + 0 gene_id "W7K_19935"; transcript_id "KOE97383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 51033 51035 . + 0 gene_id "W7K_19935"; transcript_id "KOE97383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 51243 51767 . + . gene_id "W7K_19940"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 51243 51767 . + . gene_id "W7K_19940"; transcript_id "KOE97384"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 51243 51767 . + . gene_id "W7K_19940"; transcript_id "KOE97384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97384-1"; +contig07 ena CDS 51243 51764 . + 0 gene_id "W7K_19940"; transcript_id "KOE97384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97384"; +contig07 ena start_codon 51243 51245 . + 0 gene_id "W7K_19940"; transcript_id "KOE97384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 51765 51767 . + 0 gene_id "W7K_19940"; transcript_id "KOE97384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 51928 54237 . + . gene_id "W7K_19945"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 51928 54237 . + . gene_id "W7K_19945"; transcript_id "KOE97385"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 51928 54237 . + . gene_id "W7K_19945"; transcript_id "KOE97385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97385-1"; +contig07 ena CDS 51928 54234 . + 0 gene_id "W7K_19945"; transcript_id "KOE97385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97385"; +contig07 ena start_codon 51928 51930 . + 0 gene_id "W7K_19945"; transcript_id "KOE97385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 54235 54237 . + 0 gene_id "W7K_19945"; transcript_id "KOE97385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 54674 55927 . - . gene_id "W7K_19950"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 54674 55927 . - . gene_id "W7K_19950"; transcript_id "KOE97386"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 54674 55927 . - . gene_id "W7K_19950"; transcript_id "KOE97386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97386-1"; +contig07 ena CDS 54677 55927 . - 0 gene_id "W7K_19950"; transcript_id "KOE97386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97386"; +contig07 ena start_codon 55925 55927 . - 0 gene_id "W7K_19950"; transcript_id "KOE97386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 54674 54676 . - 0 gene_id "W7K_19950"; transcript_id "KOE97386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 56054 57163 . - . gene_id "W7K_19955"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 56054 57163 . - . gene_id "W7K_19955"; transcript_id "KOE97387"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 56054 57163 . - . gene_id "W7K_19955"; transcript_id "KOE97387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97387-1"; +contig07 ena CDS 56057 57163 . - 0 gene_id "W7K_19955"; transcript_id "KOE97387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97387"; +contig07 ena start_codon 57161 57163 . - 0 gene_id "W7K_19955"; transcript_id "KOE97387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 56054 56056 . - 0 gene_id "W7K_19955"; transcript_id "KOE97387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 57278 58552 . + . gene_id "W7K_19960"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 57278 58552 . + . gene_id "W7K_19960"; transcript_id "KOE97388"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 57278 58552 . + . gene_id "W7K_19960"; transcript_id "KOE97388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97388-1"; +contig07 ena CDS 57278 58549 . + 0 gene_id "W7K_19960"; transcript_id "KOE97388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97388"; +contig07 ena start_codon 57278 57280 . + 0 gene_id "W7K_19960"; transcript_id "KOE97388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 58550 58552 . + 0 gene_id "W7K_19960"; transcript_id "KOE97388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 58556 59173 . + . gene_id "W7K_19965"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 58556 59173 . + . gene_id "W7K_19965"; transcript_id "KOE97389"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 58556 59173 . + . gene_id "W7K_19965"; transcript_id "KOE97389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97389-1"; +contig07 ena CDS 58556 59170 . + 0 gene_id "W7K_19965"; transcript_id "KOE97389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97389"; +contig07 ena start_codon 58556 58558 . + 0 gene_id "W7K_19965"; transcript_id "KOE97389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 59171 59173 . + 0 gene_id "W7K_19965"; transcript_id "KOE97389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 59178 59894 . + . gene_id "W7K_19970"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 59178 59894 . + . gene_id "W7K_19970"; transcript_id "KOE97390"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 59178 59894 . + . gene_id "W7K_19970"; transcript_id "KOE97390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97390-1"; +contig07 ena CDS 59178 59891 . + 0 gene_id "W7K_19970"; transcript_id "KOE97390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97390"; +contig07 ena start_codon 59178 59180 . + 0 gene_id "W7K_19970"; transcript_id "KOE97390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 59892 59894 . + 0 gene_id "W7K_19970"; transcript_id "KOE97390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 59970 60749 . - . gene_id "W7K_19975"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 59970 60749 . - . gene_id "W7K_19975"; transcript_id "KOE97391"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 59970 60749 . - . gene_id "W7K_19975"; transcript_id "KOE97391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97391-1"; +contig07 ena CDS 59973 60749 . - 0 gene_id "W7K_19975"; transcript_id "KOE97391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97391"; +contig07 ena start_codon 60747 60749 . - 0 gene_id "W7K_19975"; transcript_id "KOE97391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 59970 59972 . - 0 gene_id "W7K_19975"; transcript_id "KOE97391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 60809 61735 . + . gene_id "W7K_19980"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 60809 61735 . + . gene_id "W7K_19980"; transcript_id "KOE97392"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 60809 61735 . + . gene_id "W7K_19980"; transcript_id "KOE97392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97392-1"; +contig07 ena CDS 60809 61732 . + 0 gene_id "W7K_19980"; transcript_id "KOE97392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97392"; +contig07 ena start_codon 60809 60811 . + 0 gene_id "W7K_19980"; transcript_id "KOE97392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 61733 61735 . + 0 gene_id "W7K_19980"; transcript_id "KOE97392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 61813 62352 . - . gene_id "W7K_19985"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 61813 62352 . - . gene_id "W7K_19985"; transcript_id "KOE97393"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 61813 62352 . - . gene_id "W7K_19985"; transcript_id "KOE97393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97393-1"; +contig07 ena CDS 61816 62352 . - 0 gene_id "W7K_19985"; transcript_id "KOE97393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97393"; +contig07 ena start_codon 62350 62352 . - 0 gene_id "W7K_19985"; transcript_id "KOE97393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 61813 61815 . - 0 gene_id "W7K_19985"; transcript_id "KOE97393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 62396 63172 . - . gene_id "W7K_19990"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 62396 63172 . - . gene_id "W7K_19990"; transcript_id "KOE97394"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 62396 63172 . - . gene_id "W7K_19990"; transcript_id "KOE97394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97394-1"; +contig07 ena CDS 62399 63172 . - 0 gene_id "W7K_19990"; transcript_id "KOE97394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97394"; +contig07 ena start_codon 63170 63172 . - 0 gene_id "W7K_19990"; transcript_id "KOE97394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 62396 62398 . - 0 gene_id "W7K_19990"; transcript_id "KOE97394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 63325 64734 . + . gene_id "W7K_19995"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 63325 64734 . + . gene_id "W7K_19995"; transcript_id "KOE97395"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 63325 64734 . + . gene_id "W7K_19995"; transcript_id "KOE97395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97395-1"; +contig07 ena CDS 63325 64731 . + 0 gene_id "W7K_19995"; transcript_id "KOE97395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97395"; +contig07 ena start_codon 63325 63327 . + 0 gene_id "W7K_19995"; transcript_id "KOE97395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 64732 64734 . + 0 gene_id "W7K_19995"; transcript_id "KOE97395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 64734 66017 . + . gene_id "W7K_20000"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 64734 66017 . + . gene_id "W7K_20000"; transcript_id "KOE97396"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 64734 66017 . + . gene_id "W7K_20000"; transcript_id "KOE97396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97396-1"; +contig07 ena CDS 64734 66014 . + 0 gene_id "W7K_20000"; transcript_id "KOE97396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97396"; +contig07 ena start_codon 64734 64736 . + 0 gene_id "W7K_20000"; transcript_id "KOE97396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 66015 66017 . + 0 gene_id "W7K_20000"; transcript_id "KOE97396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 66038 66670 . + . gene_id "W7K_20005"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 66038 66670 . + . gene_id "W7K_20005"; transcript_id "KOE97397"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 66038 66670 . + . gene_id "W7K_20005"; transcript_id "KOE97397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97397-1"; +contig07 ena CDS 66038 66667 . + 0 gene_id "W7K_20005"; transcript_id "KOE97397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97397"; +contig07 ena start_codon 66038 66040 . + 0 gene_id "W7K_20005"; transcript_id "KOE97397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 66668 66670 . + 0 gene_id "W7K_20005"; transcript_id "KOE97397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 66765 67706 . + . gene_id "W7K_20010"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 66765 67706 . + . gene_id "W7K_20010"; transcript_id "KOE97398"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 66765 67706 . + . gene_id "W7K_20010"; transcript_id "KOE97398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97398-1"; +contig07 ena CDS 66765 67703 . + 0 gene_id "W7K_20010"; transcript_id "KOE97398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97398"; +contig07 ena start_codon 66765 66767 . + 0 gene_id "W7K_20010"; transcript_id "KOE97398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 67704 67706 . + 0 gene_id "W7K_20010"; transcript_id "KOE97398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 67784 68122 . + . gene_id "W7K_20015"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 67784 68122 . + . gene_id "W7K_20015"; transcript_id "KOE97466"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 67784 68122 . + . gene_id "W7K_20015"; transcript_id "KOE97466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97466-1"; +contig07 ena CDS 67784 68119 . + 0 gene_id "W7K_20015"; transcript_id "KOE97466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97466"; +contig07 ena start_codon 67784 67786 . + 0 gene_id "W7K_20015"; transcript_id "KOE97466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 68120 68122 . + 0 gene_id "W7K_20015"; transcript_id "KOE97466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 68266 69681 . - . gene_id "W7K_20020"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 68266 69681 . - . gene_id "W7K_20020"; transcript_id "KOE97399"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 68266 69681 . - . gene_id "W7K_20020"; transcript_id "KOE97399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97399-1"; +contig07 ena CDS 68269 69681 . - 0 gene_id "W7K_20020"; transcript_id "KOE97399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97399"; +contig07 ena start_codon 69679 69681 . - 0 gene_id "W7K_20020"; transcript_id "KOE97399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 68266 68268 . - 0 gene_id "W7K_20020"; transcript_id "KOE97399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 69678 70760 . - . gene_id "W7K_20025"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 69678 70760 . - . gene_id "W7K_20025"; transcript_id "KOE97400"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 69678 70760 . - . gene_id "W7K_20025"; transcript_id "KOE97400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97400-1"; +contig07 ena CDS 69681 70760 . - 0 gene_id "W7K_20025"; transcript_id "KOE97400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97400"; +contig07 ena start_codon 70758 70760 . - 0 gene_id "W7K_20025"; transcript_id "KOE97400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 69678 69680 . - 0 gene_id "W7K_20025"; transcript_id "KOE97400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 70781 72310 . - . gene_id "W7K_20030"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 70781 72310 . - . gene_id "W7K_20030"; transcript_id "KOE97401"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 70781 72310 . - . gene_id "W7K_20030"; transcript_id "KOE97401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97401-1"; +contig07 ena CDS 70784 72310 . - 0 gene_id "W7K_20030"; transcript_id "KOE97401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97401"; +contig07 ena start_codon 72308 72310 . - 0 gene_id "W7K_20030"; transcript_id "KOE97401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 70781 70783 . - 0 gene_id "W7K_20030"; transcript_id "KOE97401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 72464 73381 . - . gene_id "W7K_20035"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 72464 73381 . - . gene_id "W7K_20035"; transcript_id "KOE97402"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 72464 73381 . - . gene_id "W7K_20035"; transcript_id "KOE97402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97402-1"; +contig07 ena CDS 72467 73381 . - 0 gene_id "W7K_20035"; transcript_id "KOE97402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97402"; +contig07 ena start_codon 73379 73381 . - 0 gene_id "W7K_20035"; transcript_id "KOE97402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 72464 72466 . - 0 gene_id "W7K_20035"; transcript_id "KOE97402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 73523 73969 . + . gene_id "W7K_20040"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 73523 73969 . + . gene_id "W7K_20040"; transcript_id "KOE97467"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 73523 73969 . + . gene_id "W7K_20040"; transcript_id "KOE97467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97467-1"; +contig07 ena CDS 73523 73966 . + 0 gene_id "W7K_20040"; transcript_id "KOE97467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97467"; +contig07 ena start_codon 73523 73525 . + 0 gene_id "W7K_20040"; transcript_id "KOE97467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 73967 73969 . + 0 gene_id "W7K_20040"; transcript_id "KOE97467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 73975 74445 . + . gene_id "W7K_20045"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 73975 74445 . + . gene_id "W7K_20045"; transcript_id "KOE97403"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 73975 74445 . + . gene_id "W7K_20045"; transcript_id "KOE97403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97403-1"; +contig07 ena CDS 73975 74442 . + 0 gene_id "W7K_20045"; transcript_id "KOE97403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97403"; +contig07 ena start_codon 73975 73977 . + 0 gene_id "W7K_20045"; transcript_id "KOE97403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 74443 74445 . + 0 gene_id "W7K_20045"; transcript_id "KOE97403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 74500 75945 . - . gene_id "W7K_20050"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 74500 75945 . - . gene_id "W7K_20050"; transcript_id "KOE97404"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 74500 75945 . - . gene_id "W7K_20050"; transcript_id "KOE97404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97404-1"; +contig07 ena CDS 74503 75945 . - 0 gene_id "W7K_20050"; transcript_id "KOE97404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97404"; +contig07 ena start_codon 75943 75945 . - 0 gene_id "W7K_20050"; transcript_id "KOE97404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 74500 74502 . - 0 gene_id "W7K_20050"; transcript_id "KOE97404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 76133 76963 . - . gene_id "W7K_20055"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 76133 76963 . - . gene_id "W7K_20055"; transcript_id "KOE97405"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 76133 76963 . - . gene_id "W7K_20055"; transcript_id "KOE97405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97405-1"; +contig07 ena CDS 76136 76963 . - 0 gene_id "W7K_20055"; transcript_id "KOE97405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97405"; +contig07 ena start_codon 76961 76963 . - 0 gene_id "W7K_20055"; transcript_id "KOE97405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 76133 76135 . - 0 gene_id "W7K_20055"; transcript_id "KOE97405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 77027 77386 . - . gene_id "W7K_20060"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 77027 77386 . - . gene_id "W7K_20060"; transcript_id "KOE97406"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 77027 77386 . - . gene_id "W7K_20060"; transcript_id "KOE97406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97406-1"; +contig07 ena CDS 77030 77386 . - 0 gene_id "W7K_20060"; transcript_id "KOE97406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97406"; +contig07 ena start_codon 77384 77386 . - 0 gene_id "W7K_20060"; transcript_id "KOE97406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 77027 77029 . - 0 gene_id "W7K_20060"; transcript_id "KOE97406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 77395 78504 . - . gene_id "W7K_20065"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 77395 78504 . - . gene_id "W7K_20065"; transcript_id "KOE97407"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 77395 78504 . - . gene_id "W7K_20065"; transcript_id "KOE97407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97407-1"; +contig07 ena CDS 77398 78504 . - 0 gene_id "W7K_20065"; transcript_id "KOE97407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97407"; +contig07 ena start_codon 78502 78504 . - 0 gene_id "W7K_20065"; transcript_id "KOE97407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 77395 77397 . - 0 gene_id "W7K_20065"; transcript_id "KOE97407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 78571 78846 . - . gene_id "W7K_20070"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 78571 78846 . - . gene_id "W7K_20070"; transcript_id "KOE97408"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 78571 78846 . - . gene_id "W7K_20070"; transcript_id "KOE97408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97408-1"; +contig07 ena CDS 78574 78846 . - 0 gene_id "W7K_20070"; transcript_id "KOE97408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97408"; +contig07 ena start_codon 78844 78846 . - 0 gene_id "W7K_20070"; transcript_id "KOE97408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 78571 78573 . - 0 gene_id "W7K_20070"; transcript_id "KOE97408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 79061 82153 . + . gene_id "W7K_20075"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 79061 82153 . + . gene_id "W7K_20075"; transcript_id "KOE97409"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 79061 82153 . + . gene_id "W7K_20075"; transcript_id "KOE97409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97409-1"; +contig07 ena CDS 79061 82150 . + 0 gene_id "W7K_20075"; transcript_id "KOE97409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97409"; +contig07 ena start_codon 79061 79063 . + 0 gene_id "W7K_20075"; transcript_id "KOE97409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 82151 82153 . + 0 gene_id "W7K_20075"; transcript_id "KOE97409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 82201 83106 . - . gene_id "W7K_20080"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 82201 83106 . - . gene_id "W7K_20080"; transcript_id "KOE97410"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 82201 83106 . - . gene_id "W7K_20080"; transcript_id "KOE97410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97410-1"; +contig07 ena CDS 82204 83106 . - 0 gene_id "W7K_20080"; transcript_id "KOE97410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97410"; +contig07 ena start_codon 83104 83106 . - 0 gene_id "W7K_20080"; transcript_id "KOE97410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 82201 82203 . - 0 gene_id "W7K_20080"; transcript_id "KOE97410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 83235 84338 . + . gene_id "W7K_20085"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 83235 84338 . + . gene_id "W7K_20085"; transcript_id "KOE97468"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 83235 84338 . + . gene_id "W7K_20085"; transcript_id "KOE97468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97468-1"; +contig07 ena CDS 83235 84335 . + 0 gene_id "W7K_20085"; transcript_id "KOE97468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97468"; +contig07 ena start_codon 83235 83237 . + 0 gene_id "W7K_20085"; transcript_id "KOE97468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 84336 84338 . + 0 gene_id "W7K_20085"; transcript_id "KOE97468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 84398 84814 . + . gene_id "W7K_20090"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 84398 84814 . + . gene_id "W7K_20090"; transcript_id "KOE97411"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 84398 84814 . + . gene_id "W7K_20090"; transcript_id "KOE97411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97411-1"; +contig07 ena CDS 84398 84811 . + 0 gene_id "W7K_20090"; transcript_id "KOE97411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97411"; +contig07 ena start_codon 84398 84400 . + 0 gene_id "W7K_20090"; transcript_id "KOE97411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 84812 84814 . + 0 gene_id "W7K_20090"; transcript_id "KOE97411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 84827 85522 . - . gene_id "W7K_20095"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 84827 85522 . - . gene_id "W7K_20095"; transcript_id "KOE97412"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 84827 85522 . - . gene_id "W7K_20095"; transcript_id "KOE97412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97412-1"; +contig07 ena CDS 84830 85522 . - 0 gene_id "W7K_20095"; transcript_id "KOE97412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97412"; +contig07 ena start_codon 85520 85522 . - 0 gene_id "W7K_20095"; transcript_id "KOE97412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 84827 84829 . - 0 gene_id "W7K_20095"; transcript_id "KOE97412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 85599 86261 . + . gene_id "W7K_20100"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 85599 86261 . + . gene_id "W7K_20100"; transcript_id "KOE97413"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 85599 86261 . + . gene_id "W7K_20100"; transcript_id "KOE97413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97413-1"; +contig07 ena CDS 85599 86258 . + 0 gene_id "W7K_20100"; transcript_id "KOE97413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97413"; +contig07 ena start_codon 85599 85601 . + 0 gene_id "W7K_20100"; transcript_id "KOE97413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 86259 86261 . + 0 gene_id "W7K_20100"; transcript_id "KOE97413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 86335 87219 . - . gene_id "W7K_20105"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 86335 87219 . - . gene_id "W7K_20105"; transcript_id "KOE97414"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 86335 87219 . - . gene_id "W7K_20105"; transcript_id "KOE97414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97414-1"; +contig07 ena CDS 86338 87219 . - 0 gene_id "W7K_20105"; transcript_id "KOE97414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97414"; +contig07 ena start_codon 87217 87219 . - 0 gene_id "W7K_20105"; transcript_id "KOE97414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 86335 86337 . - 0 gene_id "W7K_20105"; transcript_id "KOE97414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 87327 88385 . + . gene_id "W7K_20110"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 87327 88385 . + . gene_id "W7K_20110"; transcript_id "KOE97415"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 87327 88385 . + . gene_id "W7K_20110"; transcript_id "KOE97415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97415-1"; +contig07 ena CDS 87327 88382 . + 0 gene_id "W7K_20110"; transcript_id "KOE97415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97415"; +contig07 ena start_codon 87327 87329 . + 0 gene_id "W7K_20110"; transcript_id "KOE97415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 88383 88385 . + 0 gene_id "W7K_20110"; transcript_id "KOE97415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 88474 89838 . - . gene_id "W7K_20115"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 88474 89838 . - . gene_id "W7K_20115"; transcript_id "KOE97416"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 88474 89838 . - . gene_id "W7K_20115"; transcript_id "KOE97416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97416-1"; +contig07 ena CDS 88477 89838 . - 0 gene_id "W7K_20115"; transcript_id "KOE97416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97416"; +contig07 ena start_codon 89836 89838 . - 0 gene_id "W7K_20115"; transcript_id "KOE97416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 88474 88476 . - 0 gene_id "W7K_20115"; transcript_id "KOE97416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 89991 90695 . + . gene_id "W7K_20120"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 89991 90695 . + . gene_id "W7K_20120"; transcript_id "KOE97417"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 89991 90695 . + . gene_id "W7K_20120"; transcript_id "KOE97417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97417-1"; +contig07 ena CDS 89991 90692 . + 0 gene_id "W7K_20120"; transcript_id "KOE97417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97417"; +contig07 ena start_codon 89991 89993 . + 0 gene_id "W7K_20120"; transcript_id "KOE97417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 90693 90695 . + 0 gene_id "W7K_20120"; transcript_id "KOE97417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 90692 91516 . + . gene_id "W7K_20125"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 90692 91516 . + . gene_id "W7K_20125"; transcript_id "KOE97418"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 90692 91516 . + . gene_id "W7K_20125"; transcript_id "KOE97418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97418-1"; +contig07 ena CDS 90692 91513 . + 0 gene_id "W7K_20125"; transcript_id "KOE97418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97418"; +contig07 ena start_codon 90692 90694 . + 0 gene_id "W7K_20125"; transcript_id "KOE97418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 91514 91516 . + 0 gene_id "W7K_20125"; transcript_id "KOE97418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 92142 93116 . + . gene_id "W7K_20130"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 92142 93116 . + . gene_id "W7K_20130"; transcript_id "KOE97419"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 92142 93116 . + . gene_id "W7K_20130"; transcript_id "KOE97419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97419-1"; +contig07 ena CDS 92142 93113 . + 0 gene_id "W7K_20130"; transcript_id "KOE97419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97419"; +contig07 ena start_codon 92142 92144 . + 0 gene_id "W7K_20130"; transcript_id "KOE97419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 93114 93116 . + 0 gene_id "W7K_20130"; transcript_id "KOE97419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 93223 93825 . - . gene_id "W7K_20135"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 93223 93825 . - . gene_id "W7K_20135"; transcript_id "KOE97420"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 93223 93825 . - . gene_id "W7K_20135"; transcript_id "KOE97420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97420-1"; +contig07 ena CDS 93226 93825 . - 0 gene_id "W7K_20135"; transcript_id "KOE97420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97420"; +contig07 ena start_codon 93823 93825 . - 0 gene_id "W7K_20135"; transcript_id "KOE97420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 93223 93225 . - 0 gene_id "W7K_20135"; transcript_id "KOE97420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 93982 94782 . + . gene_id "W7K_20140"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 93982 94782 . + . gene_id "W7K_20140"; transcript_id "KOE97421"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 93982 94782 . + . gene_id "W7K_20140"; transcript_id "KOE97421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97421-1"; +contig07 ena CDS 93982 94779 . + 0 gene_id "W7K_20140"; transcript_id "KOE97421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97421"; +contig07 ena start_codon 93982 93984 . + 0 gene_id "W7K_20140"; transcript_id "KOE97421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 94780 94782 . + 0 gene_id "W7K_20140"; transcript_id "KOE97421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 94889 95539 . + . gene_id "W7K_20145"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 94889 95539 . + . gene_id "W7K_20145"; transcript_id "KOE97422"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 94889 95539 . + . gene_id "W7K_20145"; transcript_id "KOE97422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97422-1"; +contig07 ena CDS 94889 95536 . + 0 gene_id "W7K_20145"; transcript_id "KOE97422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97422"; +contig07 ena start_codon 94889 94891 . + 0 gene_id "W7K_20145"; transcript_id "KOE97422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 95537 95539 . + 0 gene_id "W7K_20145"; transcript_id "KOE97422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 95646 96476 . + . gene_id "W7K_20150"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 95646 96476 . + . gene_id "W7K_20150"; transcript_id "KOE97423"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 95646 96476 . + . gene_id "W7K_20150"; transcript_id "KOE97423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97423-1"; +contig07 ena CDS 95646 96473 . + 0 gene_id "W7K_20150"; transcript_id "KOE97423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97423"; +contig07 ena start_codon 95646 95648 . + 0 gene_id "W7K_20150"; transcript_id "KOE97423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 96474 96476 . + 0 gene_id "W7K_20150"; transcript_id "KOE97423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 96500 97267 . + . gene_id "W7K_20155"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 96500 97267 . + . gene_id "W7K_20155"; transcript_id "KOE97424"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 96500 97267 . + . gene_id "W7K_20155"; transcript_id "KOE97424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97424-1"; +contig07 ena CDS 96500 97264 . + 0 gene_id "W7K_20155"; transcript_id "KOE97424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97424"; +contig07 ena start_codon 96500 96502 . + 0 gene_id "W7K_20155"; transcript_id "KOE97424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 97265 97267 . + 0 gene_id "W7K_20155"; transcript_id "KOE97424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 97346 98221 . - . gene_id "W7K_20160"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 97346 98221 . - . gene_id "W7K_20160"; transcript_id "KOE97469"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 97346 98221 . - . gene_id "W7K_20160"; transcript_id "KOE97469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97469-1"; +contig07 ena CDS 97349 98221 . - 0 gene_id "W7K_20160"; transcript_id "KOE97469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97469"; +contig07 ena start_codon 98219 98221 . - 0 gene_id "W7K_20160"; transcript_id "KOE97469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 97346 97348 . - 0 gene_id "W7K_20160"; transcript_id "KOE97469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 98294 98776 . + . gene_id "W7K_20165"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 98294 98776 . + . gene_id "W7K_20165"; transcript_id "KOE97425"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 98294 98776 . + . gene_id "W7K_20165"; transcript_id "KOE97425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97425-1"; +contig07 ena CDS 98294 98773 . + 0 gene_id "W7K_20165"; transcript_id "KOE97425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97425"; +contig07 ena start_codon 98294 98296 . + 0 gene_id "W7K_20165"; transcript_id "KOE97425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 98774 98776 . + 0 gene_id "W7K_20165"; transcript_id "KOE97425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 98854 99405 . + . gene_id "W7K_20170"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 98854 99405 . + . gene_id "W7K_20170"; transcript_id "KOE97426"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 98854 99405 . + . gene_id "W7K_20170"; transcript_id "KOE97426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97426-1"; +contig07 ena CDS 98854 99402 . + 0 gene_id "W7K_20170"; transcript_id "KOE97426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97426"; +contig07 ena start_codon 98854 98856 . + 0 gene_id "W7K_20170"; transcript_id "KOE97426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 99403 99405 . + 0 gene_id "W7K_20170"; transcript_id "KOE97426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 99578 101716 . + . gene_id "W7K_20175"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 99578 101716 . + . gene_id "W7K_20175"; transcript_id "KOE97427"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 99578 101716 . + . gene_id "W7K_20175"; transcript_id "KOE97427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97427-1"; +contig07 ena CDS 99578 101713 . + 0 gene_id "W7K_20175"; transcript_id "KOE97427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97427"; +contig07 ena start_codon 99578 99580 . + 0 gene_id "W7K_20175"; transcript_id "KOE97427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 101714 101716 . + 0 gene_id "W7K_20175"; transcript_id "KOE97427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 101849 104710 . - . gene_id "W7K_20180"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 101849 104710 . - . gene_id "W7K_20180"; transcript_id "KOE97428"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 101849 104710 . - . gene_id "W7K_20180"; transcript_id "KOE97428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97428-1"; +contig07 ena CDS 101852 104710 . - 0 gene_id "W7K_20180"; transcript_id "KOE97428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97428"; +contig07 ena start_codon 104708 104710 . - 0 gene_id "W7K_20180"; transcript_id "KOE97428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 101849 101851 . - 0 gene_id "W7K_20180"; transcript_id "KOE97428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 105426 105833 . - . gene_id "W7K_20185"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 105426 105833 . - . gene_id "W7K_20185"; transcript_id "KOE97429"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 105426 105833 . - . gene_id "W7K_20185"; transcript_id "KOE97429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97429-1"; +contig07 ena CDS 105429 105833 . - 0 gene_id "W7K_20185"; transcript_id "KOE97429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97429"; +contig07 ena start_codon 105831 105833 . - 0 gene_id "W7K_20185"; transcript_id "KOE97429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 105426 105428 . - 0 gene_id "W7K_20185"; transcript_id "KOE97429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 105985 107970 . + . gene_id "W7K_20190"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 105985 107970 . + . gene_id "W7K_20190"; transcript_id "KOE97430"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 105985 107970 . + . gene_id "W7K_20190"; transcript_id "KOE97430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97430-1"; +contig07 ena CDS 105985 107967 . + 0 gene_id "W7K_20190"; transcript_id "KOE97430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97430"; +contig07 ena start_codon 105985 105987 . + 0 gene_id "W7K_20190"; transcript_id "KOE97430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 107968 107970 . + 0 gene_id "W7K_20190"; transcript_id "KOE97430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 108039 108275 . + . gene_id "W7K_20195"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 108039 108275 . + . gene_id "W7K_20195"; transcript_id "KOE97431"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 108039 108275 . + . gene_id "W7K_20195"; transcript_id "KOE97431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97431-1"; +contig07 ena CDS 108039 108272 . + 0 gene_id "W7K_20195"; transcript_id "KOE97431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97431"; +contig07 ena start_codon 108039 108041 . + 0 gene_id "W7K_20195"; transcript_id "KOE97431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 108273 108275 . + 0 gene_id "W7K_20195"; transcript_id "KOE97431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 108331 109551 . + . gene_id "W7K_20200"; gene_name "cca"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 108331 109551 . + . gene_id "W7K_20200"; transcript_id "KOE97432"; gene_name "cca"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cca-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 108331 109551 . + . gene_id "W7K_20200"; transcript_id "KOE97432"; exon_number "1"; gene_name "cca"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cca-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97432-1"; +contig07 ena CDS 108331 109548 . + 0 gene_id "W7K_20200"; transcript_id "KOE97432"; exon_number "1"; gene_name "cca"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cca-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97432"; +contig07 ena start_codon 108331 108333 . + 0 gene_id "W7K_20200"; transcript_id "KOE97432"; exon_number "1"; gene_name "cca"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cca-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 109549 109551 . + 0 gene_id "W7K_20200"; transcript_id "KOE97432"; exon_number "1"; gene_name "cca"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cca-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 109894 110328 . - . gene_id "W7K_20205"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 109894 110328 . - . gene_id "W7K_20205"; transcript_id "KOE97433"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 109894 110328 . - . gene_id "W7K_20205"; transcript_id "KOE97433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97433-1"; +contig07 ena CDS 109897 110328 . - 0 gene_id "W7K_20205"; transcript_id "KOE97433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97433"; +contig07 ena start_codon 110326 110328 . - 0 gene_id "W7K_20205"; transcript_id "KOE97433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 109894 109896 . - 0 gene_id "W7K_20205"; transcript_id "KOE97433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 110378 110713 . - . gene_id "W7K_20210"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 110378 110713 . - . gene_id "W7K_20210"; transcript_id "KOE97434"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 110378 110713 . - . gene_id "W7K_20210"; transcript_id "KOE97434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97434-1"; +contig07 ena CDS 110381 110713 . - 0 gene_id "W7K_20210"; transcript_id "KOE97434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97434"; +contig07 ena start_codon 110711 110713 . - 0 gene_id "W7K_20210"; transcript_id "KOE97434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 110378 110380 . - 0 gene_id "W7K_20210"; transcript_id "KOE97434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 110710 111753 . - . gene_id "W7K_20215"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 110710 111753 . - . gene_id "W7K_20215"; transcript_id "KOE97435"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 110710 111753 . - . gene_id "W7K_20215"; transcript_id "KOE97435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97435-1"; +contig07 ena CDS 110713 111753 . - 0 gene_id "W7K_20215"; transcript_id "KOE97435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97435"; +contig07 ena start_codon 111751 111753 . - 0 gene_id "W7K_20215"; transcript_id "KOE97435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 110710 110712 . - 0 gene_id "W7K_20215"; transcript_id "KOE97435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 112165 112599 . + . gene_id "W7K_20220"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 112165 112599 . + . gene_id "W7K_20220"; transcript_id "KOE97470"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 112165 112599 . + . gene_id "W7K_20220"; transcript_id "KOE97470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97470-1"; +contig07 ena CDS 112165 112596 . + 0 gene_id "W7K_20220"; transcript_id "KOE97470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97470"; +contig07 ena start_codon 112165 112167 . + 0 gene_id "W7K_20220"; transcript_id "KOE97470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 112597 112599 . + 0 gene_id "W7K_20220"; transcript_id "KOE97470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 112757 115783 . - . gene_id "W7K_20225"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 112757 115783 . - . gene_id "W7K_20225"; transcript_id "KOE97436"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 112757 115783 . - . gene_id "W7K_20225"; transcript_id "KOE97436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97436-1"; +contig07 ena CDS 112760 115783 . - 0 gene_id "W7K_20225"; transcript_id "KOE97436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97436"; +contig07 ena start_codon 115781 115783 . - 0 gene_id "W7K_20225"; transcript_id "KOE97436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 112757 112759 . - 0 gene_id "W7K_20225"; transcript_id "KOE97436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 116010 117077 . - . gene_id "W7K_20230"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 116010 117077 . - . gene_id "W7K_20230"; transcript_id "KOE97437"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 116010 117077 . - . gene_id "W7K_20230"; transcript_id "KOE97437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97437-1"; +contig07 ena CDS 116013 117077 . - 0 gene_id "W7K_20230"; transcript_id "KOE97437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97437"; +contig07 ena start_codon 117075 117077 . - 0 gene_id "W7K_20230"; transcript_id "KOE97437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 116010 116012 . - 0 gene_id "W7K_20230"; transcript_id "KOE97437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 117077 118225 . - . gene_id "W7K_20235"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 117077 118225 . - . gene_id "W7K_20235"; transcript_id "KOE97438"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 117077 118225 . - . gene_id "W7K_20235"; transcript_id "KOE97438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97438-1"; +contig07 ena CDS 117080 118225 . - 0 gene_id "W7K_20235"; transcript_id "KOE97438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97438"; +contig07 ena start_codon 118223 118225 . - 0 gene_id "W7K_20235"; transcript_id "KOE97438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 117077 117079 . - 0 gene_id "W7K_20235"; transcript_id "KOE97438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 118225 119253 . - . gene_id "W7K_20240"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 118225 119253 . - . gene_id "W7K_20240"; transcript_id "KOE97439"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 118225 119253 . - . gene_id "W7K_20240"; transcript_id "KOE97439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97439-1"; +contig07 ena CDS 118228 119253 . - 0 gene_id "W7K_20240"; transcript_id "KOE97439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97439"; +contig07 ena start_codon 119251 119253 . - 0 gene_id "W7K_20240"; transcript_id "KOE97439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 118225 118227 . - 0 gene_id "W7K_20240"; transcript_id "KOE97439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 119261 120328 . - . gene_id "W7K_20245"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 119261 120328 . - . gene_id "W7K_20245"; transcript_id "KOE97440"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 119261 120328 . - . gene_id "W7K_20245"; transcript_id "KOE97440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97440-1"; +contig07 ena CDS 119264 120328 . - 0 gene_id "W7K_20245"; transcript_id "KOE97440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97440"; +contig07 ena start_codon 120326 120328 . - 0 gene_id "W7K_20245"; transcript_id "KOE97440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 119261 119263 . - 0 gene_id "W7K_20245"; transcript_id "KOE97440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 120368 121660 . - . gene_id "W7K_20250"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 120368 121660 . - . gene_id "W7K_20250"; transcript_id "KOE97441"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 120368 121660 . - . gene_id "W7K_20250"; transcript_id "KOE97441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97441-1"; +contig07 ena CDS 120371 121660 . - 0 gene_id "W7K_20250"; transcript_id "KOE97441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97441"; +contig07 ena start_codon 121658 121660 . - 0 gene_id "W7K_20250"; transcript_id "KOE97441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 120368 120370 . - 0 gene_id "W7K_20250"; transcript_id "KOE97441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 122037 123056 . + . gene_id "W7K_20255"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 122037 123056 . + . gene_id "W7K_20255"; transcript_id "KOE97471"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 122037 123056 . + . gene_id "W7K_20255"; transcript_id "KOE97471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97471-1"; +contig07 ena CDS 122037 123053 . + 0 gene_id "W7K_20255"; transcript_id "KOE97471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97471"; +contig07 ena start_codon 122037 122039 . + 0 gene_id "W7K_20255"; transcript_id "KOE97471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 123054 123056 . + 0 gene_id "W7K_20255"; transcript_id "KOE97471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 123200 125908 . + . gene_id "W7K_20260"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 123200 125908 . + . gene_id "W7K_20260"; transcript_id "KOE97442"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 123200 125908 . + . gene_id "W7K_20260"; transcript_id "KOE97442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97442-1"; +contig07 ena CDS 123200 125905 . + 0 gene_id "W7K_20260"; transcript_id "KOE97442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97442"; +contig07 ena start_codon 123200 123202 . + 0 gene_id "W7K_20260"; transcript_id "KOE97442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 125906 125908 . + 0 gene_id "W7K_20260"; transcript_id "KOE97442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 126020 128374 . + . gene_id "W7K_20265"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 126020 128374 . + . gene_id "W7K_20265"; transcript_id "KOE97443"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 126020 128374 . + . gene_id "W7K_20265"; transcript_id "KOE97443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97443-1"; +contig07 ena CDS 126020 128371 . + 0 gene_id "W7K_20265"; transcript_id "KOE97443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97443"; +contig07 ena start_codon 126020 126022 . + 0 gene_id "W7K_20265"; transcript_id "KOE97443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 128372 128374 . + 0 gene_id "W7K_20265"; transcript_id "KOE97443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 128499 128891 . - . gene_id "W7K_20270"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 128499 128891 . - . gene_id "W7K_20270"; transcript_id "KOE97444"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 128499 128891 . - . gene_id "W7K_20270"; transcript_id "KOE97444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97444-1"; +contig07 ena CDS 128502 128891 . - 0 gene_id "W7K_20270"; transcript_id "KOE97444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97444"; +contig07 ena start_codon 128889 128891 . - 0 gene_id "W7K_20270"; transcript_id "KOE97444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 128499 128501 . - 0 gene_id "W7K_20270"; transcript_id "KOE97444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 128888 130072 . - . gene_id "W7K_20275"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 128888 130072 . - . gene_id "W7K_20275"; transcript_id "KOE97445"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 128888 130072 . - . gene_id "W7K_20275"; transcript_id "KOE97445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97445-1"; +contig07 ena CDS 128891 130072 . - 0 gene_id "W7K_20275"; transcript_id "KOE97445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97445"; +contig07 ena start_codon 130070 130072 . - 0 gene_id "W7K_20275"; transcript_id "KOE97445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 128888 128890 . - 0 gene_id "W7K_20275"; transcript_id "KOE97445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 130132 130869 . + . gene_id "W7K_20280"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 130132 130869 . + . gene_id "W7K_20280"; transcript_id "KOE97446"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 130132 130869 . + . gene_id "W7K_20280"; transcript_id "KOE97446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97446-1"; +contig07 ena CDS 130132 130866 . + 0 gene_id "W7K_20280"; transcript_id "KOE97446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97446"; +contig07 ena start_codon 130132 130134 . + 0 gene_id "W7K_20280"; transcript_id "KOE97446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 130867 130869 . + 0 gene_id "W7K_20280"; transcript_id "KOE97446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 130930 131415 . - . gene_id "W7K_20285"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 130930 131415 . - . gene_id "W7K_20285"; transcript_id "KOE97447"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 130930 131415 . - . gene_id "W7K_20285"; transcript_id "KOE97447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97447-1"; +contig07 ena CDS 130933 131415 . - 0 gene_id "W7K_20285"; transcript_id "KOE97447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97447"; +contig07 ena start_codon 131413 131415 . - 0 gene_id "W7K_20285"; transcript_id "KOE97447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 130930 130932 . - 0 gene_id "W7K_20285"; transcript_id "KOE97447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 131508 132248 . + . gene_id "W7K_20290"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 131508 132248 . + . gene_id "W7K_20290"; transcript_id "KOE97448"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 131508 132248 . + . gene_id "W7K_20290"; transcript_id "KOE97448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97448-1"; +contig07 ena CDS 131508 132245 . + 0 gene_id "W7K_20290"; transcript_id "KOE97448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97448"; +contig07 ena start_codon 131508 131510 . + 0 gene_id "W7K_20290"; transcript_id "KOE97448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 132246 132248 . + 0 gene_id "W7K_20290"; transcript_id "KOE97448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 132329 133840 . - . gene_id "W7K_20295"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 132329 133840 . - . gene_id "W7K_20295"; transcript_id "KOE97449"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 132329 133840 . - . gene_id "W7K_20295"; transcript_id "KOE97449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97449-1"; +contig07 ena CDS 132332 133840 . - 0 gene_id "W7K_20295"; transcript_id "KOE97449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97449"; +contig07 ena start_codon 133838 133840 . - 0 gene_id "W7K_20295"; transcript_id "KOE97449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 132329 132331 . - 0 gene_id "W7K_20295"; transcript_id "KOE97449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 133845 134285 . - . gene_id "W7K_20300"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 133845 134285 . - . gene_id "W7K_20300"; transcript_id "KOE97450"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 133845 134285 . - . gene_id "W7K_20300"; transcript_id "KOE97450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97450-1"; +contig07 ena CDS 133848 134285 . - 0 gene_id "W7K_20300"; transcript_id "KOE97450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97450"; +contig07 ena start_codon 134283 134285 . - 0 gene_id "W7K_20300"; transcript_id "KOE97450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 133845 133847 . - 0 gene_id "W7K_20300"; transcript_id "KOE97450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 134282 136099 . - . gene_id "W7K_20305"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 134282 136099 . - . gene_id "W7K_20305"; transcript_id "KOE97451"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 134282 136099 . - . gene_id "W7K_20305"; transcript_id "KOE97451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97451-1"; +contig07 ena CDS 134285 136099 . - 0 gene_id "W7K_20305"; transcript_id "KOE97451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97451"; +contig07 ena start_codon 136097 136099 . - 0 gene_id "W7K_20305"; transcript_id "KOE97451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 134282 134284 . - 0 gene_id "W7K_20305"; transcript_id "KOE97451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 136331 136717 . - . gene_id "W7K_20310"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 136331 136717 . - . gene_id "W7K_20310"; transcript_id "KOE97452"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 136331 136717 . - . gene_id "W7K_20310"; transcript_id "KOE97452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97452-1"; +contig07 ena CDS 136334 136717 . - 0 gene_id "W7K_20310"; transcript_id "KOE97452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97452"; +contig07 ena start_codon 136715 136717 . - 0 gene_id "W7K_20310"; transcript_id "KOE97452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 136331 136333 . - 0 gene_id "W7K_20310"; transcript_id "KOE97452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 136888 137931 . + . gene_id "W7K_20315"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 136888 137931 . + . gene_id "W7K_20315"; transcript_id "KOE97453"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 136888 137931 . + . gene_id "W7K_20315"; transcript_id "KOE97453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97453-1"; +contig07 ena CDS 136888 137928 . + 0 gene_id "W7K_20315"; transcript_id "KOE97453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97453"; +contig07 ena start_codon 136888 136890 . + 0 gene_id "W7K_20315"; transcript_id "KOE97453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 137929 137931 . + 0 gene_id "W7K_20315"; transcript_id "KOE97453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 138287 139192 . - . gene_id "W7K_20320"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 138287 139192 . - . gene_id "W7K_20320"; transcript_id "KOE97454"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 138287 139192 . - . gene_id "W7K_20320"; transcript_id "KOE97454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97454-1"; +contig07 ena CDS 138290 139192 . - 0 gene_id "W7K_20320"; transcript_id "KOE97454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97454"; +contig07 ena start_codon 139190 139192 . - 0 gene_id "W7K_20320"; transcript_id "KOE97454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 138287 138289 . - 0 gene_id "W7K_20320"; transcript_id "KOE97454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 139203 140441 . - . gene_id "W7K_20325"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 139203 140441 . - . gene_id "W7K_20325"; transcript_id "KOE97455"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 139203 140441 . - . gene_id "W7K_20325"; transcript_id "KOE97455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97455-1"; +contig07 ena CDS 139206 140441 . - 0 gene_id "W7K_20325"; transcript_id "KOE97455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97455"; +contig07 ena start_codon 140439 140441 . - 0 gene_id "W7K_20325"; transcript_id "KOE97455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 139203 139205 . - 0 gene_id "W7K_20325"; transcript_id "KOE97455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 140459 141055 . - . gene_id "W7K_20330"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 140459 141055 . - . gene_id "W7K_20330"; transcript_id "KOE97456"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 140459 141055 . - . gene_id "W7K_20330"; transcript_id "KOE97456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97456-1"; +contig07 ena CDS 140462 141055 . - 0 gene_id "W7K_20330"; transcript_id "KOE97456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97456"; +contig07 ena start_codon 141053 141055 . - 0 gene_id "W7K_20330"; transcript_id "KOE97456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 140459 140461 . - 0 gene_id "W7K_20330"; transcript_id "KOE97456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 141300 143477 . - . gene_id "W7K_20335"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 141300 143477 . - . gene_id "W7K_20335"; transcript_id "KOE97457"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 141300 143477 . - . gene_id "W7K_20335"; transcript_id "KOE97457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97457-1"; +contig07 ena CDS 141303 143477 . - 0 gene_id "W7K_20335"; transcript_id "KOE97457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97457"; +contig07 ena start_codon 143475 143477 . - 0 gene_id "W7K_20335"; transcript_id "KOE97457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 141300 141302 . - 0 gene_id "W7K_20335"; transcript_id "KOE97457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 143756 144766 . - . gene_id "W7K_20340"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 143756 144766 . - . gene_id "W7K_20340"; transcript_id "KOE97458"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 143756 144766 . - . gene_id "W7K_20340"; transcript_id "KOE97458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97458-1"; +contig07 ena CDS 143759 144766 . - 0 gene_id "W7K_20340"; transcript_id "KOE97458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97458"; +contig07 ena start_codon 144764 144766 . - 0 gene_id "W7K_20340"; transcript_id "KOE97458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 143756 143758 . - 0 gene_id "W7K_20340"; transcript_id "KOE97458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 144785 145495 . - . gene_id "W7K_20345"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 144785 145495 . - . gene_id "W7K_20345"; transcript_id "KOE97459"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 144785 145495 . - . gene_id "W7K_20345"; transcript_id "KOE97459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97459-1"; +contig07 ena CDS 144788 145495 . - 0 gene_id "W7K_20345"; transcript_id "KOE97459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97459"; +contig07 ena start_codon 145493 145495 . - 0 gene_id "W7K_20345"; transcript_id "KOE97459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 144785 144787 . - 0 gene_id "W7K_20345"; transcript_id "KOE97459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 145483 145761 . - . gene_id "W7K_20350"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 145483 145761 . - . gene_id "W7K_20350"; transcript_id "KOE97472"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 145483 145761 . - . gene_id "W7K_20350"; transcript_id "KOE97472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97472-1"; +contig07 ena CDS 145486 145761 . - 0 gene_id "W7K_20350"; transcript_id "KOE97472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97472"; +contig07 ena start_codon 145759 145761 . - 0 gene_id "W7K_20350"; transcript_id "KOE97472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 145483 145485 . - 0 gene_id "W7K_20350"; transcript_id "KOE97472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 146025 147098 . + . gene_id "W7K_20355"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 146025 147098 . + . gene_id "W7K_20355"; transcript_id "KOE97460"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 146025 147098 . + . gene_id "W7K_20355"; transcript_id "KOE97460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97460-1"; +contig07 ena CDS 146025 147095 . + 0 gene_id "W7K_20355"; transcript_id "KOE97460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97460"; +contig07 ena start_codon 146025 146027 . + 0 gene_id "W7K_20355"; transcript_id "KOE97460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 147096 147098 . + 0 gene_id "W7K_20355"; transcript_id "KOE97460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 147221 148438 . - . gene_id "W7K_20360"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 147221 148438 . - . gene_id "W7K_20360"; transcript_id "KOE97461"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 147221 148438 . - . gene_id "W7K_20360"; transcript_id "KOE97461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97461-1"; +contig07 ena CDS 147224 148438 . - 0 gene_id "W7K_20360"; transcript_id "KOE97461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97461"; +contig07 ena start_codon 148436 148438 . - 0 gene_id "W7K_20360"; transcript_id "KOE97461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 147221 147223 . - 0 gene_id "W7K_20360"; transcript_id "KOE97461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 148539 149816 . - . gene_id "W7K_20365"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 148539 149816 . - . gene_id "W7K_20365"; transcript_id "KOE97462"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 148539 149816 . - . gene_id "W7K_20365"; transcript_id "KOE97462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97462-1"; +contig07 ena CDS 148542 149816 . - 0 gene_id "W7K_20365"; transcript_id "KOE97462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97462"; +contig07 ena start_codon 149814 149816 . - 0 gene_id "W7K_20365"; transcript_id "KOE97462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 148539 148541 . - 0 gene_id "W7K_20365"; transcript_id "KOE97462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena gene 149813 150958 . - . gene_id "W7K_20370"; gene_source "ena"; gene_biotype "protein_coding"; +contig07 ena transcript 149813 150958 . - . gene_id "W7K_20370"; transcript_id "KOE97463"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena exon 149813 150958 . - . gene_id "W7K_20370"; transcript_id "KOE97463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97463-1"; +contig07 ena CDS 149816 150958 . - 0 gene_id "W7K_20370"; transcript_id "KOE97463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97463"; +contig07 ena start_codon 150956 150958 . - 0 gene_id "W7K_20370"; transcript_id "KOE97463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig07 ena stop_codon 149813 149815 . - 0 gene_id "W7K_20370"; transcript_id "KOE97463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 1 457 . + . gene_id "W7K_14725"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 1 457 . + . gene_id "W7K_14725"; transcript_id "KOE98339"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 1 457 . + . gene_id "W7K_14725"; transcript_id "KOE98339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98339-1"; +contig20 ena CDS 2 454 . + 0 gene_id "W7K_14725"; transcript_id "KOE98339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98339"; +contig20 ena stop_codon 455 457 . + 0 gene_id "W7K_14725"; transcript_id "KOE98339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena five_prime_utr 1 1 . + . gene_id "W7K_14725"; transcript_id "KOE98339"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 493 1362 . + . gene_id "W7K_14730"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 493 1362 . + . gene_id "W7K_14730"; transcript_id "KOE98340"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 493 1362 . + . gene_id "W7K_14730"; transcript_id "KOE98340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98340-1"; +contig20 ena CDS 493 1359 . + 0 gene_id "W7K_14730"; transcript_id "KOE98340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98340"; +contig20 ena start_codon 493 495 . + 0 gene_id "W7K_14730"; transcript_id "KOE98340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 1360 1362 . + 0 gene_id "W7K_14730"; transcript_id "KOE98340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 1359 1955 . + . gene_id "W7K_14735"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 1359 1955 . + . gene_id "W7K_14735"; transcript_id "KOE98341"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 1359 1955 . + . gene_id "W7K_14735"; transcript_id "KOE98341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98341-1"; +contig20 ena CDS 1359 1952 . + 0 gene_id "W7K_14735"; transcript_id "KOE98341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98341"; +contig20 ena start_codon 1359 1361 . + 0 gene_id "W7K_14735"; transcript_id "KOE98341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 1953 1955 . + 0 gene_id "W7K_14735"; transcript_id "KOE98341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 1958 3025 . + . gene_id "W7K_14740"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 1958 3025 . + . gene_id "W7K_14740"; transcript_id "KOE98447"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 1958 3025 . + . gene_id "W7K_14740"; transcript_id "KOE98447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98447-1"; +contig20 ena CDS 1958 3022 . + 0 gene_id "W7K_14740"; transcript_id "KOE98447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98447"; +contig20 ena start_codon 1958 1960 . + 0 gene_id "W7K_14740"; transcript_id "KOE98447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 3023 3025 . + 0 gene_id "W7K_14740"; transcript_id "KOE98447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 3186 5777 . - . gene_id "W7K_14745"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 3186 5777 . - . gene_id "W7K_14745"; transcript_id "KOE98342"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 3186 5777 . - . gene_id "W7K_14745"; transcript_id "KOE98342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98342-1"; +contig20 ena CDS 3189 5777 . - 0 gene_id "W7K_14745"; transcript_id "KOE98342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98342"; +contig20 ena start_codon 5775 5777 . - 0 gene_id "W7K_14745"; transcript_id "KOE98342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 3186 3188 . - 0 gene_id "W7K_14745"; transcript_id "KOE98342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 5818 6216 . - . gene_id "W7K_14750"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 5818 6216 . - . gene_id "W7K_14750"; transcript_id "KOE98343"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 5818 6216 . - . gene_id "W7K_14750"; transcript_id "KOE98343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98343-1"; +contig20 ena CDS 5821 6216 . - 0 gene_id "W7K_14750"; transcript_id "KOE98343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98343"; +contig20 ena start_codon 6214 6216 . - 0 gene_id "W7K_14750"; transcript_id "KOE98343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 5818 5820 . - 0 gene_id "W7K_14750"; transcript_id "KOE98343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 6223 6447 . - . gene_id "W7K_14755"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 6223 6447 . - . gene_id "W7K_14755"; transcript_id "KOE98344"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 6223 6447 . - . gene_id "W7K_14755"; transcript_id "KOE98344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98344-1"; +contig20 ena CDS 6226 6447 . - 0 gene_id "W7K_14755"; transcript_id "KOE98344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98344"; +contig20 ena start_codon 6445 6447 . - 0 gene_id "W7K_14755"; transcript_id "KOE98344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 6223 6225 . - 0 gene_id "W7K_14755"; transcript_id "KOE98344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 6749 9502 . + . gene_id "W7K_14760"; gene_name "acnA"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 6749 9502 . + . gene_id "W7K_14760"; transcript_id "KOE98345"; gene_name "acnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "acnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 6749 9502 . + . gene_id "W7K_14760"; transcript_id "KOE98345"; exon_number "1"; gene_name "acnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "acnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98345-1"; +contig20 ena CDS 6749 9499 . + 0 gene_id "W7K_14760"; transcript_id "KOE98345"; exon_number "1"; gene_name "acnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "acnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98345"; +contig20 ena start_codon 6749 6751 . + 0 gene_id "W7K_14760"; transcript_id "KOE98345"; exon_number "1"; gene_name "acnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "acnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 9500 9502 . + 0 gene_id "W7K_14760"; transcript_id "KOE98345"; exon_number "1"; gene_name "acnA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "acnA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 9689 11239 . - . gene_id "W7K_14765"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 9689 11239 . - . gene_id "W7K_14765"; transcript_id "KOE98346"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 9689 11239 . - . gene_id "W7K_14765"; transcript_id "KOE98346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98346-1"; +contig20 ena CDS 9692 11239 . - 0 gene_id "W7K_14765"; transcript_id "KOE98346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98346"; +contig20 ena start_codon 11237 11239 . - 0 gene_id "W7K_14765"; transcript_id "KOE98346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 9689 9691 . - 0 gene_id "W7K_14765"; transcript_id "KOE98346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 11410 12000 . + . gene_id "W7K_14770"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 11410 12000 . + . gene_id "W7K_14770"; transcript_id "KOE98347"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 11410 12000 . + . gene_id "W7K_14770"; transcript_id "KOE98347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98347-1"; +contig20 ena CDS 11410 11997 . + 0 gene_id "W7K_14770"; transcript_id "KOE98347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98347"; +contig20 ena start_codon 11410 11412 . + 0 gene_id "W7K_14770"; transcript_id "KOE98347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 11998 12000 . + 0 gene_id "W7K_14770"; transcript_id "KOE98347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 12041 13513 . + . gene_id "W7K_14775"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 12041 13513 . + . gene_id "W7K_14775"; transcript_id "KOE98348"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 12041 13513 . + . gene_id "W7K_14775"; transcript_id "KOE98348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98348-1"; +contig20 ena CDS 12041 13510 . + 0 gene_id "W7K_14775"; transcript_id "KOE98348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98348"; +contig20 ena start_codon 12041 12043 . + 0 gene_id "W7K_14775"; transcript_id "KOE98348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 13511 13513 . + 0 gene_id "W7K_14775"; transcript_id "KOE98348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 13615 15297 . + . gene_id "W7K_14780"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 13615 15297 . + . gene_id "W7K_14780"; transcript_id "KOE98349"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 13615 15297 . + . gene_id "W7K_14780"; transcript_id "KOE98349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98349-1"; +contig20 ena CDS 13615 15294 . + 0 gene_id "W7K_14780"; transcript_id "KOE98349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98349"; +contig20 ena start_codon 13615 13617 . + 0 gene_id "W7K_14780"; transcript_id "KOE98349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 15295 15297 . + 0 gene_id "W7K_14780"; transcript_id "KOE98349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 15469 17145 . + . gene_id "W7K_14785"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 15469 17145 . + . gene_id "W7K_14785"; transcript_id "KOE98350"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 15469 17145 . + . gene_id "W7K_14785"; transcript_id "KOE98350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98350-1"; +contig20 ena CDS 15469 17142 . + 0 gene_id "W7K_14785"; transcript_id "KOE98350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98350"; +contig20 ena start_codon 15469 15471 . + 0 gene_id "W7K_14785"; transcript_id "KOE98350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 17143 17145 . + 0 gene_id "W7K_14785"; transcript_id "KOE98350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 17345 18214 . + . gene_id "W7K_14790"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 17345 18214 . + . gene_id "W7K_14790"; transcript_id "KOE98351"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 17345 18214 . + . gene_id "W7K_14790"; transcript_id "KOE98351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98351-1"; +contig20 ena CDS 17345 18211 . + 0 gene_id "W7K_14790"; transcript_id "KOE98351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98351"; +contig20 ena start_codon 17345 17347 . + 0 gene_id "W7K_14790"; transcript_id "KOE98351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 18212 18214 . + 0 gene_id "W7K_14790"; transcript_id "KOE98351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 18227 20407 . - . gene_id "W7K_14795"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 18227 20407 . - . gene_id "W7K_14795"; transcript_id "KOE98448"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 18227 20407 . - . gene_id "W7K_14795"; transcript_id "KOE98448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98448-1"; +contig20 ena CDS 18230 20407 . - 0 gene_id "W7K_14795"; transcript_id "KOE98448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98448"; +contig20 ena start_codon 20405 20407 . - 0 gene_id "W7K_14795"; transcript_id "KOE98448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 18227 18229 . - 0 gene_id "W7K_14795"; transcript_id "KOE98448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 20952 22091 . - . gene_id "W7K_14800"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 20952 22091 . - . gene_id "W7K_14800"; transcript_id "KOE98352"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 20952 22091 . - . gene_id "W7K_14800"; transcript_id "KOE98352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98352-1"; +contig20 ena CDS 20955 22091 . - 0 gene_id "W7K_14800"; transcript_id "KOE98352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98352"; +contig20 ena start_codon 22089 22091 . - 0 gene_id "W7K_14800"; transcript_id "KOE98352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 20952 20954 . - 0 gene_id "W7K_14800"; transcript_id "KOE98352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 22297 23808 . - . gene_id "W7K_14805"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 22297 23808 . - . gene_id "W7K_14805"; transcript_id "KOE98353"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 22297 23808 . - . gene_id "W7K_14805"; transcript_id "KOE98353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98353-1"; +contig20 ena CDS 22300 23808 . - 0 gene_id "W7K_14805"; transcript_id "KOE98353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98353"; +contig20 ena start_codon 23806 23808 . - 0 gene_id "W7K_14805"; transcript_id "KOE98353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 22297 22299 . - 0 gene_id "W7K_14805"; transcript_id "KOE98353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 23973 25613 . - . gene_id "W7K_14810"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 23973 25613 . - . gene_id "W7K_14810"; transcript_id "KOE98354"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 23973 25613 . - . gene_id "W7K_14810"; transcript_id "KOE98354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98354-1"; +contig20 ena CDS 23976 25613 . - 0 gene_id "W7K_14810"; transcript_id "KOE98354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98354"; +contig20 ena start_codon 25611 25613 . - 0 gene_id "W7K_14810"; transcript_id "KOE98354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 23973 23975 . - 0 gene_id "W7K_14810"; transcript_id "KOE98354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 25677 27062 . - . gene_id "W7K_14815"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 25677 27062 . - . gene_id "W7K_14815"; transcript_id "KOE98355"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 25677 27062 . - . gene_id "W7K_14815"; transcript_id "KOE98355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98355-1"; +contig20 ena CDS 25680 27062 . - 0 gene_id "W7K_14815"; transcript_id "KOE98355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98355"; +contig20 ena start_codon 27060 27062 . - 0 gene_id "W7K_14815"; transcript_id "KOE98355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 25677 25679 . - 0 gene_id "W7K_14815"; transcript_id "KOE98355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 27614 28396 . - . gene_id "W7K_14820"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 27614 28396 . - . gene_id "W7K_14820"; transcript_id "KOE98356"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 27614 28396 . - . gene_id "W7K_14820"; transcript_id "KOE98356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98356-1"; +contig20 ena CDS 27617 28396 . - 0 gene_id "W7K_14820"; transcript_id "KOE98356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98356"; +contig20 ena start_codon 28394 28396 . - 0 gene_id "W7K_14820"; transcript_id "KOE98356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 27614 27616 . - 0 gene_id "W7K_14820"; transcript_id "KOE98356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 28550 29458 . - . gene_id "W7K_14825"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 28550 29458 . - . gene_id "W7K_14825"; transcript_id "KOE98449"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 28550 29458 . - . gene_id "W7K_14825"; transcript_id "KOE98449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98449-1"; +contig20 ena CDS 28553 29458 . - 0 gene_id "W7K_14825"; transcript_id "KOE98449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98449"; +contig20 ena start_codon 29456 29458 . - 0 gene_id "W7K_14825"; transcript_id "KOE98449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 28550 28552 . - 0 gene_id "W7K_14825"; transcript_id "KOE98449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 29746 30606 . - . gene_id "W7K_14830"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 29746 30606 . - . gene_id "W7K_14830"; transcript_id "KOE98357"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 29746 30606 . - . gene_id "W7K_14830"; transcript_id "KOE98357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98357-1"; +contig20 ena CDS 29749 30606 . - 0 gene_id "W7K_14830"; transcript_id "KOE98357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98357"; +contig20 ena start_codon 30604 30606 . - 0 gene_id "W7K_14830"; transcript_id "KOE98357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 29746 29748 . - 0 gene_id "W7K_14830"; transcript_id "KOE98357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 30782 31984 . + . gene_id "W7K_14835"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 30782 31984 . + . gene_id "W7K_14835"; transcript_id "KOE98358"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 30782 31984 . + . gene_id "W7K_14835"; transcript_id "KOE98358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98358-1"; +contig20 ena CDS 30782 31981 . + 0 gene_id "W7K_14835"; transcript_id "KOE98358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98358"; +contig20 ena start_codon 30782 30784 . + 0 gene_id "W7K_14835"; transcript_id "KOE98358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 31982 31984 . + 0 gene_id "W7K_14835"; transcript_id "KOE98358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 31994 32980 . + . gene_id "W7K_14840"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 31994 32980 . + . gene_id "W7K_14840"; transcript_id "KOE98359"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 31994 32980 . + . gene_id "W7K_14840"; transcript_id "KOE98359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98359-1"; +contig20 ena CDS 31994 32977 . + 0 gene_id "W7K_14840"; transcript_id "KOE98359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98359"; +contig20 ena start_codon 31994 31996 . + 0 gene_id "W7K_14840"; transcript_id "KOE98359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 32978 32980 . + 0 gene_id "W7K_14840"; transcript_id "KOE98359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 33042 35951 . - . gene_id "W7K_14845"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 33042 35951 . - . gene_id "W7K_14845"; transcript_id "KOE98360"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 33042 35951 . - . gene_id "W7K_14845"; transcript_id "KOE98360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98360-1"; +contig20 ena CDS 33045 35951 . - 0 gene_id "W7K_14845"; transcript_id "KOE98360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98360"; +contig20 ena start_codon 35949 35951 . - 0 gene_id "W7K_14845"; transcript_id "KOE98360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 33042 33044 . - 0 gene_id "W7K_14845"; transcript_id "KOE98360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 36097 37854 . - . gene_id "W7K_14850"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 36097 37854 . - . gene_id "W7K_14850"; transcript_id "KOE98450"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 36097 37854 . - . gene_id "W7K_14850"; transcript_id "KOE98450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98450-1"; +contig20 ena CDS 36100 37854 . - 0 gene_id "W7K_14850"; transcript_id "KOE98450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98450"; +contig20 ena start_codon 37852 37854 . - 0 gene_id "W7K_14850"; transcript_id "KOE98450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 36097 36099 . - 0 gene_id "W7K_14850"; transcript_id "KOE98450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 37976 39019 . + . gene_id "W7K_14855"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 37976 39019 . + . gene_id "W7K_14855"; transcript_id "KOE98361"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 37976 39019 . + . gene_id "W7K_14855"; transcript_id "KOE98361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98361-1"; +contig20 ena CDS 37976 39016 . + 0 gene_id "W7K_14855"; transcript_id "KOE98361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98361"; +contig20 ena start_codon 37976 37978 . + 0 gene_id "W7K_14855"; transcript_id "KOE98361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 39017 39019 . + 0 gene_id "W7K_14855"; transcript_id "KOE98361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 39020 40090 . + . gene_id "W7K_14860"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 39020 40090 . + . gene_id "W7K_14860"; transcript_id "KOE98362"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 39020 40090 . + . gene_id "W7K_14860"; transcript_id "KOE98362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98362-1"; +contig20 ena CDS 39020 40087 . + 0 gene_id "W7K_14860"; transcript_id "KOE98362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98362"; +contig20 ena start_codon 39020 39022 . + 0 gene_id "W7K_14860"; transcript_id "KOE98362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 40088 40090 . + 0 gene_id "W7K_14860"; transcript_id "KOE98362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 40129 41049 . - . gene_id "W7K_14865"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 40129 41049 . - . gene_id "W7K_14865"; transcript_id "KOE98363"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 40129 41049 . - . gene_id "W7K_14865"; transcript_id "KOE98363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98363-1"; +contig20 ena CDS 40132 41049 . - 0 gene_id "W7K_14865"; transcript_id "KOE98363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98363"; +contig20 ena start_codon 41047 41049 . - 0 gene_id "W7K_14865"; transcript_id "KOE98363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 40129 40131 . - 0 gene_id "W7K_14865"; transcript_id "KOE98363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 41054 41530 . - . gene_id "W7K_14870"; gene_name "greA"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 41054 41530 . - . gene_id "W7K_14870"; transcript_id "KOE98364"; gene_name "greA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "greA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 41054 41530 . - . gene_id "W7K_14870"; transcript_id "KOE98364"; exon_number "1"; gene_name "greA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "greA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98364-1"; +contig20 ena CDS 41057 41530 . - 0 gene_id "W7K_14870"; transcript_id "KOE98364"; exon_number "1"; gene_name "greA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "greA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98364"; +contig20 ena start_codon 41528 41530 . - 0 gene_id "W7K_14870"; transcript_id "KOE98364"; exon_number "1"; gene_name "greA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "greA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 41054 41056 . - 0 gene_id "W7K_14870"; transcript_id "KOE98364"; exon_number "1"; gene_name "greA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "greA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 41527 44769 . - . gene_id "W7K_14875"; gene_name "carB"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 41527 44769 . - . gene_id "W7K_14875"; transcript_id "KOE98365"; gene_name "carB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "carB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 41527 44769 . - . gene_id "W7K_14875"; transcript_id "KOE98365"; exon_number "1"; gene_name "carB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "carB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98365-1"; +contig20 ena CDS 41530 44769 . - 0 gene_id "W7K_14875"; transcript_id "KOE98365"; exon_number "1"; gene_name "carB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "carB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98365"; +contig20 ena start_codon 44767 44769 . - 0 gene_id "W7K_14875"; transcript_id "KOE98365"; exon_number "1"; gene_name "carB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "carB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 41527 41529 . - 0 gene_id "W7K_14875"; transcript_id "KOE98365"; exon_number "1"; gene_name "carB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "carB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 44918 46045 . - . gene_id "W7K_14880"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 44918 46045 . - . gene_id "W7K_14880"; transcript_id "KOE98366"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 44918 46045 . - . gene_id "W7K_14880"; transcript_id "KOE98366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98366-1"; +contig20 ena CDS 44921 46045 . - 0 gene_id "W7K_14880"; transcript_id "KOE98366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98366"; +contig20 ena start_codon 46043 46045 . - 0 gene_id "W7K_14880"; transcript_id "KOE98366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 44918 44920 . - 0 gene_id "W7K_14880"; transcript_id "KOE98366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 46334 47014 . - . gene_id "W7K_14885"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 46334 47014 . - . gene_id "W7K_14885"; transcript_id "KOE98367"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 46334 47014 . - . gene_id "W7K_14885"; transcript_id "KOE98367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98367-1"; +contig20 ena CDS 46337 47014 . - 0 gene_id "W7K_14885"; transcript_id "KOE98367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98367"; +contig20 ena start_codon 47012 47014 . - 0 gene_id "W7K_14885"; transcript_id "KOE98367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 46334 46336 . - 0 gene_id "W7K_14885"; transcript_id "KOE98367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 47135 47914 . + . gene_id "W7K_14890"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 47135 47914 . + . gene_id "W7K_14890"; transcript_id "KOE98368"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 47135 47914 . + . gene_id "W7K_14890"; transcript_id "KOE98368"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98368-1"; +contig20 ena CDS 47135 47911 . + 0 gene_id "W7K_14890"; transcript_id "KOE98368"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98368"; +contig20 ena start_codon 47135 47137 . + 0 gene_id "W7K_14890"; transcript_id "KOE98368"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 47912 47914 . + 0 gene_id "W7K_14890"; transcript_id "KOE98368"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 47919 48314 . + . gene_id "W7K_14895"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 47919 48314 . + . gene_id "W7K_14895"; transcript_id "KOE98369"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 47919 48314 . + . gene_id "W7K_14895"; transcript_id "KOE98369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98369-1"; +contig20 ena CDS 47919 48311 . + 0 gene_id "W7K_14895"; transcript_id "KOE98369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98369"; +contig20 ena start_codon 47919 47921 . + 0 gene_id "W7K_14895"; transcript_id "KOE98369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 48312 48314 . + 0 gene_id "W7K_14895"; transcript_id "KOE98369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 48370 48951 . + . gene_id "W7K_14900"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 48370 48951 . + . gene_id "W7K_14900"; transcript_id "KOE98370"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 48370 48951 . + . gene_id "W7K_14900"; transcript_id "KOE98370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98370-1"; +contig20 ena CDS 48370 48948 . + 0 gene_id "W7K_14900"; transcript_id "KOE98370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98370"; +contig20 ena start_codon 48370 48372 . + 0 gene_id "W7K_14900"; transcript_id "KOE98370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 48949 48951 . + 0 gene_id "W7K_14900"; transcript_id "KOE98370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 49068 49529 . + . gene_id "W7K_14905"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 49068 49529 . + . gene_id "W7K_14905"; transcript_id "KOE98371"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 49068 49529 . + . gene_id "W7K_14905"; transcript_id "KOE98371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98371-1"; +contig20 ena CDS 49068 49526 . + 0 gene_id "W7K_14905"; transcript_id "KOE98371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98371"; +contig20 ena start_codon 49068 49070 . + 0 gene_id "W7K_14905"; transcript_id "KOE98371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 49527 49529 . + 0 gene_id "W7K_14905"; transcript_id "KOE98371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 49609 49863 . - . gene_id "W7K_14910"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 49609 49863 . - . gene_id "W7K_14910"; transcript_id "KOE98372"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 49609 49863 . - . gene_id "W7K_14910"; transcript_id "KOE98372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98372-1"; +contig20 ena CDS 49612 49863 . - 0 gene_id "W7K_14910"; transcript_id "KOE98372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98372"; +contig20 ena start_codon 49861 49863 . - 0 gene_id "W7K_14910"; transcript_id "KOE98372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 49609 49611 . - 0 gene_id "W7K_14910"; transcript_id "KOE98372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 49863 51728 . - . gene_id "W7K_14915"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 49863 51728 . - . gene_id "W7K_14915"; transcript_id "KOE98373"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 49863 51728 . - . gene_id "W7K_14915"; transcript_id "KOE98373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98373-1"; +contig20 ena CDS 49866 51728 . - 0 gene_id "W7K_14915"; transcript_id "KOE98373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98373"; +contig20 ena start_codon 51726 51728 . - 0 gene_id "W7K_14915"; transcript_id "KOE98373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 49863 49865 . - 0 gene_id "W7K_14915"; transcript_id "KOE98373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 51725 51979 . - . gene_id "W7K_14920"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 51725 51979 . - . gene_id "W7K_14920"; transcript_id "KOE98374"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 51725 51979 . - . gene_id "W7K_14920"; transcript_id "KOE98374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98374-1"; +contig20 ena CDS 51728 51979 . - 0 gene_id "W7K_14920"; transcript_id "KOE98374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98374"; +contig20 ena start_codon 51977 51979 . - 0 gene_id "W7K_14920"; transcript_id "KOE98374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 51725 51727 . - 0 gene_id "W7K_14920"; transcript_id "KOE98374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 52099 52887 . + . gene_id "W7K_14925"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 52099 52887 . + . gene_id "W7K_14925"; transcript_id "KOE98375"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 52099 52887 . + . gene_id "W7K_14925"; transcript_id "KOE98375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98375-1"; +contig20 ena CDS 52099 52884 . + 0 gene_id "W7K_14925"; transcript_id "KOE98375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98375"; +contig20 ena start_codon 52099 52101 . + 0 gene_id "W7K_14925"; transcript_id "KOE98375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 52885 52887 . + 0 gene_id "W7K_14925"; transcript_id "KOE98375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 52890 53291 . + . gene_id "W7K_14930"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 52890 53291 . + . gene_id "W7K_14930"; transcript_id "KOE98376"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 52890 53291 . + . gene_id "W7K_14930"; transcript_id "KOE98376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98376-1"; +contig20 ena CDS 52890 53288 . + 0 gene_id "W7K_14930"; transcript_id "KOE98376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98376"; +contig20 ena start_codon 52890 52892 . + 0 gene_id "W7K_14930"; transcript_id "KOE98376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 53289 53291 . + 0 gene_id "W7K_14930"; transcript_id "KOE98376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 53288 54184 . + . gene_id "W7K_14935"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 53288 54184 . + . gene_id "W7K_14935"; transcript_id "KOE98377"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 53288 54184 . + . gene_id "W7K_14935"; transcript_id "KOE98377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98377-1"; +contig20 ena CDS 53288 54181 . + 0 gene_id "W7K_14935"; transcript_id "KOE98377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98377"; +contig20 ena start_codon 53288 53290 . + 0 gene_id "W7K_14935"; transcript_id "KOE98377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 54182 54184 . + 0 gene_id "W7K_14935"; transcript_id "KOE98377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 54285 55055 . + . gene_id "W7K_14940"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 54285 55055 . + . gene_id "W7K_14940"; transcript_id "KOE98378"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 54285 55055 . + . gene_id "W7K_14940"; transcript_id "KOE98378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98378-1"; +contig20 ena CDS 54285 55052 . + 0 gene_id "W7K_14940"; transcript_id "KOE98378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98378"; +contig20 ena start_codon 54285 54287 . + 0 gene_id "W7K_14940"; transcript_id "KOE98378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 55053 55055 . + 0 gene_id "W7K_14940"; transcript_id "KOE98378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 55104 55670 . + . gene_id "W7K_14945"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 55104 55670 . + . gene_id "W7K_14945"; transcript_id "KOE98379"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 55104 55670 . + . gene_id "W7K_14945"; transcript_id "KOE98379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98379-1"; +contig20 ena CDS 55104 55667 . + 0 gene_id "W7K_14945"; transcript_id "KOE98379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98379"; +contig20 ena start_codon 55104 55106 . + 0 gene_id "W7K_14945"; transcript_id "KOE98379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 55668 55670 . + 0 gene_id "W7K_14945"; transcript_id "KOE98379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 55835 56527 . - . gene_id "W7K_14950"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 55835 56527 . - . gene_id "W7K_14950"; transcript_id "KOE98380"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 55835 56527 . - . gene_id "W7K_14950"; transcript_id "KOE98380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98380-1"; +contig20 ena CDS 55838 56527 . - 0 gene_id "W7K_14950"; transcript_id "KOE98380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98380"; +contig20 ena start_codon 56525 56527 . - 0 gene_id "W7K_14950"; transcript_id "KOE98380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 55835 55837 . - 0 gene_id "W7K_14950"; transcript_id "KOE98380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 56611 57003 . - . gene_id "W7K_14955"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 56611 57003 . - . gene_id "W7K_14955"; transcript_id "KOE98381"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 56611 57003 . - . gene_id "W7K_14955"; transcript_id "KOE98381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98381-1"; +contig20 ena CDS 56614 57003 . - 0 gene_id "W7K_14955"; transcript_id "KOE98381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98381"; +contig20 ena start_codon 57001 57003 . - 0 gene_id "W7K_14955"; transcript_id "KOE98381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 56611 56613 . - 0 gene_id "W7K_14955"; transcript_id "KOE98381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 56984 60133 . - . gene_id "W7K_14960"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 56984 60133 . - . gene_id "W7K_14960"; transcript_id "KOE98382"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 56984 60133 . - . gene_id "W7K_14960"; transcript_id "KOE98382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98382-1"; +contig20 ena CDS 56987 60133 . - 0 gene_id "W7K_14960"; transcript_id "KOE98382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98382"; +contig20 ena start_codon 60131 60133 . - 0 gene_id "W7K_14960"; transcript_id "KOE98382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 56984 56986 . - 0 gene_id "W7K_14960"; transcript_id "KOE98382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 60170 61327 . - . gene_id "W7K_14965"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 60170 61327 . - . gene_id "W7K_14965"; transcript_id "KOE98383"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 60170 61327 . - . gene_id "W7K_14965"; transcript_id "KOE98383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98383-1"; +contig20 ena CDS 60173 61327 . - 0 gene_id "W7K_14965"; transcript_id "KOE98383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98383"; +contig20 ena start_codon 61325 61327 . - 0 gene_id "W7K_14965"; transcript_id "KOE98383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 60170 60172 . - 0 gene_id "W7K_14965"; transcript_id "KOE98383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 61424 62173 . + . gene_id "W7K_14970"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 61424 62173 . + . gene_id "W7K_14970"; transcript_id "KOE98384"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 61424 62173 . + . gene_id "W7K_14970"; transcript_id "KOE98384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98384-1"; +contig20 ena CDS 61424 62170 . + 0 gene_id "W7K_14970"; transcript_id "KOE98384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98384"; +contig20 ena start_codon 61424 61426 . + 0 gene_id "W7K_14970"; transcript_id "KOE98384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 62171 62173 . + 0 gene_id "W7K_14970"; transcript_id "KOE98384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 62173 63249 . + . gene_id "W7K_14975"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 62173 63249 . + . gene_id "W7K_14975"; transcript_id "KOE98385"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 62173 63249 . + . gene_id "W7K_14975"; transcript_id "KOE98385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98385-1"; +contig20 ena CDS 62173 63246 . + 0 gene_id "W7K_14975"; transcript_id "KOE98385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98385"; +contig20 ena start_codon 62173 62175 . + 0 gene_id "W7K_14975"; transcript_id "KOE98385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 63247 63249 . + 0 gene_id "W7K_14975"; transcript_id "KOE98385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 63227 64987 . - . gene_id "W7K_14980"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 63227 64987 . - . gene_id "W7K_14980"; transcript_id "KOE98386"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 63227 64987 . - . gene_id "W7K_14980"; transcript_id "KOE98386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98386-1"; +contig20 ena CDS 63230 64987 . - 0 gene_id "W7K_14980"; transcript_id "KOE98386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98386"; +contig20 ena start_codon 64985 64987 . - 0 gene_id "W7K_14980"; transcript_id "KOE98386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 63227 63229 . - 0 gene_id "W7K_14980"; transcript_id "KOE98386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 65133 65432 . - . gene_id "W7K_14985"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 65133 65432 . - . gene_id "W7K_14985"; transcript_id "KOE98387"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 65133 65432 . - . gene_id "W7K_14985"; transcript_id "KOE98387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98387-1"; +contig20 ena CDS 65136 65432 . - 0 gene_id "W7K_14985"; transcript_id "KOE98387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98387"; +contig20 ena start_codon 65430 65432 . - 0 gene_id "W7K_14985"; transcript_id "KOE98387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 65133 65135 . - 0 gene_id "W7K_14985"; transcript_id "KOE98387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 65495 66883 . - . gene_id "W7K_14990"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 65495 66883 . - . gene_id "W7K_14990"; transcript_id "KOE98388"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 65495 66883 . - . gene_id "W7K_14990"; transcript_id "KOE98388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98388-1"; +contig20 ena CDS 65498 66883 . - 0 gene_id "W7K_14990"; transcript_id "KOE98388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98388"; +contig20 ena start_codon 66881 66883 . - 0 gene_id "W7K_14990"; transcript_id "KOE98388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 65495 65497 . - 0 gene_id "W7K_14990"; transcript_id "KOE98388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 67053 68294 . + . gene_id "W7K_14995"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 67053 68294 . + . gene_id "W7K_14995"; transcript_id "KOE98389"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 67053 68294 . + . gene_id "W7K_14995"; transcript_id "KOE98389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98389-1"; +contig20 ena CDS 67053 68291 . + 0 gene_id "W7K_14995"; transcript_id "KOE98389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98389"; +contig20 ena start_codon 67053 67055 . + 0 gene_id "W7K_14995"; transcript_id "KOE98389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 68292 68294 . + 0 gene_id "W7K_14995"; transcript_id "KOE98389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 68389 68958 . - . gene_id "W7K_15000"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 68389 68958 . - . gene_id "W7K_15000"; transcript_id "KOE98390"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 68389 68958 . - . gene_id "W7K_15000"; transcript_id "KOE98390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98390-1"; +contig20 ena CDS 68392 68958 . - 0 gene_id "W7K_15000"; transcript_id "KOE98390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98390"; +contig20 ena start_codon 68956 68958 . - 0 gene_id "W7K_15000"; transcript_id "KOE98390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 68389 68391 . - 0 gene_id "W7K_15000"; transcript_id "KOE98390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 69137 70612 . + . gene_id "W7K_15005"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 69137 70612 . + . gene_id "W7K_15005"; transcript_id "KOE98391"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 69137 70612 . + . gene_id "W7K_15005"; transcript_id "KOE98391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98391-1"; +contig20 ena CDS 69137 70609 . + 0 gene_id "W7K_15005"; transcript_id "KOE98391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98391"; +contig20 ena start_codon 69137 69139 . + 0 gene_id "W7K_15005"; transcript_id "KOE98391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 70610 70612 . + 0 gene_id "W7K_15005"; transcript_id "KOE98391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 70695 72122 . + . gene_id "W7K_15010"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 70695 72122 . + . gene_id "W7K_15010"; transcript_id "KOE98392"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 70695 72122 . + . gene_id "W7K_15010"; transcript_id "KOE98392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98392-1"; +contig20 ena CDS 70695 72119 . + 0 gene_id "W7K_15010"; transcript_id "KOE98392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98392"; +contig20 ena start_codon 70695 70697 . + 0 gene_id "W7K_15010"; transcript_id "KOE98392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 72120 72122 . + 0 gene_id "W7K_15010"; transcript_id "KOE98392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 72695 73336 . + . gene_id "W7K_15015"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 72695 73336 . + . gene_id "W7K_15015"; transcript_id "KOE98393"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 72695 73336 . + . gene_id "W7K_15015"; transcript_id "KOE98393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98393-1"; +contig20 ena CDS 72695 73333 . + 0 gene_id "W7K_15015"; transcript_id "KOE98393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98393"; +contig20 ena start_codon 72695 72697 . + 0 gene_id "W7K_15015"; transcript_id "KOE98393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 73334 73336 . + 0 gene_id "W7K_15015"; transcript_id "KOE98393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 73429 73986 . + . gene_id "W7K_15020"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 73429 73986 . + . gene_id "W7K_15020"; transcript_id "KOE98394"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 73429 73986 . + . gene_id "W7K_15020"; transcript_id "KOE98394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98394-1"; +contig20 ena CDS 73429 73983 . + 0 gene_id "W7K_15020"; transcript_id "KOE98394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98394"; +contig20 ena start_codon 73429 73431 . + 0 gene_id "W7K_15020"; transcript_id "KOE98394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 73984 73986 . + 0 gene_id "W7K_15020"; transcript_id "KOE98394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 73990 74685 . + . gene_id "W7K_15025"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 73990 74685 . + . gene_id "W7K_15025"; transcript_id "KOE98395"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 73990 74685 . + . gene_id "W7K_15025"; transcript_id "KOE98395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98395-1"; +contig20 ena CDS 73990 74682 . + 0 gene_id "W7K_15025"; transcript_id "KOE98395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98395"; +contig20 ena start_codon 73990 73992 . + 0 gene_id "W7K_15025"; transcript_id "KOE98395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 74683 74685 . + 0 gene_id "W7K_15025"; transcript_id "KOE98395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 74801 77419 . - . gene_id "W7K_15030"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 74801 77419 . - . gene_id "W7K_15030"; transcript_id "KOE98396"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 74801 77419 . - . gene_id "W7K_15030"; transcript_id "KOE98396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98396-1"; +contig20 ena CDS 74804 77419 . - 0 gene_id "W7K_15030"; transcript_id "KOE98396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98396"; +contig20 ena start_codon 77417 77419 . - 0 gene_id "W7K_15030"; transcript_id "KOE98396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 74801 74803 . - 0 gene_id "W7K_15030"; transcript_id "KOE98396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 77521 78747 . - . gene_id "W7K_15035"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 77521 78747 . - . gene_id "W7K_15035"; transcript_id "KOE98397"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 77521 78747 . - . gene_id "W7K_15035"; transcript_id "KOE98397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98397-1"; +contig20 ena CDS 77524 78747 . - 0 gene_id "W7K_15035"; transcript_id "KOE98397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98397"; +contig20 ena start_codon 78745 78747 . - 0 gene_id "W7K_15035"; transcript_id "KOE98397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 77521 77523 . - 0 gene_id "W7K_15035"; transcript_id "KOE98397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 78744 79739 . - . gene_id "W7K_15040"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 78744 79739 . - . gene_id "W7K_15040"; transcript_id "KOE98398"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 78744 79739 . - . gene_id "W7K_15040"; transcript_id "KOE98398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98398-1"; +contig20 ena CDS 78747 79739 . - 0 gene_id "W7K_15040"; transcript_id "KOE98398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98398"; +contig20 ena start_codon 79737 79739 . - 0 gene_id "W7K_15040"; transcript_id "KOE98398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 78744 78746 . - 0 gene_id "W7K_15040"; transcript_id "KOE98398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 79747 81060 . - . gene_id "W7K_15045"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 79747 81060 . - . gene_id "W7K_15045"; transcript_id "KOE98399"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 79747 81060 . - . gene_id "W7K_15045"; transcript_id "KOE98399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98399-1"; +contig20 ena CDS 79750 81060 . - 0 gene_id "W7K_15045"; transcript_id "KOE98399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98399"; +contig20 ena start_codon 81058 81060 . - 0 gene_id "W7K_15045"; transcript_id "KOE98399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 79747 79749 . - 0 gene_id "W7K_15045"; transcript_id "KOE98399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 81121 82170 . - . gene_id "W7K_15050"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 81121 82170 . - . gene_id "W7K_15050"; transcript_id "KOE98400"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 81121 82170 . - . gene_id "W7K_15050"; transcript_id "KOE98400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98400-1"; +contig20 ena CDS 81124 82170 . - 0 gene_id "W7K_15050"; transcript_id "KOE98400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98400"; +contig20 ena start_codon 82168 82170 . - 0 gene_id "W7K_15050"; transcript_id "KOE98400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 81121 81123 . - 0 gene_id "W7K_15050"; transcript_id "KOE98400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 82267 84732 . - . gene_id "W7K_15055"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 82267 84732 . - . gene_id "W7K_15055"; transcript_id "KOE98401"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 82267 84732 . - . gene_id "W7K_15055"; transcript_id "KOE98401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98401-1"; +contig20 ena CDS 82270 84732 . - 0 gene_id "W7K_15055"; transcript_id "KOE98401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98401"; +contig20 ena start_codon 84730 84732 . - 0 gene_id "W7K_15055"; transcript_id "KOE98401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 82267 82269 . - 0 gene_id "W7K_15055"; transcript_id "KOE98401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 85765 88842 . + . gene_id "W7K_15060"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 85765 88842 . + . gene_id "W7K_15060"; transcript_id "KOE98402"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 85765 88842 . + . gene_id "W7K_15060"; transcript_id "KOE98402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98402-1"; +contig20 ena CDS 85765 88839 . + 0 gene_id "W7K_15060"; transcript_id "KOE98402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98402"; +contig20 ena start_codon 85765 85767 . + 0 gene_id "W7K_15060"; transcript_id "KOE98402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 88840 88842 . + 0 gene_id "W7K_15060"; transcript_id "KOE98402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 89042 89236 . + . gene_id "W7K_15065"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 89042 89236 . + . gene_id "W7K_15065"; transcript_id "KOE98403"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 89042 89236 . + . gene_id "W7K_15065"; transcript_id "KOE98403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98403-1"; +contig20 ena CDS 89042 89233 . + 0 gene_id "W7K_15065"; transcript_id "KOE98403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98403"; +contig20 ena start_codon 89042 89044 . + 0 gene_id "W7K_15065"; transcript_id "KOE98403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 89234 89236 . + 0 gene_id "W7K_15065"; transcript_id "KOE98403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 89314 89769 . - . gene_id "W7K_15070"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 89314 89769 . - . gene_id "W7K_15070"; transcript_id "KOE98404"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 89314 89769 . - . gene_id "W7K_15070"; transcript_id "KOE98404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98404-1"; +contig20 ena CDS 89317 89769 . - 0 gene_id "W7K_15070"; transcript_id "KOE98404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98404"; +contig20 ena start_codon 89767 89769 . - 0 gene_id "W7K_15070"; transcript_id "KOE98404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 89314 89316 . - 0 gene_id "W7K_15070"; transcript_id "KOE98404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 89781 92282 . - . gene_id "W7K_15075"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 89781 92282 . - . gene_id "W7K_15075"; transcript_id "KOE98405"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 89781 92282 . - . gene_id "W7K_15075"; transcript_id "KOE98405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98405-1"; +contig20 ena CDS 89784 92282 . - 0 gene_id "W7K_15075"; transcript_id "KOE98405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98405"; +contig20 ena start_codon 92280 92282 . - 0 gene_id "W7K_15075"; transcript_id "KOE98405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 89781 89783 . - 0 gene_id "W7K_15075"; transcript_id "KOE98405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 92411 95368 . - . gene_id "W7K_15080"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 92411 95368 . - . gene_id "W7K_15080"; transcript_id "KOE98406"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 92411 95368 . - . gene_id "W7K_15080"; transcript_id "KOE98406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98406-1"; +contig20 ena CDS 92414 95368 . - 0 gene_id "W7K_15080"; transcript_id "KOE98406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98406"; +contig20 ena start_codon 95366 95368 . - 0 gene_id "W7K_15080"; transcript_id "KOE98406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 92411 92413 . - 0 gene_id "W7K_15080"; transcript_id "KOE98406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 95666 96208 . - . gene_id "W7K_15085"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 95666 96208 . - . gene_id "W7K_15085"; transcript_id "KOE98407"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 95666 96208 . - . gene_id "W7K_15085"; transcript_id "KOE98407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98407-1"; +contig20 ena CDS 95669 96208 . - 0 gene_id "W7K_15085"; transcript_id "KOE98407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98407"; +contig20 ena start_codon 96206 96208 . - 0 gene_id "W7K_15085"; transcript_id "KOE98407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 95666 95668 . - 0 gene_id "W7K_15085"; transcript_id "KOE98407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 96421 97152 . - . gene_id "W7K_15090"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 96421 97152 . - . gene_id "W7K_15090"; transcript_id "KOE98408"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 96421 97152 . - . gene_id "W7K_15090"; transcript_id "KOE98408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98408-1"; +contig20 ena CDS 96424 97152 . - 0 gene_id "W7K_15090"; transcript_id "KOE98408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98408"; +contig20 ena start_codon 97150 97152 . - 0 gene_id "W7K_15090"; transcript_id "KOE98408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 96421 96423 . - 0 gene_id "W7K_15090"; transcript_id "KOE98408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 97149 98147 . - . gene_id "W7K_15095"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 97149 98147 . - . gene_id "W7K_15095"; transcript_id "KOE98409"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 97149 98147 . - . gene_id "W7K_15095"; transcript_id "KOE98409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98409-1"; +contig20 ena CDS 97152 98147 . - 0 gene_id "W7K_15095"; transcript_id "KOE98409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98409"; +contig20 ena start_codon 98145 98147 . - 0 gene_id "W7K_15095"; transcript_id "KOE98409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 97149 97151 . - 0 gene_id "W7K_15095"; transcript_id "KOE98409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 98199 99221 . - . gene_id "W7K_15100"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 98199 99221 . - . gene_id "W7K_15100"; transcript_id "KOE98410"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 98199 99221 . - . gene_id "W7K_15100"; transcript_id "KOE98410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98410-1"; +contig20 ena CDS 98202 99221 . - 0 gene_id "W7K_15100"; transcript_id "KOE98410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98410"; +contig20 ena start_codon 99219 99221 . - 0 gene_id "W7K_15100"; transcript_id "KOE98410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 98199 98201 . - 0 gene_id "W7K_15100"; transcript_id "KOE98410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 99306 99590 . - . gene_id "W7K_15105"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 99306 99590 . - . gene_id "W7K_15105"; transcript_id "KOE98411"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 99306 99590 . - . gene_id "W7K_15105"; transcript_id "KOE98411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98411-1"; +contig20 ena CDS 99309 99590 . - 0 gene_id "W7K_15105"; transcript_id "KOE98411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98411"; +contig20 ena start_codon 99588 99590 . - 0 gene_id "W7K_15105"; transcript_id "KOE98411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 99306 99308 . - 0 gene_id "W7K_15105"; transcript_id "KOE98411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 99625 101214 . - . gene_id "W7K_15110"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 99625 101214 . - . gene_id "W7K_15110"; transcript_id "KOE98412"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 99625 101214 . - . gene_id "W7K_15110"; transcript_id "KOE98412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98412-1"; +contig20 ena CDS 99628 101214 . - 0 gene_id "W7K_15110"; transcript_id "KOE98412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98412"; +contig20 ena start_codon 101212 101214 . - 0 gene_id "W7K_15110"; transcript_id "KOE98412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 99625 99627 . - 0 gene_id "W7K_15110"; transcript_id "KOE98412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 101362 101982 . - . gene_id "W7K_15115"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 101362 101982 . - . gene_id "W7K_15115"; transcript_id "KOE98413"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 101362 101982 . - . gene_id "W7K_15115"; transcript_id "KOE98413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98413-1"; +contig20 ena CDS 101365 101982 . - 0 gene_id "W7K_15115"; transcript_id "KOE98413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98413"; +contig20 ena start_codon 101980 101982 . - 0 gene_id "W7K_15115"; transcript_id "KOE98413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 101362 101364 . - 0 gene_id "W7K_15115"; transcript_id "KOE98413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 101972 102748 . - . gene_id "W7K_15120"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 101972 102748 . - . gene_id "W7K_15120"; transcript_id "KOE98414"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 101972 102748 . - . gene_id "W7K_15120"; transcript_id "KOE98414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98414-1"; +contig20 ena CDS 101975 102748 . - 0 gene_id "W7K_15120"; transcript_id "KOE98414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98414"; +contig20 ena start_codon 102746 102748 . - 0 gene_id "W7K_15120"; transcript_id "KOE98414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 101972 101974 . - 0 gene_id "W7K_15120"; transcript_id "KOE98414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 102742 103476 . - . gene_id "W7K_15125"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 102742 103476 . - . gene_id "W7K_15125"; transcript_id "KOE98415"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 102742 103476 . - . gene_id "W7K_15125"; transcript_id "KOE98415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98415-1"; +contig20 ena CDS 102745 103476 . - 0 gene_id "W7K_15125"; transcript_id "KOE98415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98415"; +contig20 ena start_codon 103474 103476 . - 0 gene_id "W7K_15125"; transcript_id "KOE98415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 102742 102744 . - 0 gene_id "W7K_15125"; transcript_id "KOE98415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 103473 104075 . - . gene_id "W7K_15130"; gene_name "hisH"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 103473 104075 . - . gene_id "W7K_15130"; transcript_id "KOE98416"; gene_name "hisH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 103473 104075 . - . gene_id "W7K_15130"; transcript_id "KOE98416"; exon_number "1"; gene_name "hisH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98416-1"; +contig20 ena CDS 103476 104075 . - 0 gene_id "W7K_15130"; transcript_id "KOE98416"; exon_number "1"; gene_name "hisH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98416"; +contig20 ena start_codon 104073 104075 . - 0 gene_id "W7K_15130"; transcript_id "KOE98416"; exon_number "1"; gene_name "hisH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 103473 103475 . - 0 gene_id "W7K_15130"; transcript_id "KOE98416"; exon_number "1"; gene_name "hisH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 104072 105145 . - . gene_id "W7K_15135"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 104072 105145 . - . gene_id "W7K_15135"; transcript_id "KOE98417"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 104072 105145 . - . gene_id "W7K_15135"; transcript_id "KOE98417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98417-1"; +contig20 ena CDS 104075 105145 . - 0 gene_id "W7K_15135"; transcript_id "KOE98417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98417"; +contig20 ena start_codon 105143 105145 . - 0 gene_id "W7K_15135"; transcript_id "KOE98417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 104072 104074 . - 0 gene_id "W7K_15135"; transcript_id "KOE98417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 105142 106236 . - . gene_id "W7K_15140"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 105142 106236 . - . gene_id "W7K_15140"; transcript_id "KOE98418"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 105142 106236 . - . gene_id "W7K_15140"; transcript_id "KOE98418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98418-1"; +contig20 ena CDS 105145 106236 . - 0 gene_id "W7K_15140"; transcript_id "KOE98418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98418"; +contig20 ena start_codon 106234 106236 . - 0 gene_id "W7K_15140"; transcript_id "KOE98418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 105142 105144 . - 0 gene_id "W7K_15140"; transcript_id "KOE98418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 106233 107528 . - . gene_id "W7K_15145"; gene_name "hisD"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 106233 107528 . - . gene_id "W7K_15145"; transcript_id "KOE98419"; gene_name "hisD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 106233 107528 . - . gene_id "W7K_15145"; transcript_id "KOE98419"; exon_number "1"; gene_name "hisD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98419-1"; +contig20 ena CDS 106236 107528 . - 0 gene_id "W7K_15145"; transcript_id "KOE98419"; exon_number "1"; gene_name "hisD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98419"; +contig20 ena start_codon 107526 107528 . - 0 gene_id "W7K_15145"; transcript_id "KOE98419"; exon_number "1"; gene_name "hisD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 106233 106235 . - 0 gene_id "W7K_15145"; transcript_id "KOE98419"; exon_number "1"; gene_name "hisD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hisD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 107525 108436 . - . gene_id "W7K_15150"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 107525 108436 . - . gene_id "W7K_15150"; transcript_id "KOE98420"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 107525 108436 . - . gene_id "W7K_15150"; transcript_id "KOE98420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98420-1"; +contig20 ena CDS 107528 108436 . - 0 gene_id "W7K_15150"; transcript_id "KOE98420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98420"; +contig20 ena start_codon 108434 108436 . - 0 gene_id "W7K_15150"; transcript_id "KOE98420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 107525 107527 . - 0 gene_id "W7K_15150"; transcript_id "KOE98420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 108471 108797 . - . gene_id "W7K_15155"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 108471 108797 . - . gene_id "W7K_15155"; transcript_id "KOE98421"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 108471 108797 . - . gene_id "W7K_15155"; transcript_id "KOE98421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98421-1"; +contig20 ena CDS 108474 108797 . - 0 gene_id "W7K_15155"; transcript_id "KOE98421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98421"; +contig20 ena start_codon 108795 108797 . - 0 gene_id "W7K_15155"; transcript_id "KOE98421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 108471 108473 . - 0 gene_id "W7K_15155"; transcript_id "KOE98421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 109221 110615 . - . gene_id "W7K_15160"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 109221 110615 . - . gene_id "W7K_15160"; transcript_id "KOE98422"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 109221 110615 . - . gene_id "W7K_15160"; transcript_id "KOE98422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98422-1"; +contig20 ena CDS 109224 110615 . - 0 gene_id "W7K_15160"; transcript_id "KOE98422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98422"; +contig20 ena start_codon 110613 110615 . - 0 gene_id "W7K_15160"; transcript_id "KOE98422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 109221 109223 . - 0 gene_id "W7K_15160"; transcript_id "KOE98422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 110744 111496 . + . gene_id "W7K_15165"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 110744 111496 . + . gene_id "W7K_15165"; transcript_id "KOE98423"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 110744 111496 . + . gene_id "W7K_15165"; transcript_id "KOE98423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98423-1"; +contig20 ena CDS 110744 111493 . + 0 gene_id "W7K_15165"; transcript_id "KOE98423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98423"; +contig20 ena start_codon 110744 110746 . + 0 gene_id "W7K_15165"; transcript_id "KOE98423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 111494 111496 . + 0 gene_id "W7K_15165"; transcript_id "KOE98423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 111626 112915 . - . gene_id "W7K_15170"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 111626 112915 . - . gene_id "W7K_15170"; transcript_id "KOE98424"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 111626 112915 . - . gene_id "W7K_15170"; transcript_id "KOE98424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98424-1"; +contig20 ena CDS 111629 112915 . - 0 gene_id "W7K_15170"; transcript_id "KOE98424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98424"; +contig20 ena start_codon 112913 112915 . - 0 gene_id "W7K_15170"; transcript_id "KOE98424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 111626 111628 . - 0 gene_id "W7K_15170"; transcript_id "KOE98424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 112945 113859 . - . gene_id "W7K_15175"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 112945 113859 . - . gene_id "W7K_15175"; transcript_id "KOE98425"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 112945 113859 . - . gene_id "W7K_15175"; transcript_id "KOE98425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98425-1"; +contig20 ena CDS 112948 113859 . - 0 gene_id "W7K_15175"; transcript_id "KOE98425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98425"; +contig20 ena start_codon 113857 113859 . - 0 gene_id "W7K_15175"; transcript_id "KOE98425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 112945 112947 . - 0 gene_id "W7K_15175"; transcript_id "KOE98425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 113856 116360 . - . gene_id "W7K_15180"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 113856 116360 . - . gene_id "W7K_15180"; transcript_id "KOE98426"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 113856 116360 . - . gene_id "W7K_15180"; transcript_id "KOE98426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98426-1"; +contig20 ena CDS 113859 116360 . - 0 gene_id "W7K_15180"; transcript_id "KOE98426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98426"; +contig20 ena start_codon 116358 116360 . - 0 gene_id "W7K_15180"; transcript_id "KOE98426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 113856 113858 . - 0 gene_id "W7K_15180"; transcript_id "KOE98426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 116718 117668 . - . gene_id "W7K_15185"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 116718 117668 . - . gene_id "W7K_15185"; transcript_id "KOE98427"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 116718 117668 . - . gene_id "W7K_15185"; transcript_id "KOE98427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98427-1"; +contig20 ena CDS 116721 117668 . - 0 gene_id "W7K_15185"; transcript_id "KOE98427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98427"; +contig20 ena start_codon 117666 117668 . - 0 gene_id "W7K_15185"; transcript_id "KOE98427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 116718 116720 . - 0 gene_id "W7K_15185"; transcript_id "KOE98427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 117835 118530 . - . gene_id "W7K_15190"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 117835 118530 . - . gene_id "W7K_15190"; transcript_id "KOE98428"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 117835 118530 . - . gene_id "W7K_15190"; transcript_id "KOE98428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98428-1"; +contig20 ena CDS 117838 118530 . - 0 gene_id "W7K_15190"; transcript_id "KOE98428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98428"; +contig20 ena start_codon 118528 118530 . - 0 gene_id "W7K_15190"; transcript_id "KOE98428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 117835 117837 . - 0 gene_id "W7K_15190"; transcript_id "KOE98428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 118612 119391 . + . gene_id "W7K_15195"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 118612 119391 . + . gene_id "W7K_15195"; transcript_id "KOE98429"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 118612 119391 . + . gene_id "W7K_15195"; transcript_id "KOE98429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98429-1"; +contig20 ena CDS 118612 119388 . + 0 gene_id "W7K_15195"; transcript_id "KOE98429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98429"; +contig20 ena start_codon 118612 118614 . + 0 gene_id "W7K_15195"; transcript_id "KOE98429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 119389 119391 . + 0 gene_id "W7K_15195"; transcript_id "KOE98429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 119388 120440 . - . gene_id "W7K_15200"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 119388 120440 . - . gene_id "W7K_15200"; transcript_id "KOE98430"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 119388 120440 . - . gene_id "W7K_15200"; transcript_id "KOE98430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98430-1"; +contig20 ena CDS 119391 120440 . - 0 gene_id "W7K_15200"; transcript_id "KOE98430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98430"; +contig20 ena start_codon 120438 120440 . - 0 gene_id "W7K_15200"; transcript_id "KOE98430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 119388 119390 . - 0 gene_id "W7K_15200"; transcript_id "KOE98430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 120508 120921 . - . gene_id "W7K_15205"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 120508 120921 . - . gene_id "W7K_15205"; transcript_id "KOE98431"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 120508 120921 . - . gene_id "W7K_15205"; transcript_id "KOE98431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98431-1"; +contig20 ena CDS 120511 120921 . - 0 gene_id "W7K_15205"; transcript_id "KOE98431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98431"; +contig20 ena start_codon 120919 120921 . - 0 gene_id "W7K_15205"; transcript_id "KOE98431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 120508 120510 . - 0 gene_id "W7K_15205"; transcript_id "KOE98431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 120918 121355 . - . gene_id "W7K_15210"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 120918 121355 . - . gene_id "W7K_15210"; transcript_id "KOE98432"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 120918 121355 . - . gene_id "W7K_15210"; transcript_id "KOE98432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98432-1"; +contig20 ena CDS 120921 121355 . - 0 gene_id "W7K_15210"; transcript_id "KOE98432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98432"; +contig20 ena start_codon 121353 121355 . - 0 gene_id "W7K_15210"; transcript_id "KOE98432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 120918 120920 . - 0 gene_id "W7K_15210"; transcript_id "KOE98432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 121442 121762 . + . gene_id "W7K_15215"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 121442 121762 . + . gene_id "W7K_15215"; transcript_id "KOE98433"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 121442 121762 . + . gene_id "W7K_15215"; transcript_id "KOE98433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98433-1"; +contig20 ena CDS 121442 121759 . + 0 gene_id "W7K_15215"; transcript_id "KOE98433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98433"; +contig20 ena start_codon 121442 121444 . + 0 gene_id "W7K_15215"; transcript_id "KOE98433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 121760 121762 . + 0 gene_id "W7K_15215"; transcript_id "KOE98433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 121766 122194 . - . gene_id "W7K_15220"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 121766 122194 . - . gene_id "W7K_15220"; transcript_id "KOE98434"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 121766 122194 . - . gene_id "W7K_15220"; transcript_id "KOE98434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98434-1"; +contig20 ena CDS 121769 122194 . - 0 gene_id "W7K_15220"; transcript_id "KOE98434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98434"; +contig20 ena start_codon 122192 122194 . - 0 gene_id "W7K_15220"; transcript_id "KOE98434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 121766 121768 . - 0 gene_id "W7K_15220"; transcript_id "KOE98434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 122277 123410 . - . gene_id "W7K_15225"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 122277 123410 . - . gene_id "W7K_15225"; transcript_id "KOE98435"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 122277 123410 . - . gene_id "W7K_15225"; transcript_id "KOE98435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98435-1"; +contig20 ena CDS 122280 123410 . - 0 gene_id "W7K_15225"; transcript_id "KOE98435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98435"; +contig20 ena start_codon 123408 123410 . - 0 gene_id "W7K_15225"; transcript_id "KOE98435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 122277 122279 . - 0 gene_id "W7K_15225"; transcript_id "KOE98435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 123407 123982 . - . gene_id "W7K_15230"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 123407 123982 . - . gene_id "W7K_15230"; transcript_id "KOE98436"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 123407 123982 . - . gene_id "W7K_15230"; transcript_id "KOE98436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98436-1"; +contig20 ena CDS 123410 123982 . - 0 gene_id "W7K_15230"; transcript_id "KOE98436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98436"; +contig20 ena start_codon 123980 123982 . - 0 gene_id "W7K_15230"; transcript_id "KOE98436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 123407 123409 . - 0 gene_id "W7K_15230"; transcript_id "KOE98436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 123982 124806 . - . gene_id "W7K_15235"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 123982 124806 . - . gene_id "W7K_15235"; transcript_id "KOE98437"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 123982 124806 . - . gene_id "W7K_15235"; transcript_id "KOE98437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98437-1"; +contig20 ena CDS 123985 124806 . - 0 gene_id "W7K_15235"; transcript_id "KOE98437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98437"; +contig20 ena start_codon 124804 124806 . - 0 gene_id "W7K_15235"; transcript_id "KOE98437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 123982 123984 . - 0 gene_id "W7K_15235"; transcript_id "KOE98437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 124803 127904 . - . gene_id "W7K_15240"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 124803 127904 . - . gene_id "W7K_15240"; transcript_id "KOE98438"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 124803 127904 . - . gene_id "W7K_15240"; transcript_id "KOE98438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98438-1"; +contig20 ena CDS 124806 127904 . - 0 gene_id "W7K_15240"; transcript_id "KOE98438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98438"; +contig20 ena start_codon 127902 127904 . - 0 gene_id "W7K_15240"; transcript_id "KOE98438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 124803 124805 . - 0 gene_id "W7K_15240"; transcript_id "KOE98438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 128082 129218 . + . gene_id "W7K_15245"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 128082 129218 . + . gene_id "W7K_15245"; transcript_id "KOE98451"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 128082 129218 . + . gene_id "W7K_15245"; transcript_id "KOE98451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98451-1"; +contig20 ena CDS 128082 129215 . + 0 gene_id "W7K_15245"; transcript_id "KOE98451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98451"; +contig20 ena start_codon 128082 128084 . + 0 gene_id "W7K_15245"; transcript_id "KOE98451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 129216 129218 . + 0 gene_id "W7K_15245"; transcript_id "KOE98451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 129208 129567 . + . gene_id "W7K_15250"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 129208 129567 . + . gene_id "W7K_15250"; transcript_id "KOE98439"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 129208 129567 . + . gene_id "W7K_15250"; transcript_id "KOE98439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98439-1"; +contig20 ena CDS 129208 129564 . + 0 gene_id "W7K_15250"; transcript_id "KOE98439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98439"; +contig20 ena start_codon 129208 129210 . + 0 gene_id "W7K_15250"; transcript_id "KOE98439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 129565 129567 . + 0 gene_id "W7K_15250"; transcript_id "KOE98439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 129599 130165 . - . gene_id "W7K_15255"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 129599 130165 . - . gene_id "W7K_15255"; transcript_id "KOE98440"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 129599 130165 . - . gene_id "W7K_15255"; transcript_id "KOE98440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98440-1"; +contig20 ena CDS 129602 130165 . - 0 gene_id "W7K_15255"; transcript_id "KOE98440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98440"; +contig20 ena start_codon 130163 130165 . - 0 gene_id "W7K_15255"; transcript_id "KOE98440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 129599 129601 . - 0 gene_id "W7K_15255"; transcript_id "KOE98440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 130337 131167 . + . gene_id "W7K_15260"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 130337 131167 . + . gene_id "W7K_15260"; transcript_id "KOE98441"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 130337 131167 . + . gene_id "W7K_15260"; transcript_id "KOE98441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98441-1"; +contig20 ena CDS 130337 131164 . + 0 gene_id "W7K_15260"; transcript_id "KOE98441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98441"; +contig20 ena start_codon 130337 130339 . + 0 gene_id "W7K_15260"; transcript_id "KOE98441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 131165 131167 . + 0 gene_id "W7K_15260"; transcript_id "KOE98441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 131115 132008 . - . gene_id "W7K_15265"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 131115 132008 . - . gene_id "W7K_15265"; transcript_id "KOE98442"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 131115 132008 . - . gene_id "W7K_15265"; transcript_id "KOE98442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98442-1"; +contig20 ena CDS 131118 132008 . - 0 gene_id "W7K_15265"; transcript_id "KOE98442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98442"; +contig20 ena start_codon 132006 132008 . - 0 gene_id "W7K_15265"; transcript_id "KOE98442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 131115 131117 . - 0 gene_id "W7K_15265"; transcript_id "KOE98442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 132155 132712 . + . gene_id "W7K_15270"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 132155 132712 . + . gene_id "W7K_15270"; transcript_id "KOE98443"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 132155 132712 . + . gene_id "W7K_15270"; transcript_id "KOE98443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98443-1"; +contig20 ena CDS 132155 132709 . + 0 gene_id "W7K_15270"; transcript_id "KOE98443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98443"; +contig20 ena start_codon 132155 132157 . + 0 gene_id "W7K_15270"; transcript_id "KOE98443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 132710 132712 . + 0 gene_id "W7K_15270"; transcript_id "KOE98443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 132720 133184 . - . gene_id "W7K_15275"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 132720 133184 . - . gene_id "W7K_15275"; transcript_id "KOE98444"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 132720 133184 . - . gene_id "W7K_15275"; transcript_id "KOE98444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98444-1"; +contig20 ena CDS 132723 133184 . - 0 gene_id "W7K_15275"; transcript_id "KOE98444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98444"; +contig20 ena start_codon 133182 133184 . - 0 gene_id "W7K_15275"; transcript_id "KOE98444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 132720 132722 . - 0 gene_id "W7K_15275"; transcript_id "KOE98444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 133332 134222 . + . gene_id "W7K_15280"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 133332 134222 . + . gene_id "W7K_15280"; transcript_id "KOE98445"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 133332 134222 . + . gene_id "W7K_15280"; transcript_id "KOE98445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98445-1"; +contig20 ena CDS 133332 134219 . + 0 gene_id "W7K_15280"; transcript_id "KOE98445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98445"; +contig20 ena start_codon 133332 133334 . + 0 gene_id "W7K_15280"; transcript_id "KOE98445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 134220 134222 . + 0 gene_id "W7K_15280"; transcript_id "KOE98445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 134370 134876 . - . gene_id "W7K_15285"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 134370 134876 . - . gene_id "W7K_15285"; transcript_id "KOE98452"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 134370 134876 . - . gene_id "W7K_15285"; transcript_id "KOE98452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98452-1"; +contig20 ena CDS 134373 134876 . - 0 gene_id "W7K_15285"; transcript_id "KOE98452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98452"; +contig20 ena start_codon 134874 134876 . - 0 gene_id "W7K_15285"; transcript_id "KOE98452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 134370 134372 . - 0 gene_id "W7K_15285"; transcript_id "KOE98452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena gene 135080 135634 . + . gene_id "W7K_15290"; gene_source "ena"; gene_biotype "protein_coding"; +contig20 ena transcript 135080 135634 . + . gene_id "W7K_15290"; transcript_id "KOE98446"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena exon 135080 135634 . + . gene_id "W7K_15290"; transcript_id "KOE98446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98446-1"; +contig20 ena CDS 135080 135631 . + 0 gene_id "W7K_15290"; transcript_id "KOE98446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98446"; +contig20 ena start_codon 135080 135082 . + 0 gene_id "W7K_15290"; transcript_id "KOE98446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig20 ena stop_codon 135632 135634 . + 0 gene_id "W7K_15290"; transcript_id "KOE98446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 46 1230 . - . gene_id "W7K_00005"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 46 1230 . - . gene_id "W7K_00005"; transcript_id "KOF01198"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 46 1230 . - . gene_id "W7K_00005"; transcript_id "KOF01198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01198-1"; +contig48 ena CDS 49 1230 . - 0 gene_id "W7K_00005"; transcript_id "KOF01198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01198"; +contig48 ena start_codon 1228 1230 . - 0 gene_id "W7K_00005"; transcript_id "KOF01198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 46 48 . - 0 gene_id "W7K_00005"; transcript_id "KOF01198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 1382 1594 . + . gene_id "W7K_00010"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 1382 1594 . + . gene_id "W7K_00010"; transcript_id "KOF01199"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 1382 1594 . + . gene_id "W7K_00010"; transcript_id "KOF01199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01199-1"; +contig48 ena CDS 1382 1591 . + 0 gene_id "W7K_00010"; transcript_id "KOF01199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01199"; +contig48 ena start_codon 1382 1384 . + 0 gene_id "W7K_00010"; transcript_id "KOF01199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 1592 1594 . + 0 gene_id "W7K_00010"; transcript_id "KOF01199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 1596 2348 . + . gene_id "W7K_00015"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 1596 2348 . + . gene_id "W7K_00015"; transcript_id "KOF01200"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 1596 2348 . + . gene_id "W7K_00015"; transcript_id "KOF01200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01200-1"; +contig48 ena CDS 1596 2345 . + 0 gene_id "W7K_00015"; transcript_id "KOF01200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01200"; +contig48 ena start_codon 1596 1598 . + 0 gene_id "W7K_00015"; transcript_id "KOF01200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 2346 2348 . + 0 gene_id "W7K_00015"; transcript_id "KOF01200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 2345 2788 . + . gene_id "W7K_00020"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 2345 2788 . + . gene_id "W7K_00020"; transcript_id "KOF01201"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 2345 2788 . + . gene_id "W7K_00020"; transcript_id "KOF01201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01201-1"; +contig48 ena CDS 2345 2785 . + 0 gene_id "W7K_00020"; transcript_id "KOF01201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01201"; +contig48 ena start_codon 2345 2347 . + 0 gene_id "W7K_00020"; transcript_id "KOF01201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 2786 2788 . + 0 gene_id "W7K_00020"; transcript_id "KOF01201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 2785 4200 . + . gene_id "W7K_00025"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 2785 4200 . + . gene_id "W7K_00025"; transcript_id "KOF01308"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 2785 4200 . + . gene_id "W7K_00025"; transcript_id "KOF01308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01308-1"; +contig48 ena CDS 2785 4197 . + 0 gene_id "W7K_00025"; transcript_id "KOF01308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01308"; +contig48 ena start_codon 2785 2787 . + 0 gene_id "W7K_00025"; transcript_id "KOF01308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 4198 4200 . + 0 gene_id "W7K_00025"; transcript_id "KOF01308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 4351 6534 . + . gene_id "W7K_00030"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 4351 6534 . + . gene_id "W7K_00030"; transcript_id "KOF01202"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 4351 6534 . + . gene_id "W7K_00030"; transcript_id "KOF01202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01202-1"; +contig48 ena CDS 4351 6531 . + 0 gene_id "W7K_00030"; transcript_id "KOF01202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01202"; +contig48 ena start_codon 4351 4353 . + 0 gene_id "W7K_00030"; transcript_id "KOF01202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 6532 6534 . + 0 gene_id "W7K_00030"; transcript_id "KOF01202"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 6534 10790 . + . gene_id "W7K_00035"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 6534 10790 . + . gene_id "W7K_00035"; transcript_id "KOF01203"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 6534 10790 . + . gene_id "W7K_00035"; transcript_id "KOF01203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01203-1"; +contig48 ena CDS 6534 10787 . + 0 gene_id "W7K_00035"; transcript_id "KOF01203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01203"; +contig48 ena start_codon 6534 6536 . + 0 gene_id "W7K_00035"; transcript_id "KOF01203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 10788 10790 . + 0 gene_id "W7K_00035"; transcript_id "KOF01203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 10846 12330 . + . gene_id "W7K_00040"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 10846 12330 . + . gene_id "W7K_00040"; transcript_id "KOF01204"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 10846 12330 . + . gene_id "W7K_00040"; transcript_id "KOF01204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01204-1"; +contig48 ena CDS 10846 12327 . + 0 gene_id "W7K_00040"; transcript_id "KOF01204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01204"; +contig48 ena start_codon 10846 10848 . + 0 gene_id "W7K_00040"; transcript_id "KOF01204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 12328 12330 . + 0 gene_id "W7K_00040"; transcript_id "KOF01204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 12836 14032 . + . gene_id "W7K_00045"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 12836 14032 . + . gene_id "W7K_00045"; transcript_id "KOF01309"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 12836 14032 . + . gene_id "W7K_00045"; transcript_id "KOF01309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01309-1"; +contig48 ena CDS 12836 14029 . + 0 gene_id "W7K_00045"; transcript_id "KOF01309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01309"; +contig48 ena start_codon 12836 12838 . + 0 gene_id "W7K_00045"; transcript_id "KOF01309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 14030 14032 . + 0 gene_id "W7K_00045"; transcript_id "KOF01309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 14034 16469 . + . gene_id "W7K_00050"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 14034 16469 . + . gene_id "W7K_00050"; transcript_id "KOF01205"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 14034 16469 . + . gene_id "W7K_00050"; transcript_id "KOF01205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01205-1"; +contig48 ena CDS 14034 16466 . + 0 gene_id "W7K_00050"; transcript_id "KOF01205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01205"; +contig48 ena start_codon 14034 14036 . + 0 gene_id "W7K_00050"; transcript_id "KOF01205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 16467 16469 . + 0 gene_id "W7K_00050"; transcript_id "KOF01205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 16528 16917 . + . gene_id "W7K_00055"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 16528 16917 . + . gene_id "W7K_00055"; transcript_id "KOF01310"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 16528 16917 . + . gene_id "W7K_00055"; transcript_id "KOF01310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01310-1"; +contig48 ena CDS 16528 16914 . + 0 gene_id "W7K_00055"; transcript_id "KOF01310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01310"; +contig48 ena start_codon 16528 16530 . + 0 gene_id "W7K_00055"; transcript_id "KOF01310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 16915 16917 . + 0 gene_id "W7K_00055"; transcript_id "KOF01310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 16914 17126 . - . gene_id "W7K_00060"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 16914 17126 . - . gene_id "W7K_00060"; transcript_id "KOF01206"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 16914 17126 . - . gene_id "W7K_00060"; transcript_id "KOF01206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01206-1"; +contig48 ena CDS 16917 17126 . - 0 gene_id "W7K_00060"; transcript_id "KOF01206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01206"; +contig48 ena start_codon 17124 17126 . - 0 gene_id "W7K_00060"; transcript_id "KOF01206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 16914 16916 . - 0 gene_id "W7K_00060"; transcript_id "KOF01206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 17344 18699 . + . gene_id "W7K_00065"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 17344 18699 . + . gene_id "W7K_00065"; transcript_id "KOF01311"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 17344 18699 . + . gene_id "W7K_00065"; transcript_id "KOF01311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01311-1"; +contig48 ena CDS 17344 18696 . + 0 gene_id "W7K_00065"; transcript_id "KOF01311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01311"; +contig48 ena start_codon 17344 17346 . + 0 gene_id "W7K_00065"; transcript_id "KOF01311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 18697 18699 . + 0 gene_id "W7K_00065"; transcript_id "KOF01311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 18842 19060 . - . gene_id "W7K_00070"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 18842 19060 . - . gene_id "W7K_00070"; transcript_id "KOF01207"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 18842 19060 . - . gene_id "W7K_00070"; transcript_id "KOF01207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01207-1"; +contig48 ena CDS 18845 19060 . - 0 gene_id "W7K_00070"; transcript_id "KOF01207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01207"; +contig48 ena start_codon 19058 19060 . - 0 gene_id "W7K_00070"; transcript_id "KOF01207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 18842 18844 . - 0 gene_id "W7K_00070"; transcript_id "KOF01207"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 19099 20205 . - . gene_id "W7K_00075"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 19099 20205 . - . gene_id "W7K_00075"; transcript_id "KOF01208"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 19099 20205 . - . gene_id "W7K_00075"; transcript_id "KOF01208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01208-1"; +contig48 ena CDS 19102 20205 . - 0 gene_id "W7K_00075"; transcript_id "KOF01208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01208"; +contig48 ena start_codon 20203 20205 . - 0 gene_id "W7K_00075"; transcript_id "KOF01208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 19099 19101 . - 0 gene_id "W7K_00075"; transcript_id "KOF01208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 20329 20772 . + . gene_id "W7K_00080"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 20329 20772 . + . gene_id "W7K_00080"; transcript_id "KOF01209"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 20329 20772 . + . gene_id "W7K_00080"; transcript_id "KOF01209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01209-1"; +contig48 ena CDS 20329 20769 . + 0 gene_id "W7K_00080"; transcript_id "KOF01209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01209"; +contig48 ena start_codon 20329 20331 . + 0 gene_id "W7K_00080"; transcript_id "KOF01209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 20770 20772 . + 0 gene_id "W7K_00080"; transcript_id "KOF01209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 20831 21022 . + . gene_id "W7K_00085"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 20831 21022 . + . gene_id "W7K_00085"; transcript_id "KOF01312"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 20831 21022 . + . gene_id "W7K_00085"; transcript_id "KOF01312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01312-1"; +contig48 ena CDS 20831 21019 . + 0 gene_id "W7K_00085"; transcript_id "KOF01312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01312"; +contig48 ena start_codon 20831 20833 . + 0 gene_id "W7K_00085"; transcript_id "KOF01312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 21020 21022 . + 0 gene_id "W7K_00085"; transcript_id "KOF01312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 20973 22895 . + . gene_id "W7K_00090"; gene_name "trkD"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 20973 22895 . + . gene_id "W7K_00090"; transcript_id "KOF01210"; gene_name "trkD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trkD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 20973 22895 . + . gene_id "W7K_00090"; transcript_id "KOF01210"; exon_number "1"; gene_name "trkD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trkD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01210-1"; +contig48 ena CDS 20973 22892 . + 0 gene_id "W7K_00090"; transcript_id "KOF01210"; exon_number "1"; gene_name "trkD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trkD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01210"; +contig48 ena start_codon 20973 20975 . + 0 gene_id "W7K_00090"; transcript_id "KOF01210"; exon_number "1"; gene_name "trkD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trkD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 22893 22895 . + 0 gene_id "W7K_00090"; transcript_id "KOF01210"; exon_number "1"; gene_name "trkD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trkD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 22892 23401 . + . gene_id "W7K_00095"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 22892 23401 . + . gene_id "W7K_00095"; transcript_id "KOF01211"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 22892 23401 . + . gene_id "W7K_00095"; transcript_id "KOF01211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01211-1"; +contig48 ena CDS 22892 23398 . + 0 gene_id "W7K_00095"; transcript_id "KOF01211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01211"; +contig48 ena start_codon 22892 22894 . + 0 gene_id "W7K_00095"; transcript_id "KOF01211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 23399 23401 . + 0 gene_id "W7K_00095"; transcript_id "KOF01211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 23446 23522 . + . gene_id "W7K_00100"; gene_source "ena"; gene_biotype "tRNA"; +contig48 ena transcript 23446 23522 . + . gene_id "W7K_00100"; transcript_id "EBT00051077670"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_00100"; transcript_source "ena"; transcript_biotype "tRNA"; +contig48 ena exon 23446 23522 . + . gene_id "W7K_00100"; transcript_id "EBT00051077670"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_00100"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_00100-1"; +contig48 ena gene 23620 23913 . + . gene_id "W7K_00105"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 23620 23913 . + . gene_id "W7K_00105"; transcript_id "KOF01212"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 23620 23913 . + . gene_id "W7K_00105"; transcript_id "KOF01212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01212-1"; +contig48 ena CDS 23620 23910 . + 0 gene_id "W7K_00105"; transcript_id "KOF01212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01212"; +contig48 ena start_codon 23620 23622 . + 0 gene_id "W7K_00105"; transcript_id "KOF01212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 23911 23913 . + 0 gene_id "W7K_00105"; transcript_id "KOF01212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 23910 24701 . - . gene_id "W7K_00110"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 23910 24701 . - . gene_id "W7K_00110"; transcript_id "KOF01213"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 23910 24701 . - . gene_id "W7K_00110"; transcript_id "KOF01213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01213-1"; +contig48 ena CDS 23913 24701 . - 0 gene_id "W7K_00110"; transcript_id "KOF01213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01213"; +contig48 ena start_codon 24699 24701 . - 0 gene_id "W7K_00110"; transcript_id "KOF01213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 23910 23912 . - 0 gene_id "W7K_00110"; transcript_id "KOF01213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 24698 25201 . - . gene_id "W7K_00115"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 24698 25201 . - . gene_id "W7K_00115"; transcript_id "KOF01313"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 24698 25201 . - . gene_id "W7K_00115"; transcript_id "KOF01313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01313-1"; +contig48 ena CDS 24701 25201 . - 0 gene_id "W7K_00115"; transcript_id "KOF01313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01313"; +contig48 ena start_codon 25199 25201 . - 0 gene_id "W7K_00115"; transcript_id "KOF01313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 24698 24700 . - 0 gene_id "W7K_00115"; transcript_id "KOF01313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 25198 27486 . - . gene_id "W7K_00120"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 25198 27486 . - . gene_id "W7K_00120"; transcript_id "KOF01214"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 25198 27486 . - . gene_id "W7K_00120"; transcript_id "KOF01214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01214-1"; +contig48 ena CDS 25201 27486 . - 0 gene_id "W7K_00120"; transcript_id "KOF01214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01214"; +contig48 ena start_codon 27484 27486 . - 0 gene_id "W7K_00120"; transcript_id "KOF01214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 25198 25200 . - 0 gene_id "W7K_00120"; transcript_id "KOF01214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 27895 30909 . + . gene_id "W7K_00125"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 27895 30909 . + . gene_id "W7K_00125"; transcript_id "KOF01215"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 27895 30909 . + . gene_id "W7K_00125"; transcript_id "KOF01215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01215-1"; +contig48 ena CDS 27895 30906 . + 0 gene_id "W7K_00125"; transcript_id "KOF01215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01215"; +contig48 ena start_codon 27895 27897 . + 0 gene_id "W7K_00125"; transcript_id "KOF01215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 30907 30909 . + 0 gene_id "W7K_00125"; transcript_id "KOF01215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 30997 31965 . + . gene_id "W7K_00130"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 30997 31965 . + . gene_id "W7K_00130"; transcript_id "KOF01216"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 30997 31965 . + . gene_id "W7K_00130"; transcript_id "KOF01216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01216-1"; +contig48 ena CDS 30997 31962 . + 0 gene_id "W7K_00130"; transcript_id "KOF01216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01216"; +contig48 ena start_codon 30997 30999 . + 0 gene_id "W7K_00130"; transcript_id "KOF01216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 31963 31965 . + 0 gene_id "W7K_00130"; transcript_id "KOF01216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 32042 32806 . - . gene_id "W7K_00135"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 32042 32806 . - . gene_id "W7K_00135"; transcript_id "KOF01217"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 32042 32806 . - . gene_id "W7K_00135"; transcript_id "KOF01217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01217-1"; +contig48 ena CDS 32045 32806 . - 0 gene_id "W7K_00135"; transcript_id "KOF01217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01217"; +contig48 ena start_codon 32804 32806 . - 0 gene_id "W7K_00135"; transcript_id "KOF01217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 32042 32044 . - 0 gene_id "W7K_00135"; transcript_id "KOF01217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 32794 33504 . - . gene_id "W7K_00140"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 32794 33504 . - . gene_id "W7K_00140"; transcript_id "KOF01218"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 32794 33504 . - . gene_id "W7K_00140"; transcript_id "KOF01218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01218-1"; +contig48 ena CDS 32797 33504 . - 0 gene_id "W7K_00140"; transcript_id "KOF01218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01218"; +contig48 ena start_codon 33502 33504 . - 0 gene_id "W7K_00140"; transcript_id "KOF01218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 32794 32796 . - 0 gene_id "W7K_00140"; transcript_id "KOF01218"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 33516 33788 . - . gene_id "W7K_00145"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 33516 33788 . - . gene_id "W7K_00145"; transcript_id "KOF01219"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 33516 33788 . - . gene_id "W7K_00145"; transcript_id "KOF01219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01219-1"; +contig48 ena CDS 33519 33788 . - 0 gene_id "W7K_00145"; transcript_id "KOF01219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01219"; +contig48 ena start_codon 33786 33788 . - 0 gene_id "W7K_00145"; transcript_id "KOF01219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 33516 33518 . - 0 gene_id "W7K_00145"; transcript_id "KOF01219"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 33874 35367 . + . gene_id "W7K_00150"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 33874 35367 . + . gene_id "W7K_00150"; transcript_id "KOF01220"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 33874 35367 . + . gene_id "W7K_00150"; transcript_id "KOF01220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01220-1"; +contig48 ena CDS 33874 35364 . + 0 gene_id "W7K_00150"; transcript_id "KOF01220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01220"; +contig48 ena start_codon 33874 33876 . + 0 gene_id "W7K_00150"; transcript_id "KOF01220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 35365 35367 . + 0 gene_id "W7K_00150"; transcript_id "KOF01220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 35364 36578 . + . gene_id "W7K_00155"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 35364 36578 . + . gene_id "W7K_00155"; transcript_id "KOF01221"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 35364 36578 . + . gene_id "W7K_00155"; transcript_id "KOF01221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01221-1"; +contig48 ena CDS 35364 36575 . + 0 gene_id "W7K_00155"; transcript_id "KOF01221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01221"; +contig48 ena start_codon 35364 35366 . + 0 gene_id "W7K_00155"; transcript_id "KOF01221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 36576 36578 . + 0 gene_id "W7K_00155"; transcript_id "KOF01221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 36767 37204 . - . gene_id "W7K_00160"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 36767 37204 . - . gene_id "W7K_00160"; transcript_id "KOF01222"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 36767 37204 . - . gene_id "W7K_00160"; transcript_id "KOF01222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01222-1"; +contig48 ena CDS 36770 37204 . - 0 gene_id "W7K_00160"; transcript_id "KOF01222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01222"; +contig48 ena start_codon 37202 37204 . - 0 gene_id "W7K_00160"; transcript_id "KOF01222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 36767 36769 . - 0 gene_id "W7K_00160"; transcript_id "KOF01222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 37366 38013 . + . gene_id "W7K_00165"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 37366 38013 . + . gene_id "W7K_00165"; transcript_id "KOF01223"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 37366 38013 . + . gene_id "W7K_00165"; transcript_id "KOF01223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01223-1"; +contig48 ena CDS 37366 38010 . + 0 gene_id "W7K_00165"; transcript_id "KOF01223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01223"; +contig48 ena start_codon 37366 37368 . + 0 gene_id "W7K_00165"; transcript_id "KOF01223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 38011 38013 . + 0 gene_id "W7K_00165"; transcript_id "KOF01223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 38018 39529 . + . gene_id "W7K_00170"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 38018 39529 . + . gene_id "W7K_00170"; transcript_id "KOF01224"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 38018 39529 . + . gene_id "W7K_00170"; transcript_id "KOF01224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01224-1"; +contig48 ena CDS 38018 39526 . + 0 gene_id "W7K_00170"; transcript_id "KOF01224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01224"; +contig48 ena start_codon 38018 38020 . + 0 gene_id "W7K_00170"; transcript_id "KOF01224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 39527 39529 . + 0 gene_id "W7K_00170"; transcript_id "KOF01224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 39540 40571 . + . gene_id "W7K_00175"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 39540 40571 . + . gene_id "W7K_00175"; transcript_id "KOF01225"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 39540 40571 . + . gene_id "W7K_00175"; transcript_id "KOF01225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01225-1"; +contig48 ena CDS 39540 40568 . + 0 gene_id "W7K_00175"; transcript_id "KOF01225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01225"; +contig48 ena start_codon 39540 39542 . + 0 gene_id "W7K_00175"; transcript_id "KOF01225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 40569 40571 . + 0 gene_id "W7K_00175"; transcript_id "KOF01225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 40571 42172 . + . gene_id "W7K_00180"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 40571 42172 . + . gene_id "W7K_00180"; transcript_id "KOF01226"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 40571 42172 . + . gene_id "W7K_00180"; transcript_id "KOF01226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01226-1"; +contig48 ena CDS 40571 42169 . + 0 gene_id "W7K_00180"; transcript_id "KOF01226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01226"; +contig48 ena start_codon 40571 40573 . + 0 gene_id "W7K_00180"; transcript_id "KOF01226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 42170 42172 . + 0 gene_id "W7K_00180"; transcript_id "KOF01226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 42185 43606 . + . gene_id "W7K_00185"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 42185 43606 . + . gene_id "W7K_00185"; transcript_id "KOF01227"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 42185 43606 . + . gene_id "W7K_00185"; transcript_id "KOF01227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01227-1"; +contig48 ena CDS 42185 43603 . + 0 gene_id "W7K_00185"; transcript_id "KOF01227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01227"; +contig48 ena start_codon 42185 42187 . + 0 gene_id "W7K_00185"; transcript_id "KOF01227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 43604 43606 . + 0 gene_id "W7K_00185"; transcript_id "KOF01227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 43596 44450 . + . gene_id "W7K_00190"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 43596 44450 . + . gene_id "W7K_00190"; transcript_id "KOF01228"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 43596 44450 . + . gene_id "W7K_00190"; transcript_id "KOF01228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01228-1"; +contig48 ena CDS 43596 44447 . + 0 gene_id "W7K_00190"; transcript_id "KOF01228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01228"; +contig48 ena start_codon 43596 43598 . + 0 gene_id "W7K_00190"; transcript_id "KOF01228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 44448 44450 . + 0 gene_id "W7K_00190"; transcript_id "KOF01228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 44450 45493 . + . gene_id "W7K_00195"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 44450 45493 . + . gene_id "W7K_00195"; transcript_id "KOF01229"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 44450 45493 . + . gene_id "W7K_00195"; transcript_id "KOF01229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01229-1"; +contig48 ena CDS 44450 45490 . + 0 gene_id "W7K_00195"; transcript_id "KOF01229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01229"; +contig48 ena start_codon 44450 44452 . + 0 gene_id "W7K_00195"; transcript_id "KOF01229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 45491 45493 . + 0 gene_id "W7K_00195"; transcript_id "KOF01229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 45493 46647 . + . gene_id "W7K_00200"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 45493 46647 . + . gene_id "W7K_00200"; transcript_id "KOF01230"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 45493 46647 . + . gene_id "W7K_00200"; transcript_id "KOF01230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01230-1"; +contig48 ena CDS 45493 46644 . + 0 gene_id "W7K_00200"; transcript_id "KOF01230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01230"; +contig48 ena start_codon 45493 45495 . + 0 gene_id "W7K_00200"; transcript_id "KOF01230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 46645 46647 . + 0 gene_id "W7K_00200"; transcript_id "KOF01230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 46644 48140 . + . gene_id "W7K_00205"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 46644 48140 . + . gene_id "W7K_00205"; transcript_id "KOF01231"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 46644 48140 . + . gene_id "W7K_00205"; transcript_id "KOF01231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01231-1"; +contig48 ena CDS 46644 48137 . + 0 gene_id "W7K_00205"; transcript_id "KOF01231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01231"; +contig48 ena start_codon 46644 46646 . + 0 gene_id "W7K_00205"; transcript_id "KOF01231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 48138 48140 . + 0 gene_id "W7K_00205"; transcript_id "KOF01231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 48140 50026 . + . gene_id "W7K_00210"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 48140 50026 . + . gene_id "W7K_00210"; transcript_id "KOF01232"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 48140 50026 . + . gene_id "W7K_00210"; transcript_id "KOF01232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01232-1"; +contig48 ena CDS 48140 50023 . + 0 gene_id "W7K_00210"; transcript_id "KOF01232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01232"; +contig48 ena start_codon 48140 48142 . + 0 gene_id "W7K_00210"; transcript_id "KOF01232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 50024 50026 . + 0 gene_id "W7K_00210"; transcript_id "KOF01232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 50105 51415 . + . gene_id "W7K_00215"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 50105 51415 . + . gene_id "W7K_00215"; transcript_id "KOF01233"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 50105 51415 . + . gene_id "W7K_00215"; transcript_id "KOF01233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01233-1"; +contig48 ena CDS 50105 51412 . + 0 gene_id "W7K_00215"; transcript_id "KOF01233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01233"; +contig48 ena start_codon 50105 50107 . + 0 gene_id "W7K_00215"; transcript_id "KOF01233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 51413 51415 . + 0 gene_id "W7K_00215"; transcript_id "KOF01233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 51419 51604 . - . gene_id "W7K_00220"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 51419 51604 . - . gene_id "W7K_00220"; transcript_id "KOF01234"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 51419 51604 . - . gene_id "W7K_00220"; transcript_id "KOF01234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01234-1"; +contig48 ena CDS 51422 51604 . - 0 gene_id "W7K_00220"; transcript_id "KOF01234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01234"; +contig48 ena start_codon 51602 51604 . - 0 gene_id "W7K_00220"; transcript_id "KOF01234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 51419 51421 . - 0 gene_id "W7K_00220"; transcript_id "KOF01234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 51604 52029 . - . gene_id "W7K_00225"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 51604 52029 . - . gene_id "W7K_00225"; transcript_id "KOF01235"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 51604 52029 . - . gene_id "W7K_00225"; transcript_id "KOF01235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01235-1"; +contig48 ena CDS 51607 52029 . - 0 gene_id "W7K_00225"; transcript_id "KOF01235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01235"; +contig48 ena start_codon 52027 52029 . - 0 gene_id "W7K_00225"; transcript_id "KOF01235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 51604 51606 . - 0 gene_id "W7K_00225"; transcript_id "KOF01235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 52138 52917 . + . gene_id "W7K_00230"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 52138 52917 . + . gene_id "W7K_00230"; transcript_id "KOF01236"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 52138 52917 . + . gene_id "W7K_00230"; transcript_id "KOF01236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01236-1"; +contig48 ena CDS 52138 52914 . + 0 gene_id "W7K_00230"; transcript_id "KOF01236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01236"; +contig48 ena start_codon 52138 52140 . + 0 gene_id "W7K_00230"; transcript_id "KOF01236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 52915 52917 . + 0 gene_id "W7K_00230"; transcript_id "KOF01236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 53098 54180 . - . gene_id "W7K_00235"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 53098 54180 . - . gene_id "W7K_00235"; transcript_id "KOF01237"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 53098 54180 . - . gene_id "W7K_00235"; transcript_id "KOF01237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01237-1"; +contig48 ena CDS 53101 54180 . - 0 gene_id "W7K_00235"; transcript_id "KOF01237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01237"; +contig48 ena start_codon 54178 54180 . - 0 gene_id "W7K_00235"; transcript_id "KOF01237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 53098 53100 . - 0 gene_id "W7K_00235"; transcript_id "KOF01237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 54299 55363 . - . gene_id "W7K_00240"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 54299 55363 . - . gene_id "W7K_00240"; transcript_id "KOF01238"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 54299 55363 . - . gene_id "W7K_00240"; transcript_id "KOF01238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01238-1"; +contig48 ena CDS 54302 55363 . - 0 gene_id "W7K_00240"; transcript_id "KOF01238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01238"; +contig48 ena start_codon 55361 55363 . - 0 gene_id "W7K_00240"; transcript_id "KOF01238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 54299 54301 . - 0 gene_id "W7K_00240"; transcript_id "KOF01238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 55713 56645 . + . gene_id "W7K_00245"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 55713 56645 . + . gene_id "W7K_00245"; transcript_id "KOF01239"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 55713 56645 . + . gene_id "W7K_00245"; transcript_id "KOF01239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01239-1"; +contig48 ena CDS 55713 56642 . + 0 gene_id "W7K_00245"; transcript_id "KOF01239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01239"; +contig48 ena start_codon 55713 55715 . + 0 gene_id "W7K_00245"; transcript_id "KOF01239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 56643 56645 . + 0 gene_id "W7K_00245"; transcript_id "KOF01239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 56763 57446 . - . gene_id "W7K_00250"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 56763 57446 . - . gene_id "W7K_00250"; transcript_id "KOF01240"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 56763 57446 . - . gene_id "W7K_00250"; transcript_id "KOF01240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01240-1"; +contig48 ena CDS 56766 57446 . - 0 gene_id "W7K_00250"; transcript_id "KOF01240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01240"; +contig48 ena start_codon 57444 57446 . - 0 gene_id "W7K_00250"; transcript_id "KOF01240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 56763 56765 . - 0 gene_id "W7K_00250"; transcript_id "KOF01240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 57456 58853 . - . gene_id "W7K_00255"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 57456 58853 . - . gene_id "W7K_00255"; transcript_id "KOF01241"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 57456 58853 . - . gene_id "W7K_00255"; transcript_id "KOF01241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01241-1"; +contig48 ena CDS 57459 58853 . - 0 gene_id "W7K_00255"; transcript_id "KOF01241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01241"; +contig48 ena start_codon 58851 58853 . - 0 gene_id "W7K_00255"; transcript_id "KOF01241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 57456 57458 . - 0 gene_id "W7K_00255"; transcript_id "KOF01241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 58855 59757 . - . gene_id "W7K_00260"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 58855 59757 . - . gene_id "W7K_00260"; transcript_id "KOF01242"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 58855 59757 . - . gene_id "W7K_00260"; transcript_id "KOF01242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01242-1"; +contig48 ena CDS 58858 59757 . - 0 gene_id "W7K_00260"; transcript_id "KOF01242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01242"; +contig48 ena start_codon 59755 59757 . - 0 gene_id "W7K_00260"; transcript_id "KOF01242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 58855 58857 . - 0 gene_id "W7K_00260"; transcript_id "KOF01242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 59821 60768 . - . gene_id "W7K_00265"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 59821 60768 . - . gene_id "W7K_00265"; transcript_id "KOF01243"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 59821 60768 . - . gene_id "W7K_00265"; transcript_id "KOF01243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01243-1"; +contig48 ena CDS 59824 60768 . - 0 gene_id "W7K_00265"; transcript_id "KOF01243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01243"; +contig48 ena start_codon 60766 60768 . - 0 gene_id "W7K_00265"; transcript_id "KOF01243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 59821 59823 . - 0 gene_id "W7K_00265"; transcript_id "KOF01243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 60789 61193 . + . gene_id "W7K_00270"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 60789 61193 . + . gene_id "W7K_00270"; transcript_id "KOF01244"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 60789 61193 . + . gene_id "W7K_00270"; transcript_id "KOF01244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01244-1"; +contig48 ena CDS 60789 61190 . + 0 gene_id "W7K_00270"; transcript_id "KOF01244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01244"; +contig48 ena start_codon 60789 60791 . + 0 gene_id "W7K_00270"; transcript_id "KOF01244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 61191 61193 . + 0 gene_id "W7K_00270"; transcript_id "KOF01244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 61384 62028 . + . gene_id "W7K_00275"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 61384 62028 . + . gene_id "W7K_00275"; transcript_id "KOF01245"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 61384 62028 . + . gene_id "W7K_00275"; transcript_id "KOF01245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01245-1"; +contig48 ena CDS 61384 62025 . + 0 gene_id "W7K_00275"; transcript_id "KOF01245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01245"; +contig48 ena start_codon 61384 61386 . + 0 gene_id "W7K_00275"; transcript_id "KOF01245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 62026 62028 . + 0 gene_id "W7K_00275"; transcript_id "KOF01245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 62107 64398 . + . gene_id "W7K_00280"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 62107 64398 . + . gene_id "W7K_00280"; transcript_id "KOF01246"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 62107 64398 . + . gene_id "W7K_00280"; transcript_id "KOF01246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01246-1"; +contig48 ena CDS 62107 64395 . + 0 gene_id "W7K_00280"; transcript_id "KOF01246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01246"; +contig48 ena start_codon 62107 62109 . + 0 gene_id "W7K_00280"; transcript_id "KOF01246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 64396 64398 . + 0 gene_id "W7K_00280"; transcript_id "KOF01246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 64398 64823 . + . gene_id "W7K_00285"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 64398 64823 . + . gene_id "W7K_00285"; transcript_id "KOF01247"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 64398 64823 . + . gene_id "W7K_00285"; transcript_id "KOF01247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01247-1"; +contig48 ena CDS 64398 64820 . + 0 gene_id "W7K_00285"; transcript_id "KOF01247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01247"; +contig48 ena start_codon 64398 64400 . + 0 gene_id "W7K_00285"; transcript_id "KOF01247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 64821 64823 . + 0 gene_id "W7K_00285"; transcript_id "KOF01247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 64892 65257 . + . gene_id "W7K_00290"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 64892 65257 . + . gene_id "W7K_00290"; transcript_id "KOF01248"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 64892 65257 . + . gene_id "W7K_00290"; transcript_id "KOF01248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01248-1"; +contig48 ena CDS 64892 65254 . + 0 gene_id "W7K_00290"; transcript_id "KOF01248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01248"; +contig48 ena start_codon 64892 64894 . + 0 gene_id "W7K_00290"; transcript_id "KOF01248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 65255 65257 . + 0 gene_id "W7K_00290"; transcript_id "KOF01248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 65305 66423 . + . gene_id "W7K_00295"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 65305 66423 . + . gene_id "W7K_00295"; transcript_id "KOF01314"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 65305 66423 . + . gene_id "W7K_00295"; transcript_id "KOF01314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01314-1"; +contig48 ena CDS 65305 66420 . + 0 gene_id "W7K_00295"; transcript_id "KOF01314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01314"; +contig48 ena start_codon 65305 65307 . + 0 gene_id "W7K_00295"; transcript_id "KOF01314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 66421 66423 . + 0 gene_id "W7K_00295"; transcript_id "KOF01314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 66420 67325 . + . gene_id "W7K_00300"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 66420 67325 . + . gene_id "W7K_00300"; transcript_id "KOF01249"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 66420 67325 . + . gene_id "W7K_00300"; transcript_id "KOF01249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01249-1"; +contig48 ena CDS 66420 67322 . + 0 gene_id "W7K_00300"; transcript_id "KOF01249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01249"; +contig48 ena start_codon 66420 66422 . + 0 gene_id "W7K_00300"; transcript_id "KOF01249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 67323 67325 . + 0 gene_id "W7K_00300"; transcript_id "KOF01249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 67384 68073 . + . gene_id "W7K_00305"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 67384 68073 . + . gene_id "W7K_00305"; transcript_id "KOF01250"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 67384 68073 . + . gene_id "W7K_00305"; transcript_id "KOF01250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01250-1"; +contig48 ena CDS 67384 68070 . + 0 gene_id "W7K_00305"; transcript_id "KOF01250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01250"; +contig48 ena start_codon 67384 67386 . + 0 gene_id "W7K_00305"; transcript_id "KOF01250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 68071 68073 . + 0 gene_id "W7K_00305"; transcript_id "KOF01250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 68084 68448 . + . gene_id "W7K_00640"; gene_source "ena"; gene_biotype "ncRNA"; +contig48 ena transcript 68084 68448 . + . gene_id "W7K_00640"; transcript_id "EBT00051077671"; gene_source "ena"; gene_biotype "ncRNA"; transcript_name "W7K_00640"; transcript_source "ena"; transcript_biotype "ncRNA"; +contig48 ena exon 68084 68448 . + . gene_id "W7K_00640"; transcript_id "EBT00051077671"; exon_number "1"; gene_source "ena"; gene_biotype "ncRNA"; transcript_name "W7K_00640"; transcript_source "ena"; transcript_biotype "ncRNA"; exon_id "W7K_00640-1"; +contig48 ena gene 68508 70463 . + . gene_id "W7K_00310"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 68508 70463 . + . gene_id "W7K_00310"; transcript_id "KOF01251"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 68508 70463 . + . gene_id "W7K_00310"; transcript_id "KOF01251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01251-1"; +contig48 ena CDS 68508 70460 . + 0 gene_id "W7K_00310"; transcript_id "KOF01251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01251"; +contig48 ena start_codon 68508 68510 . + 0 gene_id "W7K_00310"; transcript_id "KOF01251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 70461 70463 . + 0 gene_id "W7K_00310"; transcript_id "KOF01251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 70511 71050 . + . gene_id "W7K_00315"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 70511 71050 . + . gene_id "W7K_00315"; transcript_id "KOF01315"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 70511 71050 . + . gene_id "W7K_00315"; transcript_id "KOF01315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01315-1"; +contig48 ena CDS 70511 71047 . + 0 gene_id "W7K_00315"; transcript_id "KOF01315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01315"; +contig48 ena start_codon 70511 70513 . + 0 gene_id "W7K_00315"; transcript_id "KOF01315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 71048 71050 . + 0 gene_id "W7K_00315"; transcript_id "KOF01315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 71035 71355 . + . gene_id "W7K_00320"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 71035 71355 . + . gene_id "W7K_00320"; transcript_id "KOF01252"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 71035 71355 . + . gene_id "W7K_00320"; transcript_id "KOF01252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01252-1"; +contig48 ena CDS 71035 71352 . + 0 gene_id "W7K_00320"; transcript_id "KOF01252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01252"; +contig48 ena start_codon 71035 71037 . + 0 gene_id "W7K_00320"; transcript_id "KOF01252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 71353 71355 . + 0 gene_id "W7K_00320"; transcript_id "KOF01252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 71491 71895 . - . gene_id "W7K_00325"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 71491 71895 . - . gene_id "W7K_00325"; transcript_id "KOF01253"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 71491 71895 . - . gene_id "W7K_00325"; transcript_id "KOF01253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01253-1"; +contig48 ena CDS 71494 71895 . - 0 gene_id "W7K_00325"; transcript_id "KOF01253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01253"; +contig48 ena start_codon 71893 71895 . - 0 gene_id "W7K_00325"; transcript_id "KOF01253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 71491 71493 . - 0 gene_id "W7K_00325"; transcript_id "KOF01253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 72361 72738 . - . gene_id "W7K_00330"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 72361 72738 . - . gene_id "W7K_00330"; transcript_id "KOF01254"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 72361 72738 . - . gene_id "W7K_00330"; transcript_id "KOF01254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01254-1"; +contig48 ena CDS 72364 72738 . - 0 gene_id "W7K_00330"; transcript_id "KOF01254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01254"; +contig48 ena start_codon 72736 72738 . - 0 gene_id "W7K_00330"; transcript_id "KOF01254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 72361 72363 . - 0 gene_id "W7K_00330"; transcript_id "KOF01254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 72815 73330 . - . gene_id "W7K_00335"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 72815 73330 . - . gene_id "W7K_00335"; transcript_id "KOF01255"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 72815 73330 . - . gene_id "W7K_00335"; transcript_id "KOF01255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01255-1"; +contig48 ena CDS 72818 73330 . - 0 gene_id "W7K_00335"; transcript_id "KOF01255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01255"; +contig48 ena start_codon 73328 73330 . - 0 gene_id "W7K_00335"; transcript_id "KOF01255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 72815 72817 . - 0 gene_id "W7K_00335"; transcript_id "KOF01255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 73913 76387 . + . gene_id "W7K_00340"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 73913 76387 . + . gene_id "W7K_00340"; transcript_id "KOF01316"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 73913 76387 . + . gene_id "W7K_00340"; transcript_id "KOF01316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01316-1"; +contig48 ena CDS 73913 76384 . + 0 gene_id "W7K_00340"; transcript_id "KOF01316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01316"; +contig48 ena start_codon 73913 73915 . + 0 gene_id "W7K_00340"; transcript_id "KOF01316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 76385 76387 . + 0 gene_id "W7K_00340"; transcript_id "KOF01316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 76596 77063 . + . gene_id "W7K_00345"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 76596 77063 . + . gene_id "W7K_00345"; transcript_id "KOF01317"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 76596 77063 . + . gene_id "W7K_00345"; transcript_id "KOF01317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01317-1"; +contig48 ena CDS 76596 77060 . + 0 gene_id "W7K_00345"; transcript_id "KOF01317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01317"; +contig48 ena start_codon 76596 76598 . + 0 gene_id "W7K_00345"; transcript_id "KOF01317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 77061 77063 . + 0 gene_id "W7K_00345"; transcript_id "KOF01317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 77293 77985 . - . gene_id "W7K_00350"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 77293 77985 . - . gene_id "W7K_00350"; transcript_id "KOF01256"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 77293 77985 . - . gene_id "W7K_00350"; transcript_id "KOF01256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01256-1"; +contig48 ena CDS 77296 77985 . - 0 gene_id "W7K_00350"; transcript_id "KOF01256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01256"; +contig48 ena start_codon 77983 77985 . - 0 gene_id "W7K_00350"; transcript_id "KOF01256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 77293 77295 . - 0 gene_id "W7K_00350"; transcript_id "KOF01256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 77990 78421 . - . gene_id "W7K_00355"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 77990 78421 . - . gene_id "W7K_00355"; transcript_id "KOF01257"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 77990 78421 . - . gene_id "W7K_00355"; transcript_id "KOF01257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01257-1"; +contig48 ena CDS 77993 78421 . - 0 gene_id "W7K_00355"; transcript_id "KOF01257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01257"; +contig48 ena start_codon 78419 78421 . - 0 gene_id "W7K_00355"; transcript_id "KOF01257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 77990 77992 . - 0 gene_id "W7K_00355"; transcript_id "KOF01257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 78727 79857 . - . gene_id "W7K_00360"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 78727 79857 . - . gene_id "W7K_00360"; transcript_id "KOF01258"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 78727 79857 . - . gene_id "W7K_00360"; transcript_id "KOF01258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01258-1"; +contig48 ena CDS 78730 79857 . - 0 gene_id "W7K_00360"; transcript_id "KOF01258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01258"; +contig48 ena start_codon 79855 79857 . - 0 gene_id "W7K_00360"; transcript_id "KOF01258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 78727 78729 . - 0 gene_id "W7K_00360"; transcript_id "KOF01258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 80372 81469 . - . gene_id "W7K_00365"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 80372 81469 . - . gene_id "W7K_00365"; transcript_id "KOF01259"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 80372 81469 . - . gene_id "W7K_00365"; transcript_id "KOF01259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01259-1"; +contig48 ena CDS 80375 81469 . - 0 gene_id "W7K_00365"; transcript_id "KOF01259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01259"; +contig48 ena start_codon 81467 81469 . - 0 gene_id "W7K_00365"; transcript_id "KOF01259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 80372 80374 . - 0 gene_id "W7K_00365"; transcript_id "KOF01259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 81538 82128 . + . gene_id "W7K_00370"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 81538 82128 . + . gene_id "W7K_00370"; transcript_id "KOF01260"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 81538 82128 . + . gene_id "W7K_00370"; transcript_id "KOF01260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01260-1"; +contig48 ena CDS 81538 82125 . + 0 gene_id "W7K_00370"; transcript_id "KOF01260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01260"; +contig48 ena start_codon 81538 81540 . + 0 gene_id "W7K_00370"; transcript_id "KOF01260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 82126 82128 . + 0 gene_id "W7K_00370"; transcript_id "KOF01260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 82829 83269 . - . gene_id "W7K_00380"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 82829 83269 . - . gene_id "W7K_00380"; transcript_id "KOF01261"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 82829 83269 . - . gene_id "W7K_00380"; transcript_id "KOF01261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01261-1"; +contig48 ena CDS 82832 83269 . - 0 gene_id "W7K_00380"; transcript_id "KOF01261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01261"; +contig48 ena start_codon 83267 83269 . - 0 gene_id "W7K_00380"; transcript_id "KOF01261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 82829 82831 . - 0 gene_id "W7K_00380"; transcript_id "KOF01261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 83320 84012 . - . gene_id "W7K_00385"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 83320 84012 . - . gene_id "W7K_00385"; transcript_id "KOF01262"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 83320 84012 . - . gene_id "W7K_00385"; transcript_id "KOF01262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01262-1"; +contig48 ena CDS 83323 84012 . - 0 gene_id "W7K_00385"; transcript_id "KOF01262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01262"; +contig48 ena start_codon 84010 84012 . - 0 gene_id "W7K_00385"; transcript_id "KOF01262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 83320 83322 . - 0 gene_id "W7K_00385"; transcript_id "KOF01262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 84009 84473 . - . gene_id "W7K_00390"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 84009 84473 . - . gene_id "W7K_00390"; transcript_id "KOF01263"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 84009 84473 . - . gene_id "W7K_00390"; transcript_id "KOF01263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01263-1"; +contig48 ena CDS 84012 84473 . - 0 gene_id "W7K_00390"; transcript_id "KOF01263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01263"; +contig48 ena start_codon 84471 84473 . - 0 gene_id "W7K_00390"; transcript_id "KOF01263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 84009 84011 . - 0 gene_id "W7K_00390"; transcript_id "KOF01263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 84537 85286 . - . gene_id "W7K_00395"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 84537 85286 . - . gene_id "W7K_00395"; transcript_id "KOF01264"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 84537 85286 . - . gene_id "W7K_00395"; transcript_id "KOF01264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01264-1"; +contig48 ena CDS 84540 85286 . - 0 gene_id "W7K_00395"; transcript_id "KOF01264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01264"; +contig48 ena start_codon 85284 85286 . - 0 gene_id "W7K_00395"; transcript_id "KOF01264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 84537 84539 . - 0 gene_id "W7K_00395"; transcript_id "KOF01264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 85565 86551 . - . gene_id "W7K_00400"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 85565 86551 . - . gene_id "W7K_00400"; transcript_id "KOF01318"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 85565 86551 . - . gene_id "W7K_00400"; transcript_id "KOF01318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01318-1"; +contig48 ena CDS 85568 86551 . - 0 gene_id "W7K_00400"; transcript_id "KOF01318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01318"; +contig48 ena start_codon 86549 86551 . - 0 gene_id "W7K_00400"; transcript_id "KOF01318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 85565 85567 . - 0 gene_id "W7K_00400"; transcript_id "KOF01318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 86581 87840 . - . gene_id "W7K_00405"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 86581 87840 . - . gene_id "W7K_00405"; transcript_id "KOF01265"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 86581 87840 . - . gene_id "W7K_00405"; transcript_id "KOF01265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01265-1"; +contig48 ena CDS 86584 87840 . - 0 gene_id "W7K_00405"; transcript_id "KOF01265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01265"; +contig48 ena start_codon 87838 87840 . - 0 gene_id "W7K_00405"; transcript_id "KOF01265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 86581 86583 . - 0 gene_id "W7K_00405"; transcript_id "KOF01265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 87894 88655 . + . gene_id "W7K_00410"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 87894 88655 . + . gene_id "W7K_00410"; transcript_id "KOF01266"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 87894 88655 . + . gene_id "W7K_00410"; transcript_id "KOF01266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01266-1"; +contig48 ena CDS 87894 88652 . + 0 gene_id "W7K_00410"; transcript_id "KOF01266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01266"; +contig48 ena start_codon 87894 87896 . + 0 gene_id "W7K_00410"; transcript_id "KOF01266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 88653 88655 . + 0 gene_id "W7K_00410"; transcript_id "KOF01266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 88814 90223 . + . gene_id "W7K_00415"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 88814 90223 . + . gene_id "W7K_00415"; transcript_id "KOF01267"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 88814 90223 . + . gene_id "W7K_00415"; transcript_id "KOF01267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01267-1"; +contig48 ena CDS 88814 90220 . + 0 gene_id "W7K_00415"; transcript_id "KOF01267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01267"; +contig48 ena start_codon 88814 88816 . + 0 gene_id "W7K_00415"; transcript_id "KOF01267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 90221 90223 . + 0 gene_id "W7K_00415"; transcript_id "KOF01267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 90220 90939 . + . gene_id "W7K_00420"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 90220 90939 . + . gene_id "W7K_00420"; transcript_id "KOF01268"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 90220 90939 . + . gene_id "W7K_00420"; transcript_id "KOF01268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01268-1"; +contig48 ena CDS 90220 90936 . + 0 gene_id "W7K_00420"; transcript_id "KOF01268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01268"; +contig48 ena start_codon 90220 90222 . + 0 gene_id "W7K_00420"; transcript_id "KOF01268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 90937 90939 . + 0 gene_id "W7K_00420"; transcript_id "KOF01268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 91309 92493 . - . gene_id "W7K_00425"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 91309 92493 . - . gene_id "W7K_00425"; transcript_id "KOF01269"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 91309 92493 . - . gene_id "W7K_00425"; transcript_id "KOF01269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01269-1"; +contig48 ena CDS 91312 92493 . - 0 gene_id "W7K_00425"; transcript_id "KOF01269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01269"; +contig48 ena start_codon 92491 92493 . - 0 gene_id "W7K_00425"; transcript_id "KOF01269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 91309 91311 . - 0 gene_id "W7K_00425"; transcript_id "KOF01269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 92497 93030 . - . gene_id "W7K_00430"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 92497 93030 . - . gene_id "W7K_00430"; transcript_id "KOF01270"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 92497 93030 . - . gene_id "W7K_00430"; transcript_id "KOF01270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01270-1"; +contig48 ena CDS 92500 93030 . - 0 gene_id "W7K_00430"; transcript_id "KOF01270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01270"; +contig48 ena start_codon 93028 93030 . - 0 gene_id "W7K_00430"; transcript_id "KOF01270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 92497 92499 . - 0 gene_id "W7K_00430"; transcript_id "KOF01270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 93027 93971 . - . gene_id "W7K_00435"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 93027 93971 . - . gene_id "W7K_00435"; transcript_id "KOF01271"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 93027 93971 . - . gene_id "W7K_00435"; transcript_id "KOF01271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01271-1"; +contig48 ena CDS 93030 93971 . - 0 gene_id "W7K_00435"; transcript_id "KOF01271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01271"; +contig48 ena start_codon 93969 93971 . - 0 gene_id "W7K_00435"; transcript_id "KOF01271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 93027 93029 . - 0 gene_id "W7K_00435"; transcript_id "KOF01271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 94085 95227 . + . gene_id "W7K_00440"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 94085 95227 . + . gene_id "W7K_00440"; transcript_id "KOF01272"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 94085 95227 . + . gene_id "W7K_00440"; transcript_id "KOF01272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01272-1"; +contig48 ena CDS 94085 95224 . + 0 gene_id "W7K_00440"; transcript_id "KOF01272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01272"; +contig48 ena start_codon 94085 94087 . + 0 gene_id "W7K_00440"; transcript_id "KOF01272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 95225 95227 . + 0 gene_id "W7K_00440"; transcript_id "KOF01272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 95234 96298 . - . gene_id "W7K_00445"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 95234 96298 . - . gene_id "W7K_00445"; transcript_id "KOF01273"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 95234 96298 . - . gene_id "W7K_00445"; transcript_id "KOF01273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01273-1"; +contig48 ena CDS 95237 96298 . - 0 gene_id "W7K_00445"; transcript_id "KOF01273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01273"; +contig48 ena start_codon 96296 96298 . - 0 gene_id "W7K_00445"; transcript_id "KOF01273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 95234 95236 . - 0 gene_id "W7K_00445"; transcript_id "KOF01273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 96315 97268 . - . gene_id "W7K_00450"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 96315 97268 . - . gene_id "W7K_00450"; transcript_id "KOF01274"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 96315 97268 . - . gene_id "W7K_00450"; transcript_id "KOF01274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01274-1"; +contig48 ena CDS 96318 97268 . - 0 gene_id "W7K_00450"; transcript_id "KOF01274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01274"; +contig48 ena start_codon 97266 97268 . - 0 gene_id "W7K_00450"; transcript_id "KOF01274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 96315 96317 . - 0 gene_id "W7K_00450"; transcript_id "KOF01274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 97265 97675 . - . gene_id "W7K_00455"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 97265 97675 . - . gene_id "W7K_00455"; transcript_id "KOF01275"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 97265 97675 . - . gene_id "W7K_00455"; transcript_id "KOF01275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01275-1"; +contig48 ena CDS 97268 97675 . - 0 gene_id "W7K_00455"; transcript_id "KOF01275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01275"; +contig48 ena start_codon 97673 97675 . - 0 gene_id "W7K_00455"; transcript_id "KOF01275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 97265 97267 . - 0 gene_id "W7K_00455"; transcript_id "KOF01275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 97723 98454 . - . gene_id "W7K_00460"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 97723 98454 . - . gene_id "W7K_00460"; transcript_id "KOF01276"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 97723 98454 . - . gene_id "W7K_00460"; transcript_id "KOF01276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01276-1"; +contig48 ena CDS 97726 98454 . - 0 gene_id "W7K_00460"; transcript_id "KOF01276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01276"; +contig48 ena start_codon 98452 98454 . - 0 gene_id "W7K_00460"; transcript_id "KOF01276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 97723 97725 . - 0 gene_id "W7K_00460"; transcript_id "KOF01276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 98451 99032 . - . gene_id "W7K_00465"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 98451 99032 . - . gene_id "W7K_00465"; transcript_id "KOF01277"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 98451 99032 . - . gene_id "W7K_00465"; transcript_id "KOF01277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01277-1"; +contig48 ena CDS 98454 99032 . - 0 gene_id "W7K_00465"; transcript_id "KOF01277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01277"; +contig48 ena start_codon 99030 99032 . - 0 gene_id "W7K_00465"; transcript_id "KOF01277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 98451 98453 . - 0 gene_id "W7K_00465"; transcript_id "KOF01277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 99241 100398 . + . gene_id "W7K_00470"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 99241 100398 . + . gene_id "W7K_00470"; transcript_id "KOF01278"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 99241 100398 . + . gene_id "W7K_00470"; transcript_id "KOF01278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01278-1"; +contig48 ena CDS 99241 100395 . + 0 gene_id "W7K_00470"; transcript_id "KOF01278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01278"; +contig48 ena start_codon 99241 99243 . + 0 gene_id "W7K_00470"; transcript_id "KOF01278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 100396 100398 . + 0 gene_id "W7K_00470"; transcript_id "KOF01278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 100400 102061 . + . gene_id "W7K_00475"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 100400 102061 . + . gene_id "W7K_00475"; transcript_id "KOF01279"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 100400 102061 . + . gene_id "W7K_00475"; transcript_id "KOF01279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01279-1"; +contig48 ena CDS 100400 102058 . + 0 gene_id "W7K_00475"; transcript_id "KOF01279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01279"; +contig48 ena start_codon 100400 100402 . + 0 gene_id "W7K_00475"; transcript_id "KOF01279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 102059 102061 . + 0 gene_id "W7K_00475"; transcript_id "KOF01279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 102473 104260 . + . gene_id "W7K_00480"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 102473 104260 . + . gene_id "W7K_00480"; transcript_id "KOF01280"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 102473 104260 . + . gene_id "W7K_00480"; transcript_id "KOF01280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01280-1"; +contig48 ena CDS 102473 104257 . + 0 gene_id "W7K_00480"; transcript_id "KOF01280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01280"; +contig48 ena start_codon 102473 102475 . + 0 gene_id "W7K_00480"; transcript_id "KOF01280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 104258 104260 . + 0 gene_id "W7K_00480"; transcript_id "KOF01280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 104266 105651 . + . gene_id "W7K_00485"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 104266 105651 . + . gene_id "W7K_00485"; transcript_id "KOF01281"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 104266 105651 . + . gene_id "W7K_00485"; transcript_id "KOF01281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01281-1"; +contig48 ena CDS 104266 105648 . + 0 gene_id "W7K_00485"; transcript_id "KOF01281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01281"; +contig48 ena start_codon 104266 104268 . + 0 gene_id "W7K_00485"; transcript_id "KOF01281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 105649 105651 . + 0 gene_id "W7K_00485"; transcript_id "KOF01281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 105655 106356 . - . gene_id "W7K_00490"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 105655 106356 . - . gene_id "W7K_00490"; transcript_id "KOF01282"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 105655 106356 . - . gene_id "W7K_00490"; transcript_id "KOF01282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01282-1"; +contig48 ena CDS 105658 106356 . - 0 gene_id "W7K_00490"; transcript_id "KOF01282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01282"; +contig48 ena start_codon 106354 106356 . - 0 gene_id "W7K_00490"; transcript_id "KOF01282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 105655 105657 . - 0 gene_id "W7K_00490"; transcript_id "KOF01282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 106401 107126 . - . gene_id "W7K_00495"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 106401 107126 . - . gene_id "W7K_00495"; transcript_id "KOF01283"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 106401 107126 . - . gene_id "W7K_00495"; transcript_id "KOF01283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01283-1"; +contig48 ena CDS 106404 107126 . - 0 gene_id "W7K_00495"; transcript_id "KOF01283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01283"; +contig48 ena start_codon 107124 107126 . - 0 gene_id "W7K_00495"; transcript_id "KOF01283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 106401 106403 . - 0 gene_id "W7K_00495"; transcript_id "KOF01283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 107193 107921 . - . gene_id "W7K_00500"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 107193 107921 . - . gene_id "W7K_00500"; transcript_id "KOF01284"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 107193 107921 . - . gene_id "W7K_00500"; transcript_id "KOF01284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01284-1"; +contig48 ena CDS 107196 107921 . - 0 gene_id "W7K_00500"; transcript_id "KOF01284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01284"; +contig48 ena start_codon 107919 107921 . - 0 gene_id "W7K_00500"; transcript_id "KOF01284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 107193 107195 . - 0 gene_id "W7K_00500"; transcript_id "KOF01284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 108070 108603 . - . gene_id "W7K_00505"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 108070 108603 . - . gene_id "W7K_00505"; transcript_id "KOF01285"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 108070 108603 . - . gene_id "W7K_00505"; transcript_id "KOF01285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01285-1"; +contig48 ena CDS 108073 108603 . - 0 gene_id "W7K_00505"; transcript_id "KOF01285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01285"; +contig48 ena start_codon 108601 108603 . - 0 gene_id "W7K_00505"; transcript_id "KOF01285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 108070 108072 . - 0 gene_id "W7K_00505"; transcript_id "KOF01285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 108813 109154 . - . gene_id "W7K_00510"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 108813 109154 . - . gene_id "W7K_00510"; transcript_id "KOF01286"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 108813 109154 . - . gene_id "W7K_00510"; transcript_id "KOF01286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01286-1"; +contig48 ena CDS 108816 109154 . - 0 gene_id "W7K_00510"; transcript_id "KOF01286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01286"; +contig48 ena start_codon 109152 109154 . - 0 gene_id "W7K_00510"; transcript_id "KOF01286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 108813 108815 . - 0 gene_id "W7K_00510"; transcript_id "KOF01286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 109257 109550 . - . gene_id "W7K_00515"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 109257 109550 . - . gene_id "W7K_00515"; transcript_id "KOF01287"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 109257 109550 . - . gene_id "W7K_00515"; transcript_id "KOF01287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01287-1"; +contig48 ena CDS 109260 109550 . - 0 gene_id "W7K_00515"; transcript_id "KOF01287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01287"; +contig48 ena start_codon 109548 109550 . - 0 gene_id "W7K_00515"; transcript_id "KOF01287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 109257 109259 . - 0 gene_id "W7K_00515"; transcript_id "KOF01287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 109543 112017 . - . gene_id "W7K_00520"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 109543 112017 . - . gene_id "W7K_00520"; transcript_id "KOF01288"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 109543 112017 . - . gene_id "W7K_00520"; transcript_id "KOF01288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01288-1"; +contig48 ena CDS 109546 112017 . - 0 gene_id "W7K_00520"; transcript_id "KOF01288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01288"; +contig48 ena start_codon 112015 112017 . - 0 gene_id "W7K_00520"; transcript_id "KOF01288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 109543 109545 . - 0 gene_id "W7K_00520"; transcript_id "KOF01288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 112249 112875 . - . gene_id "W7K_00525"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 112249 112875 . - . gene_id "W7K_00525"; transcript_id "KOF01289"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 112249 112875 . - . gene_id "W7K_00525"; transcript_id "KOF01289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01289-1"; +contig48 ena CDS 112252 112875 . - 0 gene_id "W7K_00525"; transcript_id "KOF01289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01289"; +contig48 ena start_codon 112873 112875 . - 0 gene_id "W7K_00525"; transcript_id "KOF01289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 112249 112251 . - 0 gene_id "W7K_00525"; transcript_id "KOF01289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 112872 113765 . - . gene_id "W7K_00530"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 112872 113765 . - . gene_id "W7K_00530"; transcript_id "KOF01319"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 112872 113765 . - . gene_id "W7K_00530"; transcript_id "KOF01319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01319-1"; +contig48 ena CDS 112875 113765 . - 0 gene_id "W7K_00530"; transcript_id "KOF01319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01319"; +contig48 ena start_codon 113763 113765 . - 0 gene_id "W7K_00530"; transcript_id "KOF01319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 112872 112874 . - 0 gene_id "W7K_00530"; transcript_id "KOF01319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 114009 117341 . - . gene_id "W7K_00535"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 114009 117341 . - . gene_id "W7K_00535"; transcript_id "KOF01290"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 114009 117341 . - . gene_id "W7K_00535"; transcript_id "KOF01290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01290-1"; +contig48 ena CDS 114012 117341 . - 0 gene_id "W7K_00535"; transcript_id "KOF01290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01290"; +contig48 ena start_codon 117339 117341 . - 0 gene_id "W7K_00535"; transcript_id "KOF01290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 114009 114011 . - 0 gene_id "W7K_00535"; transcript_id "KOF01290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 117499 119037 . - . gene_id "W7K_00540"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 117499 119037 . - . gene_id "W7K_00540"; transcript_id "KOF01291"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 117499 119037 . - . gene_id "W7K_00540"; transcript_id "KOF01291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01291-1"; +contig48 ena CDS 117502 119037 . - 0 gene_id "W7K_00540"; transcript_id "KOF01291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01291"; +contig48 ena start_codon 119035 119037 . - 0 gene_id "W7K_00540"; transcript_id "KOF01291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 117499 117501 . - 0 gene_id "W7K_00540"; transcript_id "KOF01291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 118949 119719 . - . gene_id "W7K_00545"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 118949 119719 . - . gene_id "W7K_00545"; transcript_id "KOF01292"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 118949 119719 . - . gene_id "W7K_00545"; transcript_id "KOF01292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01292-1"; +contig48 ena CDS 118952 119719 . - 0 gene_id "W7K_00545"; transcript_id "KOF01292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01292"; +contig48 ena start_codon 119717 119719 . - 0 gene_id "W7K_00545"; transcript_id "KOF01292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 118949 118951 . - 0 gene_id "W7K_00545"; transcript_id "KOF01292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 119872 119946 . + . gene_id "W7K_00550"; gene_source "ena"; gene_biotype "tRNA"; +contig48 ena transcript 119872 119946 . + . gene_id "W7K_00550"; transcript_id "EBT00051077669"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_00550"; transcript_source "ena"; transcript_biotype "tRNA"; +contig48 ena exon 119872 119946 . + . gene_id "W7K_00550"; transcript_id "EBT00051077669"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_00550"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_00550-1"; +contig48 ena gene 120229 120624 . - . gene_id "W7K_00555"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 120229 120624 . - . gene_id "W7K_00555"; transcript_id "KOF01293"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 120229 120624 . - . gene_id "W7K_00555"; transcript_id "KOF01293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01293-1"; +contig48 ena CDS 120232 120624 . - 0 gene_id "W7K_00555"; transcript_id "KOF01293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01293"; +contig48 ena start_codon 120622 120624 . - 0 gene_id "W7K_00555"; transcript_id "KOF01293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 120229 120231 . - 0 gene_id "W7K_00555"; transcript_id "KOF01293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 120893 121540 . + . gene_id "W7K_00560"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 120893 121540 . + . gene_id "W7K_00560"; transcript_id "KOF01294"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 120893 121540 . + . gene_id "W7K_00560"; transcript_id "KOF01294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01294-1"; +contig48 ena CDS 120893 121537 . + 0 gene_id "W7K_00560"; transcript_id "KOF01294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01294"; +contig48 ena start_codon 120893 120895 . + 0 gene_id "W7K_00560"; transcript_id "KOF01294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 121538 121540 . + 0 gene_id "W7K_00560"; transcript_id "KOF01294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 121572 123593 . - . gene_id "W7K_00565"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 121572 123593 . - . gene_id "W7K_00565"; transcript_id "KOF01295"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 121572 123593 . - . gene_id "W7K_00565"; transcript_id "KOF01295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01295-1"; +contig48 ena CDS 121575 123593 . - 0 gene_id "W7K_00565"; transcript_id "KOF01295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01295"; +contig48 ena start_codon 123591 123593 . - 0 gene_id "W7K_00565"; transcript_id "KOF01295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 121572 121574 . - 0 gene_id "W7K_00565"; transcript_id "KOF01295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 123941 125032 . - . gene_id "W7K_00570"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 123941 125032 . - . gene_id "W7K_00570"; transcript_id "KOF01296"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 123941 125032 . - . gene_id "W7K_00570"; transcript_id "KOF01296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01296-1"; +contig48 ena CDS 123944 125032 . - 0 gene_id "W7K_00570"; transcript_id "KOF01296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01296"; +contig48 ena start_codon 125030 125032 . - 0 gene_id "W7K_00570"; transcript_id "KOF01296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 123941 123943 . - 0 gene_id "W7K_00570"; transcript_id "KOF01296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 125032 125397 . - . gene_id "W7K_00575"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 125032 125397 . - . gene_id "W7K_00575"; transcript_id "KOF01320"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 125032 125397 . - . gene_id "W7K_00575"; transcript_id "KOF01320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01320-1"; +contig48 ena CDS 125035 125397 . - 0 gene_id "W7K_00575"; transcript_id "KOF01320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01320"; +contig48 ena start_codon 125395 125397 . - 0 gene_id "W7K_00575"; transcript_id "KOF01320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 125032 125034 . - 0 gene_id "W7K_00575"; transcript_id "KOF01320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 125400 127484 . - . gene_id "W7K_00580"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 125400 127484 . - . gene_id "W7K_00580"; transcript_id "KOF01321"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 125400 127484 . - . gene_id "W7K_00580"; transcript_id "KOF01321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01321-1"; +contig48 ena CDS 125403 127484 . - 0 gene_id "W7K_00580"; transcript_id "KOF01321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01321"; +contig48 ena start_codon 127482 127484 . - 0 gene_id "W7K_00580"; transcript_id "KOF01321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 125400 125402 . - 0 gene_id "W7K_00580"; transcript_id "KOF01321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 127591 128010 . - . gene_id "W7K_00585"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 127591 128010 . - . gene_id "W7K_00585"; transcript_id "KOF01297"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 127591 128010 . - . gene_id "W7K_00585"; transcript_id "KOF01297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01297-1"; +contig48 ena CDS 127594 128010 . - 0 gene_id "W7K_00585"; transcript_id "KOF01297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01297"; +contig48 ena start_codon 128008 128010 . - 0 gene_id "W7K_00585"; transcript_id "KOF01297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 127591 127593 . - 0 gene_id "W7K_00585"; transcript_id "KOF01297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 128310 129836 . - . gene_id "W7K_00590"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 128310 129836 . - . gene_id "W7K_00590"; transcript_id "KOF01298"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 128310 129836 . - . gene_id "W7K_00590"; transcript_id "KOF01298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01298-1"; +contig48 ena CDS 128313 129836 . - 0 gene_id "W7K_00590"; transcript_id "KOF01298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01298"; +contig48 ena start_codon 129834 129836 . - 0 gene_id "W7K_00590"; transcript_id "KOF01298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 128310 128312 . - 0 gene_id "W7K_00590"; transcript_id "KOF01298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 129937 131337 . + . gene_id "W7K_00595"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 129937 131337 . + . gene_id "W7K_00595"; transcript_id "KOF01299"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 129937 131337 . + . gene_id "W7K_00595"; transcript_id "KOF01299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01299-1"; +contig48 ena CDS 129937 131334 . + 0 gene_id "W7K_00595"; transcript_id "KOF01299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01299"; +contig48 ena start_codon 129937 129939 . + 0 gene_id "W7K_00595"; transcript_id "KOF01299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 131335 131337 . + 0 gene_id "W7K_00595"; transcript_id "KOF01299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 131516 132319 . + . gene_id "W7K_00600"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 131516 132319 . + . gene_id "W7K_00600"; transcript_id "KOF01300"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 131516 132319 . + . gene_id "W7K_00600"; transcript_id "KOF01300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01300-1"; +contig48 ena CDS 131516 132316 . + 0 gene_id "W7K_00600"; transcript_id "KOF01300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01300"; +contig48 ena start_codon 131516 131518 . + 0 gene_id "W7K_00600"; transcript_id "KOF01300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 132317 132319 . + 0 gene_id "W7K_00600"; transcript_id "KOF01300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 132376 132570 . + . gene_id "W7K_00605"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 132376 132570 . + . gene_id "W7K_00605"; transcript_id "KOF01301"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 132376 132570 . + . gene_id "W7K_00605"; transcript_id "KOF01301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01301-1"; +contig48 ena CDS 132376 132567 . + 0 gene_id "W7K_00605"; transcript_id "KOF01301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01301"; +contig48 ena start_codon 132376 132378 . + 0 gene_id "W7K_00605"; transcript_id "KOF01301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 132568 132570 . + 0 gene_id "W7K_00605"; transcript_id "KOF01301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 132605 133066 . - . gene_id "W7K_00610"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 132605 133066 . - . gene_id "W7K_00610"; transcript_id "KOF01302"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 132605 133066 . - . gene_id "W7K_00610"; transcript_id "KOF01302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01302-1"; +contig48 ena CDS 132608 133066 . - 0 gene_id "W7K_00610"; transcript_id "KOF01302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01302"; +contig48 ena start_codon 133064 133066 . - 0 gene_id "W7K_00610"; transcript_id "KOF01302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 132605 132607 . - 0 gene_id "W7K_00610"; transcript_id "KOF01302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 133188 133706 . - . gene_id "W7K_00615"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 133188 133706 . - . gene_id "W7K_00615"; transcript_id "KOF01303"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 133188 133706 . - . gene_id "W7K_00615"; transcript_id "KOF01303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01303-1"; +contig48 ena CDS 133191 133706 . - 0 gene_id "W7K_00615"; transcript_id "KOF01303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01303"; +contig48 ena start_codon 133704 133706 . - 0 gene_id "W7K_00615"; transcript_id "KOF01303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 133188 133190 . - 0 gene_id "W7K_00615"; transcript_id "KOF01303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 133703 134191 . - . gene_id "W7K_00620"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 133703 134191 . - . gene_id "W7K_00620"; transcript_id "KOF01304"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 133703 134191 . - . gene_id "W7K_00620"; transcript_id "KOF01304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01304-1"; +contig48 ena CDS 133706 134191 . - 0 gene_id "W7K_00620"; transcript_id "KOF01304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01304"; +contig48 ena start_codon 134189 134191 . - 0 gene_id "W7K_00620"; transcript_id "KOF01304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 133703 133705 . - 0 gene_id "W7K_00620"; transcript_id "KOF01304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 134295 134867 . + . gene_id "W7K_00625"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 134295 134867 . + . gene_id "W7K_00625"; transcript_id "KOF01305"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 134295 134867 . + . gene_id "W7K_00625"; transcript_id "KOF01305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01305-1"; +contig48 ena CDS 134295 134864 . + 0 gene_id "W7K_00625"; transcript_id "KOF01305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01305"; +contig48 ena start_codon 134295 134297 . + 0 gene_id "W7K_00625"; transcript_id "KOF01305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 134865 134867 . + 0 gene_id "W7K_00625"; transcript_id "KOF01305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 135080 137200 . - . gene_id "W7K_00630"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 135080 137200 . - . gene_id "W7K_00630"; transcript_id "KOF01306"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 135080 137200 . - . gene_id "W7K_00630"; transcript_id "KOF01306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01306-1"; +contig48 ena CDS 135083 137200 . - 0 gene_id "W7K_00630"; transcript_id "KOF01306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01306"; +contig48 ena start_codon 137198 137200 . - 0 gene_id "W7K_00630"; transcript_id "KOF01306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 135080 135082 . - 0 gene_id "W7K_00630"; transcript_id "KOF01306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena gene 137456 137920 . - . gene_id "W7K_00635"; gene_source "ena"; gene_biotype "protein_coding"; +contig48 ena transcript 137456 137920 . - . gene_id "W7K_00635"; transcript_id "KOF01307"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena exon 137456 137920 . - . gene_id "W7K_00635"; transcript_id "KOF01307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01307-1"; +contig48 ena CDS 137459 137920 . - 0 gene_id "W7K_00635"; transcript_id "KOF01307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01307"; +contig48 ena start_codon 137918 137920 . - 0 gene_id "W7K_00635"; transcript_id "KOF01307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig48 ena stop_codon 137456 137458 . - 0 gene_id "W7K_00635"; transcript_id "KOF01307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 257 1735 . + . gene_id "W7K_12595"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 257 1735 . + . gene_id "W7K_12595"; transcript_id "KOE98761"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 257 1735 . + . gene_id "W7K_12595"; transcript_id "KOE98761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98761-1"; +contig24 ena CDS 257 1732 . + 0 gene_id "W7K_12595"; transcript_id "KOE98761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98761"; +contig24 ena start_codon 257 259 . + 0 gene_id "W7K_12595"; transcript_id "KOE98761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 1733 1735 . + 0 gene_id "W7K_12595"; transcript_id "KOE98761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 1732 2223 . + . gene_id "W7K_12600"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 1732 2223 . + . gene_id "W7K_12600"; transcript_id "KOE98762"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 1732 2223 . + . gene_id "W7K_12600"; transcript_id "KOE98762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98762-1"; +contig24 ena CDS 1732 2220 . + 0 gene_id "W7K_12600"; transcript_id "KOE98762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98762"; +contig24 ena start_codon 1732 1734 . + 0 gene_id "W7K_12600"; transcript_id "KOE98762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 2221 2223 . + 0 gene_id "W7K_12600"; transcript_id "KOE98762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 2723 3973 . + . gene_id "W7K_12605"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 2723 3973 . + . gene_id "W7K_12605"; transcript_id "KOE98763"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 2723 3973 . + . gene_id "W7K_12605"; transcript_id "KOE98763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98763-1"; +contig24 ena CDS 2723 3970 . + 0 gene_id "W7K_12605"; transcript_id "KOE98763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98763"; +contig24 ena start_codon 2723 2725 . + 0 gene_id "W7K_12605"; transcript_id "KOE98763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 3971 3973 . + 0 gene_id "W7K_12605"; transcript_id "KOE98763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 4104 4283 . - . gene_id "W7K_12610"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 4104 4283 . - . gene_id "W7K_12610"; transcript_id "KOE98764"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 4104 4283 . - . gene_id "W7K_12610"; transcript_id "KOE98764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98764-1"; +contig24 ena CDS 4107 4283 . - 0 gene_id "W7K_12610"; transcript_id "KOE98764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98764"; +contig24 ena start_codon 4281 4283 . - 0 gene_id "W7K_12610"; transcript_id "KOE98764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 4104 4106 . - 0 gene_id "W7K_12610"; transcript_id "KOE98764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 4394 4807 . - . gene_id "W7K_12615"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 4394 4807 . - . gene_id "W7K_12615"; transcript_id "KOE98765"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 4394 4807 . - . gene_id "W7K_12615"; transcript_id "KOE98765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98765-1"; +contig24 ena CDS 4397 4807 . - 0 gene_id "W7K_12615"; transcript_id "KOE98765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98765"; +contig24 ena start_codon 4805 4807 . - 0 gene_id "W7K_12615"; transcript_id "KOE98765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 4394 4396 . - 0 gene_id "W7K_12615"; transcript_id "KOE98765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 4943 7147 . + . gene_id "W7K_12620"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 4943 7147 . + . gene_id "W7K_12620"; transcript_id "KOE98766"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 4943 7147 . + . gene_id "W7K_12620"; transcript_id "KOE98766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98766-1"; +contig24 ena CDS 4943 7144 . + 0 gene_id "W7K_12620"; transcript_id "KOE98766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98766"; +contig24 ena start_codon 4943 4945 . + 0 gene_id "W7K_12620"; transcript_id "KOE98766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 7145 7147 . + 0 gene_id "W7K_12620"; transcript_id "KOE98766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 7311 7877 . + . gene_id "W7K_12625"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 7311 7877 . + . gene_id "W7K_12625"; transcript_id "KOE98767"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 7311 7877 . + . gene_id "W7K_12625"; transcript_id "KOE98767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98767-1"; +contig24 ena CDS 7311 7874 . + 0 gene_id "W7K_12625"; transcript_id "KOE98767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98767"; +contig24 ena start_codon 7311 7313 . + 0 gene_id "W7K_12625"; transcript_id "KOE98767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 7875 7877 . + 0 gene_id "W7K_12625"; transcript_id "KOE98767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 7877 9550 . + . gene_id "W7K_12630"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 7877 9550 . + . gene_id "W7K_12630"; transcript_id "KOE98768"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 7877 9550 . + . gene_id "W7K_12630"; transcript_id "KOE98768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98768-1"; +contig24 ena CDS 7877 9547 . + 0 gene_id "W7K_12630"; transcript_id "KOE98768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98768"; +contig24 ena start_codon 7877 7879 . + 0 gene_id "W7K_12630"; transcript_id "KOE98768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 9548 9550 . + 0 gene_id "W7K_12630"; transcript_id "KOE98768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 9561 10709 . + . gene_id "W7K_12635"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 9561 10709 . + . gene_id "W7K_12635"; transcript_id "KOE98769"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 9561 10709 . + . gene_id "W7K_12635"; transcript_id "KOE98769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98769-1"; +contig24 ena CDS 9561 10706 . + 0 gene_id "W7K_12635"; transcript_id "KOE98769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98769"; +contig24 ena start_codon 9561 9563 . + 0 gene_id "W7K_12635"; transcript_id "KOE98769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 10707 10709 . + 0 gene_id "W7K_12635"; transcript_id "KOE98769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 10780 11271 . - . gene_id "W7K_12640"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 10780 11271 . - . gene_id "W7K_12640"; transcript_id "KOE98770"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 10780 11271 . - . gene_id "W7K_12640"; transcript_id "KOE98770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98770-1"; +contig24 ena CDS 10783 11271 . - 0 gene_id "W7K_12640"; transcript_id "KOE98770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98770"; +contig24 ena start_codon 11269 11271 . - 0 gene_id "W7K_12640"; transcript_id "KOE98770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 10780 10782 . - 0 gene_id "W7K_12640"; transcript_id "KOE98770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 11306 12709 . - . gene_id "W7K_12645"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 11306 12709 . - . gene_id "W7K_12645"; transcript_id "KOE98771"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 11306 12709 . - . gene_id "W7K_12645"; transcript_id "KOE98771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98771-1"; +contig24 ena CDS 11309 12709 . - 0 gene_id "W7K_12645"; transcript_id "KOE98771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98771"; +contig24 ena start_codon 12707 12709 . - 0 gene_id "W7K_12645"; transcript_id "KOE98771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 11306 11308 . - 0 gene_id "W7K_12645"; transcript_id "KOE98771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 12803 14395 . - . gene_id "W7K_12650"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 12803 14395 . - . gene_id "W7K_12650"; transcript_id "KOE98772"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 12803 14395 . - . gene_id "W7K_12650"; transcript_id "KOE98772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98772-1"; +contig24 ena CDS 12806 14395 . - 0 gene_id "W7K_12650"; transcript_id "KOE98772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98772"; +contig24 ena start_codon 14393 14395 . - 0 gene_id "W7K_12650"; transcript_id "KOE98772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 12803 12805 . - 0 gene_id "W7K_12650"; transcript_id "KOE98772"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 14592 15002 . - . gene_id "W7K_12655"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 14592 15002 . - . gene_id "W7K_12655"; transcript_id "KOE98773"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 14592 15002 . - . gene_id "W7K_12655"; transcript_id "KOE98773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98773-1"; +contig24 ena CDS 14595 15002 . - 0 gene_id "W7K_12655"; transcript_id "KOE98773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98773"; +contig24 ena start_codon 15000 15002 . - 0 gene_id "W7K_12655"; transcript_id "KOE98773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 14592 14594 . - 0 gene_id "W7K_12655"; transcript_id "KOE98773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 15013 16332 . - . gene_id "W7K_12660"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 15013 16332 . - . gene_id "W7K_12660"; transcript_id "KOE98774"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 15013 16332 . - . gene_id "W7K_12660"; transcript_id "KOE98774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98774-1"; +contig24 ena CDS 15016 16332 . - 0 gene_id "W7K_12660"; transcript_id "KOE98774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98774"; +contig24 ena start_codon 16330 16332 . - 0 gene_id "W7K_12660"; transcript_id "KOE98774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 15013 15015 . - 0 gene_id "W7K_12660"; transcript_id "KOE98774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 16414 17874 . - . gene_id "W7K_12665"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 16414 17874 . - . gene_id "W7K_12665"; transcript_id "KOE98775"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 16414 17874 . - . gene_id "W7K_12665"; transcript_id "KOE98775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98775-1"; +contig24 ena CDS 16417 17874 . - 0 gene_id "W7K_12665"; transcript_id "KOE98775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98775"; +contig24 ena start_codon 17872 17874 . - 0 gene_id "W7K_12665"; transcript_id "KOE98775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 16414 16416 . - 0 gene_id "W7K_12665"; transcript_id "KOE98775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 17878 18591 . - . gene_id "W7K_12670"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 17878 18591 . - . gene_id "W7K_12670"; transcript_id "KOE98871"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 17878 18591 . - . gene_id "W7K_12670"; transcript_id "KOE98871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98871-1"; +contig24 ena CDS 17881 18591 . - 0 gene_id "W7K_12670"; transcript_id "KOE98871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98871"; +contig24 ena start_codon 18589 18591 . - 0 gene_id "W7K_12670"; transcript_id "KOE98871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 17878 17880 . - 0 gene_id "W7K_12670"; transcript_id "KOE98871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 18639 19496 . + . gene_id "W7K_12675"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 18639 19496 . + . gene_id "W7K_12675"; transcript_id "KOE98776"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 18639 19496 . + . gene_id "W7K_12675"; transcript_id "KOE98776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98776-1"; +contig24 ena CDS 18639 19493 . + 0 gene_id "W7K_12675"; transcript_id "KOE98776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98776"; +contig24 ena start_codon 18639 18641 . + 0 gene_id "W7K_12675"; transcript_id "KOE98776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 19494 19496 . + 0 gene_id "W7K_12675"; transcript_id "KOE98776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 19592 20137 . + . gene_id "W7K_12680"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 19592 20137 . + . gene_id "W7K_12680"; transcript_id "KOE98777"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 19592 20137 . + . gene_id "W7K_12680"; transcript_id "KOE98777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98777-1"; +contig24 ena CDS 19592 20134 . + 0 gene_id "W7K_12680"; transcript_id "KOE98777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98777"; +contig24 ena start_codon 19592 19594 . + 0 gene_id "W7K_12680"; transcript_id "KOE98777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 20135 20137 . + 0 gene_id "W7K_12680"; transcript_id "KOE98777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 20265 23729 . + . gene_id "W7K_12685"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 20265 23729 . + . gene_id "W7K_12685"; transcript_id "KOE98778"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 20265 23729 . + . gene_id "W7K_12685"; transcript_id "KOE98778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98778-1"; +contig24 ena CDS 20265 23726 . + 0 gene_id "W7K_12685"; transcript_id "KOE98778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98778"; +contig24 ena start_codon 20265 20267 . + 0 gene_id "W7K_12685"; transcript_id "KOE98778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 23727 23729 . + 0 gene_id "W7K_12685"; transcript_id "KOE98778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 23777 24394 . + . gene_id "W7K_12690"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 23777 24394 . + . gene_id "W7K_12690"; transcript_id "KOE98779"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 23777 24394 . + . gene_id "W7K_12690"; transcript_id "KOE98779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98779-1"; +contig24 ena CDS 23777 24391 . + 0 gene_id "W7K_12690"; transcript_id "KOE98779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98779"; +contig24 ena start_codon 23777 23779 . + 0 gene_id "W7K_12690"; transcript_id "KOE98779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 24392 24394 . + 0 gene_id "W7K_12690"; transcript_id "KOE98779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 24594 26687 . - . gene_id "W7K_12695"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 24594 26687 . - . gene_id "W7K_12695"; transcript_id "KOE98780"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 24594 26687 . - . gene_id "W7K_12695"; transcript_id "KOE98780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98780-1"; +contig24 ena CDS 24597 26687 . - 0 gene_id "W7K_12695"; transcript_id "KOE98780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98780"; +contig24 ena start_codon 26685 26687 . - 0 gene_id "W7K_12695"; transcript_id "KOE98780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 24594 24596 . - 0 gene_id "W7K_12695"; transcript_id "KOE98780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 27620 28369 . - . gene_id "W7K_12700"; gene_name "gpmA"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 27620 28369 . - . gene_id "W7K_12700"; transcript_id "KOE98781"; gene_name "gpmA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gpmA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 27620 28369 . - . gene_id "W7K_12700"; transcript_id "KOE98781"; exon_number "1"; gene_name "gpmA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gpmA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98781-1"; +contig24 ena CDS 27623 28369 . - 0 gene_id "W7K_12700"; transcript_id "KOE98781"; exon_number "1"; gene_name "gpmA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gpmA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98781"; +contig24 ena start_codon 28367 28369 . - 0 gene_id "W7K_12700"; transcript_id "KOE98781"; exon_number "1"; gene_name "gpmA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gpmA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 27620 27622 . - 0 gene_id "W7K_12700"; transcript_id "KOE98781"; exon_number "1"; gene_name "gpmA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gpmA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 28464 29138 . + . gene_id "W7K_12705"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 28464 29138 . + . gene_id "W7K_12705"; transcript_id "KOE98782"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 28464 29138 . + . gene_id "W7K_12705"; transcript_id "KOE98782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98782-1"; +contig24 ena CDS 28464 29135 . + 0 gene_id "W7K_12705"; transcript_id "KOE98782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98782"; +contig24 ena start_codon 28464 28466 . + 0 gene_id "W7K_12705"; transcript_id "KOE98782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 29136 29138 . + 0 gene_id "W7K_12705"; transcript_id "KOE98782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 29177 30157 . - . gene_id "W7K_12710"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 29177 30157 . - . gene_id "W7K_12710"; transcript_id "KOE98783"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 29177 30157 . - . gene_id "W7K_12710"; transcript_id "KOE98783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98783-1"; +contig24 ena CDS 29180 30157 . - 0 gene_id "W7K_12710"; transcript_id "KOE98783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98783"; +contig24 ena start_codon 30155 30157 . - 0 gene_id "W7K_12710"; transcript_id "KOE98783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 29177 29179 . - 0 gene_id "W7K_12710"; transcript_id "KOE98783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 30299 32548 . - . gene_id "W7K_12715"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 30299 32548 . - . gene_id "W7K_12715"; transcript_id "KOE98784"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 30299 32548 . - . gene_id "W7K_12715"; transcript_id "KOE98784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98784-1"; +contig24 ena CDS 30302 32548 . - 0 gene_id "W7K_12715"; transcript_id "KOE98784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98784"; +contig24 ena start_codon 32546 32548 . - 0 gene_id "W7K_12715"; transcript_id "KOE98784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 30299 30301 . - 0 gene_id "W7K_12715"; transcript_id "KOE98784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 32835 34250 . + . gene_id "W7K_12720"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 32835 34250 . + . gene_id "W7K_12720"; transcript_id "KOE98872"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 32835 34250 . + . gene_id "W7K_12720"; transcript_id "KOE98872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98872-1"; +contig24 ena CDS 32835 34247 . + 0 gene_id "W7K_12720"; transcript_id "KOE98872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98872"; +contig24 ena start_codon 32835 32837 . + 0 gene_id "W7K_12720"; transcript_id "KOE98872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 34248 34250 . + 0 gene_id "W7K_12720"; transcript_id "KOE98872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 34358 35572 . - . gene_id "W7K_12725"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 34358 35572 . - . gene_id "W7K_12725"; transcript_id "KOE98785"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 34358 35572 . - . gene_id "W7K_12725"; transcript_id "KOE98785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98785-1"; +contig24 ena CDS 34361 35572 . - 0 gene_id "W7K_12725"; transcript_id "KOE98785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98785"; +contig24 ena start_codon 35570 35572 . - 0 gene_id "W7K_12725"; transcript_id "KOE98785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 34358 34360 . - 0 gene_id "W7K_12725"; transcript_id "KOE98785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 35651 36100 . + . gene_id "W7K_12730"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 35651 36100 . + . gene_id "W7K_12730"; transcript_id "KOE98786"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 35651 36100 . + . gene_id "W7K_12730"; transcript_id "KOE98786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98786-1"; +contig24 ena CDS 35651 36097 . + 0 gene_id "W7K_12730"; transcript_id "KOE98786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98786"; +contig24 ena start_codon 35651 35653 . + 0 gene_id "W7K_12730"; transcript_id "KOE98786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 36098 36100 . + 0 gene_id "W7K_12730"; transcript_id "KOE98786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 36174 37301 . + . gene_id "W7K_12735"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 36174 37301 . + . gene_id "W7K_12735"; transcript_id "KOE98787"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 36174 37301 . + . gene_id "W7K_12735"; transcript_id "KOE98787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98787-1"; +contig24 ena CDS 36174 37298 . + 0 gene_id "W7K_12735"; transcript_id "KOE98787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98787"; +contig24 ena start_codon 36174 36176 . + 0 gene_id "W7K_12735"; transcript_id "KOE98787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 37299 37301 . + 0 gene_id "W7K_12735"; transcript_id "KOE98787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 37436 38119 . + . gene_id "W7K_12740"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 37436 38119 . + . gene_id "W7K_12740"; transcript_id "KOE98788"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 37436 38119 . + . gene_id "W7K_12740"; transcript_id "KOE98788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98788-1"; +contig24 ena CDS 37436 38116 . + 0 gene_id "W7K_12740"; transcript_id "KOE98788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98788"; +contig24 ena start_codon 37436 37438 . + 0 gene_id "W7K_12740"; transcript_id "KOE98788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 38117 38119 . + 0 gene_id "W7K_12740"; transcript_id "KOE98788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 38116 39495 . + . gene_id "W7K_12745"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 38116 39495 . + . gene_id "W7K_12745"; transcript_id "KOE98789"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 38116 39495 . + . gene_id "W7K_12745"; transcript_id "KOE98789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98789-1"; +contig24 ena CDS 38116 39492 . + 0 gene_id "W7K_12745"; transcript_id "KOE98789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98789"; +contig24 ena start_codon 38116 38118 . + 0 gene_id "W7K_12745"; transcript_id "KOE98789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 39493 39495 . + 0 gene_id "W7K_12745"; transcript_id "KOE98789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 39575 40411 . + . gene_id "W7K_12750"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 39575 40411 . + . gene_id "W7K_12750"; transcript_id "KOE98790"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 39575 40411 . + . gene_id "W7K_12750"; transcript_id "KOE98790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98790-1"; +contig24 ena CDS 39575 40408 . + 0 gene_id "W7K_12750"; transcript_id "KOE98790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98790"; +contig24 ena start_codon 39575 39577 . + 0 gene_id "W7K_12750"; transcript_id "KOE98790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 40409 40411 . + 0 gene_id "W7K_12750"; transcript_id "KOE98790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 40413 40772 . + . gene_id "W7K_12755"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 40413 40772 . + . gene_id "W7K_12755"; transcript_id "KOE98791"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 40413 40772 . + . gene_id "W7K_12755"; transcript_id "KOE98791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98791-1"; +contig24 ena CDS 40413 40769 . + 0 gene_id "W7K_12755"; transcript_id "KOE98791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98791"; +contig24 ena start_codon 40413 40415 . + 0 gene_id "W7K_12755"; transcript_id "KOE98791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 40770 40772 . + 0 gene_id "W7K_12755"; transcript_id "KOE98791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 40769 41167 . + . gene_id "W7K_12760"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 40769 41167 . + . gene_id "W7K_12760"; transcript_id "KOE98792"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 40769 41167 . + . gene_id "W7K_12760"; transcript_id "KOE98792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98792-1"; +contig24 ena CDS 40769 41164 . + 0 gene_id "W7K_12760"; transcript_id "KOE98792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98792"; +contig24 ena start_codon 40769 40771 . + 0 gene_id "W7K_12760"; transcript_id "KOE98792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 41165 41167 . + 0 gene_id "W7K_12760"; transcript_id "KOE98792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 41178 42380 . + . gene_id "W7K_12765"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 41178 42380 . + . gene_id "W7K_12765"; transcript_id "KOE98793"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 41178 42380 . + . gene_id "W7K_12765"; transcript_id "KOE98793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98793-1"; +contig24 ena CDS 41178 42377 . + 0 gene_id "W7K_12765"; transcript_id "KOE98793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98793"; +contig24 ena start_codon 41178 41180 . + 0 gene_id "W7K_12765"; transcript_id "KOE98793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 42378 42380 . + 0 gene_id "W7K_12765"; transcript_id "KOE98793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 42555 43271 . + . gene_id "W7K_12770"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 42555 43271 . + . gene_id "W7K_12770"; transcript_id "KOE98794"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 42555 43271 . + . gene_id "W7K_12770"; transcript_id "KOE98794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98794-1"; +contig24 ena CDS 42555 43268 . + 0 gene_id "W7K_12770"; transcript_id "KOE98794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98794"; +contig24 ena start_codon 42555 42557 . + 0 gene_id "W7K_12770"; transcript_id "KOE98794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 43269 43271 . + 0 gene_id "W7K_12770"; transcript_id "KOE98794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 43320 44720 . + . gene_id "W7K_12775"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 43320 44720 . + . gene_id "W7K_12775"; transcript_id "KOE98795"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 43320 44720 . + . gene_id "W7K_12775"; transcript_id "KOE98795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98795-1"; +contig24 ena CDS 43320 44717 . + 0 gene_id "W7K_12775"; transcript_id "KOE98795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98795"; +contig24 ena start_codon 43320 43322 . + 0 gene_id "W7K_12775"; transcript_id "KOE98795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 44718 44720 . + 0 gene_id "W7K_12775"; transcript_id "KOE98795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 44749 45813 . + . gene_id "W7K_12780"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 44749 45813 . + . gene_id "W7K_12780"; transcript_id "KOE98796"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 44749 45813 . + . gene_id "W7K_12780"; transcript_id "KOE98796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98796-1"; +contig24 ena CDS 44749 45810 . + 0 gene_id "W7K_12780"; transcript_id "KOE98796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98796"; +contig24 ena start_codon 44749 44751 . + 0 gene_id "W7K_12780"; transcript_id "KOE98796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 45811 45813 . + 0 gene_id "W7K_12780"; transcript_id "KOE98796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 45817 46701 . + . gene_id "W7K_12785"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 45817 46701 . + . gene_id "W7K_12785"; transcript_id "KOE98797"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 45817 46701 . + . gene_id "W7K_12785"; transcript_id "KOE98797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98797-1"; +contig24 ena CDS 45817 46698 . + 0 gene_id "W7K_12785"; transcript_id "KOE98797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98797"; +contig24 ena start_codon 45817 45819 . + 0 gene_id "W7K_12785"; transcript_id "KOE98797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 46699 46701 . + 0 gene_id "W7K_12785"; transcript_id "KOE98797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 46873 47232 . + . gene_id "W7K_12790"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 46873 47232 . + . gene_id "W7K_12790"; transcript_id "KOE98798"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 46873 47232 . + . gene_id "W7K_12790"; transcript_id "KOE98798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98798-1"; +contig24 ena CDS 46873 47229 . + 0 gene_id "W7K_12790"; transcript_id "KOE98798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98798"; +contig24 ena start_codon 46873 46875 . + 0 gene_id "W7K_12790"; transcript_id "KOE98798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 47230 47232 . + 0 gene_id "W7K_12790"; transcript_id "KOE98798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 47301 47513 . + . gene_id "W7K_12795"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 47301 47513 . + . gene_id "W7K_12795"; transcript_id "KOE98799"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 47301 47513 . + . gene_id "W7K_12795"; transcript_id "KOE98799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98799-1"; +contig24 ena CDS 47301 47510 . + 0 gene_id "W7K_12795"; transcript_id "KOE98799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98799"; +contig24 ena start_codon 47301 47303 . + 0 gene_id "W7K_12795"; transcript_id "KOE98799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 47511 47513 . + 0 gene_id "W7K_12795"; transcript_id "KOE98799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 47518 48306 . + . gene_id "W7K_12800"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 47518 48306 . + . gene_id "W7K_12800"; transcript_id "KOE98800"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 47518 48306 . + . gene_id "W7K_12800"; transcript_id "KOE98800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98800-1"; +contig24 ena CDS 47518 48303 . + 0 gene_id "W7K_12800"; transcript_id "KOE98800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98800"; +contig24 ena start_codon 47518 47520 . + 0 gene_id "W7K_12800"; transcript_id "KOE98800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 48304 48306 . + 0 gene_id "W7K_12800"; transcript_id "KOE98800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 48303 48971 . - . gene_id "W7K_12805"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 48303 48971 . - . gene_id "W7K_12805"; transcript_id "KOE98801"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 48303 48971 . - . gene_id "W7K_12805"; transcript_id "KOE98801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98801-1"; +contig24 ena CDS 48306 48971 . - 0 gene_id "W7K_12805"; transcript_id "KOE98801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98801"; +contig24 ena start_codon 48969 48971 . - 0 gene_id "W7K_12805"; transcript_id "KOE98801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 48303 48305 . - 0 gene_id "W7K_12805"; transcript_id "KOE98801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 49147 49767 . - . gene_id "W7K_12810"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 49147 49767 . - . gene_id "W7K_12810"; transcript_id "KOE98802"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 49147 49767 . - . gene_id "W7K_12810"; transcript_id "KOE98802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98802-1"; +contig24 ena CDS 49150 49767 . - 0 gene_id "W7K_12810"; transcript_id "KOE98802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98802"; +contig24 ena start_codon 49765 49767 . - 0 gene_id "W7K_12810"; transcript_id "KOE98802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 49147 49149 . - 0 gene_id "W7K_12810"; transcript_id "KOE98802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 49872 50765 . + . gene_id "W7K_12815"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 49872 50765 . + . gene_id "W7K_12815"; transcript_id "KOE98803"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 49872 50765 . + . gene_id "W7K_12815"; transcript_id "KOE98803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98803-1"; +contig24 ena CDS 49872 50762 . + 0 gene_id "W7K_12815"; transcript_id "KOE98803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98803"; +contig24 ena start_codon 49872 49874 . + 0 gene_id "W7K_12815"; transcript_id "KOE98803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 50763 50765 . + 0 gene_id "W7K_12815"; transcript_id "KOE98803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 50844 52256 . + . gene_id "W7K_12820"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 50844 52256 . + . gene_id "W7K_12820"; transcript_id "KOE98804"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 50844 52256 . + . gene_id "W7K_12820"; transcript_id "KOE98804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98804-1"; +contig24 ena CDS 50844 52253 . + 0 gene_id "W7K_12820"; transcript_id "KOE98804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98804"; +contig24 ena start_codon 50844 50846 . + 0 gene_id "W7K_12820"; transcript_id "KOE98804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 52254 52256 . + 0 gene_id "W7K_12820"; transcript_id "KOE98804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 52249 53262 . + . gene_id "W7K_12825"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 52249 53262 . + . gene_id "W7K_12825"; transcript_id "KOE98805"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 52249 53262 . + . gene_id "W7K_12825"; transcript_id "KOE98805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98805-1"; +contig24 ena CDS 52249 53259 . + 0 gene_id "W7K_12825"; transcript_id "KOE98805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98805"; +contig24 ena start_codon 52249 52251 . + 0 gene_id "W7K_12825"; transcript_id "KOE98805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 53260 53262 . + 0 gene_id "W7K_12825"; transcript_id "KOE98805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 53247 54434 . + . gene_id "W7K_12830"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 53247 54434 . + . gene_id "W7K_12830"; transcript_id "KOE98806"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 53247 54434 . + . gene_id "W7K_12830"; transcript_id "KOE98806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98806-1"; +contig24 ena CDS 53247 54431 . + 0 gene_id "W7K_12830"; transcript_id "KOE98806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98806"; +contig24 ena start_codon 53247 53249 . + 0 gene_id "W7K_12830"; transcript_id "KOE98806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 54432 54434 . + 0 gene_id "W7K_12830"; transcript_id "KOE98806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 54431 55558 . + . gene_id "W7K_12835"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 54431 55558 . + . gene_id "W7K_12835"; transcript_id "KOE98807"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 54431 55558 . + . gene_id "W7K_12835"; transcript_id "KOE98807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98807-1"; +contig24 ena CDS 54431 55555 . + 0 gene_id "W7K_12835"; transcript_id "KOE98807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98807"; +contig24 ena start_codon 54431 54433 . + 0 gene_id "W7K_12835"; transcript_id "KOE98807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 55556 55558 . + 0 gene_id "W7K_12835"; transcript_id "KOE98807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 55603 56979 . - . gene_id "W7K_12840"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 55603 56979 . - . gene_id "W7K_12840"; transcript_id "KOE98808"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 55603 56979 . - . gene_id "W7K_12840"; transcript_id "KOE98808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98808-1"; +contig24 ena CDS 55606 56979 . - 0 gene_id "W7K_12840"; transcript_id "KOE98808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98808"; +contig24 ena start_codon 56977 56979 . - 0 gene_id "W7K_12840"; transcript_id "KOE98808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 55603 55605 . - 0 gene_id "W7K_12840"; transcript_id "KOE98808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 57125 57493 . - . gene_id "W7K_12845"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 57125 57493 . - . gene_id "W7K_12845"; transcript_id "KOE98809"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 57125 57493 . - . gene_id "W7K_12845"; transcript_id "KOE98809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98809-1"; +contig24 ena CDS 57128 57493 . - 0 gene_id "W7K_12845"; transcript_id "KOE98809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98809"; +contig24 ena start_codon 57491 57493 . - 0 gene_id "W7K_12845"; transcript_id "KOE98809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 57125 57127 . - 0 gene_id "W7K_12845"; transcript_id "KOE98809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 57660 59882 . - . gene_id "W7K_12850"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 57660 59882 . - . gene_id "W7K_12850"; transcript_id "KOE98810"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 57660 59882 . - . gene_id "W7K_12850"; transcript_id "KOE98810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98810-1"; +contig24 ena CDS 57663 59882 . - 0 gene_id "W7K_12850"; transcript_id "KOE98810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98810"; +contig24 ena start_codon 59880 59882 . - 0 gene_id "W7K_12850"; transcript_id "KOE98810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 57660 57662 . - 0 gene_id "W7K_12850"; transcript_id "KOE98810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 60165 60557 . + . gene_id "W7K_12855"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 60165 60557 . + . gene_id "W7K_12855"; transcript_id "KOE98811"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 60165 60557 . + . gene_id "W7K_12855"; transcript_id "KOE98811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98811-1"; +contig24 ena CDS 60165 60554 . + 0 gene_id "W7K_12855"; transcript_id "KOE98811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98811"; +contig24 ena start_codon 60165 60167 . + 0 gene_id "W7K_12855"; transcript_id "KOE98811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 60555 60557 . + 0 gene_id "W7K_12855"; transcript_id "KOE98811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 60588 61580 . - . gene_id "W7K_12860"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 60588 61580 . - . gene_id "W7K_12860"; transcript_id "KOE98812"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 60588 61580 . - . gene_id "W7K_12860"; transcript_id "KOE98812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98812-1"; +contig24 ena CDS 60591 61580 . - 0 gene_id "W7K_12860"; transcript_id "KOE98812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98812"; +contig24 ena start_codon 61578 61580 . - 0 gene_id "W7K_12860"; transcript_id "KOE98812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 60588 60590 . - 0 gene_id "W7K_12860"; transcript_id "KOE98812"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 61580 62857 . - . gene_id "W7K_12865"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 61580 62857 . - . gene_id "W7K_12865"; transcript_id "KOE98813"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 61580 62857 . - . gene_id "W7K_12865"; transcript_id "KOE98813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98813-1"; +contig24 ena CDS 61583 62857 . - 0 gene_id "W7K_12865"; transcript_id "KOE98813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98813"; +contig24 ena start_codon 62855 62857 . - 0 gene_id "W7K_12865"; transcript_id "KOE98813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 61580 61582 . - 0 gene_id "W7K_12865"; transcript_id "KOE98813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 63208 65763 . + . gene_id "W7K_12870"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 63208 65763 . + . gene_id "W7K_12870"; transcript_id "KOE98814"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 63208 65763 . + . gene_id "W7K_12870"; transcript_id "KOE98814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98814-1"; +contig24 ena CDS 63208 65760 . + 0 gene_id "W7K_12870"; transcript_id "KOE98814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98814"; +contig24 ena start_codon 63208 63210 . + 0 gene_id "W7K_12870"; transcript_id "KOE98814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 65761 65763 . + 0 gene_id "W7K_12870"; transcript_id "KOE98814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 65950 67593 . + . gene_id "W7K_12875"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 65950 67593 . + . gene_id "W7K_12875"; transcript_id "KOE98815"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 65950 67593 . + . gene_id "W7K_12875"; transcript_id "KOE98815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98815-1"; +contig24 ena CDS 65950 67590 . + 0 gene_id "W7K_12875"; transcript_id "KOE98815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98815"; +contig24 ena start_codon 65950 65952 . + 0 gene_id "W7K_12875"; transcript_id "KOE98815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 67591 67593 . + 0 gene_id "W7K_12875"; transcript_id "KOE98815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 67702 68304 . + . gene_id "W7K_12880"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 67702 68304 . + . gene_id "W7K_12880"; transcript_id "KOE98816"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 67702 68304 . + . gene_id "W7K_12880"; transcript_id "KOE98816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98816-1"; +contig24 ena CDS 67702 68301 . + 0 gene_id "W7K_12880"; transcript_id "KOE98816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98816"; +contig24 ena start_codon 67702 67704 . + 0 gene_id "W7K_12880"; transcript_id "KOE98816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 68302 68304 . + 0 gene_id "W7K_12880"; transcript_id "KOE98816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 68377 69564 . - . gene_id "W7K_12885"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 68377 69564 . - . gene_id "W7K_12885"; transcript_id "KOE98817"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 68377 69564 . - . gene_id "W7K_12885"; transcript_id "KOE98817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98817-1"; +contig24 ena CDS 68380 69564 . - 0 gene_id "W7K_12885"; transcript_id "KOE98817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98817"; +contig24 ena start_codon 69562 69564 . - 0 gene_id "W7K_12885"; transcript_id "KOE98817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 68377 68379 . - 0 gene_id "W7K_12885"; transcript_id "KOE98817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 69678 70085 . - . gene_id "W7K_12890"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 69678 70085 . - . gene_id "W7K_12890"; transcript_id "KOE98818"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 69678 70085 . - . gene_id "W7K_12890"; transcript_id "KOE98818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98818-1"; +contig24 ena CDS 69681 70085 . - 0 gene_id "W7K_12890"; transcript_id "KOE98818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98818"; +contig24 ena start_codon 70083 70085 . - 0 gene_id "W7K_12890"; transcript_id "KOE98818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 69678 69680 . - 0 gene_id "W7K_12890"; transcript_id "KOE98818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 70095 70334 . - . gene_id "W7K_12895"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 70095 70334 . - . gene_id "W7K_12895"; transcript_id "KOE98819"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 70095 70334 . - . gene_id "W7K_12895"; transcript_id "KOE98819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98819-1"; +contig24 ena CDS 70098 70334 . - 0 gene_id "W7K_12895"; transcript_id "KOE98819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98819"; +contig24 ena start_codon 70332 70334 . - 0 gene_id "W7K_12895"; transcript_id "KOE98819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 70095 70097 . - 0 gene_id "W7K_12895"; transcript_id "KOE98819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 70397 71869 . + . gene_id "W7K_12900"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 70397 71869 . + . gene_id "W7K_12900"; transcript_id "KOE98820"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 70397 71869 . + . gene_id "W7K_12900"; transcript_id "KOE98820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98820-1"; +contig24 ena CDS 70397 71866 . + 0 gene_id "W7K_12900"; transcript_id "KOE98820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98820"; +contig24 ena start_codon 70397 70399 . + 0 gene_id "W7K_12900"; transcript_id "KOE98820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 71867 71869 . + 0 gene_id "W7K_12900"; transcript_id "KOE98820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 71944 72351 . - . gene_id "W7K_12905"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 71944 72351 . - . gene_id "W7K_12905"; transcript_id "KOE98821"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 71944 72351 . - . gene_id "W7K_12905"; transcript_id "KOE98821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98821-1"; +contig24 ena CDS 71947 72351 . - 0 gene_id "W7K_12905"; transcript_id "KOE98821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98821"; +contig24 ena start_codon 72349 72351 . - 0 gene_id "W7K_12905"; transcript_id "KOE98821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 71944 71946 . - 0 gene_id "W7K_12905"; transcript_id "KOE98821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 72390 72824 . - . gene_id "W7K_12910"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 72390 72824 . - . gene_id "W7K_12910"; transcript_id "KOE98822"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 72390 72824 . - . gene_id "W7K_12910"; transcript_id "KOE98822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98822-1"; +contig24 ena CDS 72393 72824 . - 0 gene_id "W7K_12910"; transcript_id "KOE98822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98822"; +contig24 ena start_codon 72822 72824 . - 0 gene_id "W7K_12910"; transcript_id "KOE98822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 72390 72392 . - 0 gene_id "W7K_12910"; transcript_id "KOE98822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 72904 73284 . - . gene_id "W7K_12915"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 72904 73284 . - . gene_id "W7K_12915"; transcript_id "KOE98823"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 72904 73284 . - . gene_id "W7K_12915"; transcript_id "KOE98823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98823-1"; +contig24 ena CDS 72907 73284 . - 0 gene_id "W7K_12915"; transcript_id "KOE98823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98823"; +contig24 ena start_codon 73282 73284 . - 0 gene_id "W7K_12915"; transcript_id "KOE98823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 72904 72906 . - 0 gene_id "W7K_12915"; transcript_id "KOE98823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 73367 73768 . - . gene_id "W7K_12920"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 73367 73768 . - . gene_id "W7K_12920"; transcript_id "KOE98824"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 73367 73768 . - . gene_id "W7K_12920"; transcript_id "KOE98824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98824-1"; +contig24 ena CDS 73370 73768 . - 0 gene_id "W7K_12920"; transcript_id "KOE98824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98824"; +contig24 ena start_codon 73766 73768 . - 0 gene_id "W7K_12920"; transcript_id "KOE98824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 73367 73369 . - 0 gene_id "W7K_12920"; transcript_id "KOE98824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 73923 74681 . - . gene_id "W7K_12925"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 73923 74681 . - . gene_id "W7K_12925"; transcript_id "KOE98825"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 73923 74681 . - . gene_id "W7K_12925"; transcript_id "KOE98825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98825-1"; +contig24 ena CDS 73926 74681 . - 0 gene_id "W7K_12925"; transcript_id "KOE98825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98825"; +contig24 ena start_codon 74679 74681 . - 0 gene_id "W7K_12925"; transcript_id "KOE98825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 73923 73925 . - 0 gene_id "W7K_12925"; transcript_id "KOE98825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 74690 75202 . - . gene_id "W7K_12930"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 74690 75202 . - . gene_id "W7K_12930"; transcript_id "KOE98826"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 74690 75202 . - . gene_id "W7K_12930"; transcript_id "KOE98826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98826-1"; +contig24 ena CDS 74693 75202 . - 0 gene_id "W7K_12930"; transcript_id "KOE98826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98826"; +contig24 ena start_codon 75200 75202 . - 0 gene_id "W7K_12930"; transcript_id "KOE98826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 74690 74692 . - 0 gene_id "W7K_12930"; transcript_id "KOE98826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 75247 75507 . - . gene_id "W7K_12935"; gene_name "rpsP"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 75247 75507 . - . gene_id "W7K_12935"; transcript_id "KOE98827"; gene_name "rpsP"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsP-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 75247 75507 . - . gene_id "W7K_12935"; transcript_id "KOE98827"; exon_number "1"; gene_name "rpsP"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsP-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98827-1"; +contig24 ena CDS 75250 75507 . - 0 gene_id "W7K_12935"; transcript_id "KOE98827"; exon_number "1"; gene_name "rpsP"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsP-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98827"; +contig24 ena start_codon 75505 75507 . - 0 gene_id "W7K_12935"; transcript_id "KOE98827"; exon_number "1"; gene_name "rpsP"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsP-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 75247 75249 . - 0 gene_id "W7K_12935"; transcript_id "KOE98827"; exon_number "1"; gene_name "rpsP"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsP-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 75638 76420 . - . gene_id "W7K_12940"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 75638 76420 . - . gene_id "W7K_12940"; transcript_id "KOE98828"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 75638 76420 . - . gene_id "W7K_12940"; transcript_id "KOE98828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98828-1"; +contig24 ena CDS 75641 76420 . - 0 gene_id "W7K_12940"; transcript_id "KOE98828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98828"; +contig24 ena start_codon 76418 76420 . - 0 gene_id "W7K_12940"; transcript_id "KOE98828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 75638 75640 . - 0 gene_id "W7K_12940"; transcript_id "KOE98828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 76417 77493 . - . gene_id "W7K_12945"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 76417 77493 . - . gene_id "W7K_12945"; transcript_id "KOE98829"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 76417 77493 . - . gene_id "W7K_12945"; transcript_id "KOE98829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98829-1"; +contig24 ena CDS 76420 77493 . - 0 gene_id "W7K_12945"; transcript_id "KOE98829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98829"; +contig24 ena start_codon 77491 77493 . - 0 gene_id "W7K_12945"; transcript_id "KOE98829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 76417 76419 . - 0 gene_id "W7K_12945"; transcript_id "KOE98829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 77583 78959 . - . gene_id "W7K_12950"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 77583 78959 . - . gene_id "W7K_12950"; transcript_id "KOE98830"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 77583 78959 . - . gene_id "W7K_12950"; transcript_id "KOE98830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98830-1"; +contig24 ena CDS 77586 78959 . - 0 gene_id "W7K_12950"; transcript_id "KOE98830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98830"; +contig24 ena start_codon 78957 78959 . - 0 gene_id "W7K_12950"; transcript_id "KOE98830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 77583 77585 . - 0 gene_id "W7K_12950"; transcript_id "KOE98830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 79082 79876 . + . gene_id "W7K_12955"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 79082 79876 . + . gene_id "W7K_12955"; transcript_id "KOE98831"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 79082 79876 . + . gene_id "W7K_12955"; transcript_id "KOE98831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98831-1"; +contig24 ena CDS 79082 79873 . + 0 gene_id "W7K_12955"; transcript_id "KOE98831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98831"; +contig24 ena start_codon 79082 79084 . + 0 gene_id "W7K_12955"; transcript_id "KOE98831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 79874 79876 . + 0 gene_id "W7K_12955"; transcript_id "KOE98831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 79918 80376 . - . gene_id "W7K_12960"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 79918 80376 . - . gene_id "W7K_12960"; transcript_id "KOE98832"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 79918 80376 . - . gene_id "W7K_12960"; transcript_id "KOE98832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98832-1"; +contig24 ena CDS 79921 80376 . - 0 gene_id "W7K_12960"; transcript_id "KOE98832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98832"; +contig24 ena start_codon 80374 80376 . - 0 gene_id "W7K_12960"; transcript_id "KOE98832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 79918 79920 . - 0 gene_id "W7K_12960"; transcript_id "KOE98832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 80471 82777 . - . gene_id "W7K_12965"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 80471 82777 . - . gene_id "W7K_12965"; transcript_id "KOE98833"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 80471 82777 . - . gene_id "W7K_12965"; transcript_id "KOE98833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98833-1"; +contig24 ena CDS 80474 82777 . - 0 gene_id "W7K_12965"; transcript_id "KOE98833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98833"; +contig24 ena start_codon 82775 82777 . - 0 gene_id "W7K_12965"; transcript_id "KOE98833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 80471 80473 . - 0 gene_id "W7K_12965"; transcript_id "KOE98833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 82826 84682 . - . gene_id "W7K_12970"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 82826 84682 . - . gene_id "W7K_12970"; transcript_id "KOE98834"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 82826 84682 . - . gene_id "W7K_12970"; transcript_id "KOE98834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98834-1"; +contig24 ena CDS 82829 84682 . - 0 gene_id "W7K_12970"; transcript_id "KOE98834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98834"; +contig24 ena start_codon 84680 84682 . - 0 gene_id "W7K_12970"; transcript_id "KOE98834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 82826 82828 . - 0 gene_id "W7K_12970"; transcript_id "KOE98834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 84922 86298 . - . gene_id "W7K_12975"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 84922 86298 . - . gene_id "W7K_12975"; transcript_id "KOE98835"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 84922 86298 . - . gene_id "W7K_12975"; transcript_id "KOE98835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98835-1"; +contig24 ena CDS 84925 86298 . - 0 gene_id "W7K_12975"; transcript_id "KOE98835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98835"; +contig24 ena start_codon 86296 86298 . - 0 gene_id "W7K_12975"; transcript_id "KOE98835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 84922 84924 . - 0 gene_id "W7K_12975"; transcript_id "KOE98835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 86448 88505 . + . gene_id "W7K_12980"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 86448 88505 . + . gene_id "W7K_12980"; transcript_id "KOE98836"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 86448 88505 . + . gene_id "W7K_12980"; transcript_id "KOE98836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98836-1"; +contig24 ena CDS 86448 88502 . + 0 gene_id "W7K_12980"; transcript_id "KOE98836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98836"; +contig24 ena start_codon 86448 86450 . + 0 gene_id "W7K_12980"; transcript_id "KOE98836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 88503 88505 . + 0 gene_id "W7K_12980"; transcript_id "KOE98836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 88642 88983 . - . gene_id "W7K_12985"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 88642 88983 . - . gene_id "W7K_12985"; transcript_id "KOE98837"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 88642 88983 . - . gene_id "W7K_12985"; transcript_id "KOE98837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98837-1"; +contig24 ena CDS 88645 88983 . - 0 gene_id "W7K_12985"; transcript_id "KOE98837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98837"; +contig24 ena start_codon 88981 88983 . - 0 gene_id "W7K_12985"; transcript_id "KOE98837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 88642 88644 . - 0 gene_id "W7K_12985"; transcript_id "KOE98837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 88983 89621 . - . gene_id "W7K_12990"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 88983 89621 . - . gene_id "W7K_12990"; transcript_id "KOE98838"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 88983 89621 . - . gene_id "W7K_12990"; transcript_id "KOE98838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98838-1"; +contig24 ena CDS 88986 89621 . - 0 gene_id "W7K_12990"; transcript_id "KOE98838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98838"; +contig24 ena start_codon 89619 89621 . - 0 gene_id "W7K_12990"; transcript_id "KOE98838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 88983 88985 . - 0 gene_id "W7K_12990"; transcript_id "KOE98838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 89618 91615 . - . gene_id "W7K_12995"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 89618 91615 . - . gene_id "W7K_12995"; transcript_id "KOE98839"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 89618 91615 . - . gene_id "W7K_12995"; transcript_id "KOE98839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98839-1"; +contig24 ena CDS 89621 91615 . - 0 gene_id "W7K_12995"; transcript_id "KOE98839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98839"; +contig24 ena start_codon 91613 91615 . - 0 gene_id "W7K_12995"; transcript_id "KOE98839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 89618 89620 . - 0 gene_id "W7K_12995"; transcript_id "KOE98839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 91618 92658 . - . gene_id "W7K_13000"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 91618 92658 . - . gene_id "W7K_13000"; transcript_id "KOE98840"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 91618 92658 . - . gene_id "W7K_13000"; transcript_id "KOE98840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98840-1"; +contig24 ena CDS 91621 92658 . - 0 gene_id "W7K_13000"; transcript_id "KOE98840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98840"; +contig24 ena start_codon 92656 92658 . - 0 gene_id "W7K_13000"; transcript_id "KOE98840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 91618 91620 . - 0 gene_id "W7K_13000"; transcript_id "KOE98840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 93010 93645 . + . gene_id "W7K_13005"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 93010 93645 . + . gene_id "W7K_13005"; transcript_id "KOE98841"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 93010 93645 . + . gene_id "W7K_13005"; transcript_id "KOE98841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98841-1"; +contig24 ena CDS 93010 93642 . + 0 gene_id "W7K_13005"; transcript_id "KOE98841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98841"; +contig24 ena start_codon 93010 93012 . + 0 gene_id "W7K_13005"; transcript_id "KOE98841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 93643 93645 . + 0 gene_id "W7K_13005"; transcript_id "KOE98841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 93703 93778 . - . gene_id "W7K_13010"; gene_source "ena"; gene_biotype "tRNA"; +contig24 ena transcript 93703 93778 . - . gene_id "W7K_13010"; transcript_id "EBT00051077621"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_13010"; transcript_source "ena"; transcript_biotype "tRNA"; +contig24 ena exon 93703 93778 . - . gene_id "W7K_13010"; transcript_id "EBT00051077621"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_13010"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_13010-1"; +contig24 ena gene 94140 95144 . - . gene_id "W7K_13015"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 94140 95144 . - . gene_id "W7K_13015"; transcript_id "KOE98842"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 94140 95144 . - . gene_id "W7K_13015"; transcript_id "KOE98842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98842-1"; +contig24 ena CDS 94143 95144 . - 0 gene_id "W7K_13015"; transcript_id "KOE98842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98842"; +contig24 ena start_codon 95142 95144 . - 0 gene_id "W7K_13015"; transcript_id "KOE98842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 94140 94142 . - 0 gene_id "W7K_13015"; transcript_id "KOE98842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 95242 98112 . - . gene_id "W7K_13020"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 95242 98112 . - . gene_id "W7K_13020"; transcript_id "KOE98843"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 95242 98112 . - . gene_id "W7K_13020"; transcript_id "KOE98843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98843-1"; +contig24 ena CDS 95245 98112 . - 0 gene_id "W7K_13020"; transcript_id "KOE98843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98843"; +contig24 ena start_codon 98110 98112 . - 0 gene_id "W7K_13020"; transcript_id "KOE98843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 95242 95244 . - 0 gene_id "W7K_13020"; transcript_id "KOE98843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 98463 98876 . + . gene_id "W7K_13025"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 98463 98876 . + . gene_id "W7K_13025"; transcript_id "KOE98844"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 98463 98876 . + . gene_id "W7K_13025"; transcript_id "KOE98844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98844-1"; +contig24 ena CDS 98463 98873 . + 0 gene_id "W7K_13025"; transcript_id "KOE98844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98844"; +contig24 ena start_codon 98463 98465 . + 0 gene_id "W7K_13025"; transcript_id "KOE98844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 98874 98876 . + 0 gene_id "W7K_13025"; transcript_id "KOE98844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 98873 99841 . + . gene_id "W7K_13030"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 98873 99841 . + . gene_id "W7K_13030"; transcript_id "KOE98845"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 98873 99841 . + . gene_id "W7K_13030"; transcript_id "KOE98845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98845-1"; +contig24 ena CDS 98873 99838 . + 0 gene_id "W7K_13030"; transcript_id "KOE98845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98845"; +contig24 ena start_codon 98873 98875 . + 0 gene_id "W7K_13030"; transcript_id "KOE98845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 99839 99841 . + 0 gene_id "W7K_13030"; transcript_id "KOE98845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 99853 102651 . + . gene_id "W7K_13035"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 99853 102651 . + . gene_id "W7K_13035"; transcript_id "KOE98846"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 99853 102651 . + . gene_id "W7K_13035"; transcript_id "KOE98846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98846-1"; +contig24 ena CDS 99853 102648 . + 0 gene_id "W7K_13035"; transcript_id "KOE98846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98846"; +contig24 ena start_codon 99853 99855 . + 0 gene_id "W7K_13035"; transcript_id "KOE98846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 102649 102651 . + 0 gene_id "W7K_13035"; transcript_id "KOE98846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 102698 103654 . + . gene_id "W7K_13040"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 102698 103654 . + . gene_id "W7K_13040"; transcript_id "KOE98847"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 102698 103654 . + . gene_id "W7K_13040"; transcript_id "KOE98847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98847-1"; +contig24 ena CDS 102698 103651 . + 0 gene_id "W7K_13040"; transcript_id "KOE98847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98847"; +contig24 ena start_codon 102698 102700 . + 0 gene_id "W7K_13040"; transcript_id "KOE98847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 103652 103654 . + 0 gene_id "W7K_13040"; transcript_id "KOE98847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 103651 104370 . + . gene_id "W7K_13045"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 103651 104370 . + . gene_id "W7K_13045"; transcript_id "KOE98848"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 103651 104370 . + . gene_id "W7K_13045"; transcript_id "KOE98848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98848-1"; +contig24 ena CDS 103651 104367 . + 0 gene_id "W7K_13045"; transcript_id "KOE98848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98848"; +contig24 ena start_codon 103651 103653 . + 0 gene_id "W7K_13045"; transcript_id "KOE98848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 104368 104370 . + 0 gene_id "W7K_13045"; transcript_id "KOE98848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 104453 105118 . - . gene_id "W7K_13050"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 104453 105118 . - . gene_id "W7K_13050"; transcript_id "KOE98849"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 104453 105118 . - . gene_id "W7K_13050"; transcript_id "KOE98849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98849-1"; +contig24 ena CDS 104456 105118 . - 0 gene_id "W7K_13050"; transcript_id "KOE98849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98849"; +contig24 ena start_codon 105116 105118 . - 0 gene_id "W7K_13050"; transcript_id "KOE98849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 104453 104455 . - 0 gene_id "W7K_13050"; transcript_id "KOE98849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 105115 106998 . - . gene_id "W7K_13055"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 105115 106998 . - . gene_id "W7K_13055"; transcript_id "KOE98850"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 105115 106998 . - . gene_id "W7K_13055"; transcript_id "KOE98850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98850-1"; +contig24 ena CDS 105118 106998 . - 0 gene_id "W7K_13055"; transcript_id "KOE98850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98850"; +contig24 ena start_codon 106996 106998 . - 0 gene_id "W7K_13055"; transcript_id "KOE98850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 105115 105117 . - 0 gene_id "W7K_13055"; transcript_id "KOE98850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 107181 108131 . - . gene_id "W7K_13060"; gene_name "ispH"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 107181 108131 . - . gene_id "W7K_13060"; transcript_id "KOE98851"; gene_name "ispH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 107181 108131 . - . gene_id "W7K_13060"; transcript_id "KOE98851"; exon_number "1"; gene_name "ispH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98851-1"; +contig24 ena CDS 107184 108131 . - 0 gene_id "W7K_13060"; transcript_id "KOE98851"; exon_number "1"; gene_name "ispH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98851"; +contig24 ena start_codon 108129 108131 . - 0 gene_id "W7K_13060"; transcript_id "KOE98851"; exon_number "1"; gene_name "ispH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 107181 107183 . - 0 gene_id "W7K_13060"; transcript_id "KOE98851"; exon_number "1"; gene_name "ispH"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispH-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 108159 108683 . - . gene_id "W7K_13065"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 108159 108683 . - . gene_id "W7K_13065"; transcript_id "KOE98852"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 108159 108683 . - . gene_id "W7K_13065"; transcript_id "KOE98852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98852-1"; +contig24 ena CDS 108162 108683 . - 0 gene_id "W7K_13065"; transcript_id "KOE98852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98852"; +contig24 ena start_codon 108681 108683 . - 0 gene_id "W7K_13065"; transcript_id "KOE98852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 108159 108161 . - 0 gene_id "W7K_13065"; transcript_id "KOE98852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 108683 111514 . - . gene_id "W7K_13070"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 108683 111514 . - . gene_id "W7K_13070"; transcript_id "KOE98853"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 108683 111514 . - . gene_id "W7K_13070"; transcript_id "KOE98853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98853-1"; +contig24 ena CDS 108686 111514 . - 0 gene_id "W7K_13070"; transcript_id "KOE98853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98853"; +contig24 ena start_codon 111512 111514 . - 0 gene_id "W7K_13070"; transcript_id "KOE98853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 108683 108685 . - 0 gene_id "W7K_13070"; transcript_id "KOE98853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 111511 112458 . - . gene_id "W7K_13075"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 111511 112458 . - . gene_id "W7K_13075"; transcript_id "KOE98854"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 111511 112458 . - . gene_id "W7K_13075"; transcript_id "KOE98854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98854-1"; +contig24 ena CDS 111514 112458 . - 0 gene_id "W7K_13075"; transcript_id "KOE98854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98854"; +contig24 ena start_codon 112456 112458 . - 0 gene_id "W7K_13075"; transcript_id "KOE98854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 111511 111513 . - 0 gene_id "W7K_13075"; transcript_id "KOE98854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 112534 114138 . - . gene_id "W7K_13080"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 112534 114138 . - . gene_id "W7K_13080"; transcript_id "KOE98855"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 112534 114138 . - . gene_id "W7K_13080"; transcript_id "KOE98855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98855-1"; +contig24 ena CDS 112537 114138 . - 0 gene_id "W7K_13080"; transcript_id "KOE98855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98855"; +contig24 ena start_codon 114136 114138 . - 0 gene_id "W7K_13080"; transcript_id "KOE98855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 112534 112536 . - 0 gene_id "W7K_13080"; transcript_id "KOE98855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 114256 114525 . + . gene_id "W7K_13085"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 114256 114525 . + . gene_id "W7K_13085"; transcript_id "KOE98856"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 114256 114525 . + . gene_id "W7K_13085"; transcript_id "KOE98856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98856-1"; +contig24 ena CDS 114256 114522 . + 0 gene_id "W7K_13085"; transcript_id "KOE98856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98856"; +contig24 ena start_codon 114256 114258 . + 0 gene_id "W7K_13085"; transcript_id "KOE98856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 114523 114525 . + 0 gene_id "W7K_13085"; transcript_id "KOE98856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 114742 115794 . - . gene_id "W7K_13090"; gene_name "obgE"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 114742 115794 . - . gene_id "W7K_13090"; transcript_id "KOE98857"; gene_name "obgE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "obgE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 114742 115794 . - . gene_id "W7K_13090"; transcript_id "KOE98857"; exon_number "1"; gene_name "obgE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "obgE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98857-1"; +contig24 ena CDS 114745 115794 . - 0 gene_id "W7K_13090"; transcript_id "KOE98857"; exon_number "1"; gene_name "obgE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "obgE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98857"; +contig24 ena start_codon 115792 115794 . - 0 gene_id "W7K_13090"; transcript_id "KOE98857"; exon_number "1"; gene_name "obgE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "obgE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 114742 114744 . - 0 gene_id "W7K_13090"; transcript_id "KOE98857"; exon_number "1"; gene_name "obgE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "obgE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 115972 116235 . - . gene_id "W7K_13095"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 115972 116235 . - . gene_id "W7K_13095"; transcript_id "KOE98858"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 115972 116235 . - . gene_id "W7K_13095"; transcript_id "KOE98858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98858-1"; +contig24 ena CDS 115975 116235 . - 0 gene_id "W7K_13095"; transcript_id "KOE98858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98858"; +contig24 ena start_codon 116233 116235 . - 0 gene_id "W7K_13095"; transcript_id "KOE98858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 115972 115974 . - 0 gene_id "W7K_13095"; transcript_id "KOE98858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 116254 116562 . - . gene_id "W7K_13100"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 116254 116562 . - . gene_id "W7K_13100"; transcript_id "KOE98859"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 116254 116562 . - . gene_id "W7K_13100"; transcript_id "KOE98859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98859-1"; +contig24 ena CDS 116257 116562 . - 0 gene_id "W7K_13100"; transcript_id "KOE98859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98859"; +contig24 ena start_codon 116560 116562 . - 0 gene_id "W7K_13100"; transcript_id "KOE98859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 116254 116256 . - 0 gene_id "W7K_13100"; transcript_id "KOE98859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 116900 119890 . + . gene_id "W7K_13105"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 116900 119890 . + . gene_id "W7K_13105"; transcript_id "KOE98860"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 116900 119890 . + . gene_id "W7K_13105"; transcript_id "KOE98860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98860-1"; +contig24 ena CDS 116900 119887 . + 0 gene_id "W7K_13105"; transcript_id "KOE98860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98860"; +contig24 ena start_codon 116900 116902 . + 0 gene_id "W7K_13105"; transcript_id "KOE98860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 119888 119890 . + 0 gene_id "W7K_13105"; transcript_id "KOE98860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 119890 120297 . + . gene_id "W7K_13110"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 119890 120297 . + . gene_id "W7K_13110"; transcript_id "KOE98861"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 119890 120297 . + . gene_id "W7K_13110"; transcript_id "KOE98861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98861-1"; +contig24 ena CDS 119890 120294 . + 0 gene_id "W7K_13110"; transcript_id "KOE98861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98861"; +contig24 ena start_codon 119890 119892 . + 0 gene_id "W7K_13110"; transcript_id "KOE98861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 120295 120297 . + 0 gene_id "W7K_13110"; transcript_id "KOE98861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 120383 121108 . + . gene_id "W7K_13115"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 120383 121108 . + . gene_id "W7K_13115"; transcript_id "KOE98862"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 120383 121108 . + . gene_id "W7K_13115"; transcript_id "KOE98862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98862-1"; +contig24 ena CDS 120383 121105 . + 0 gene_id "W7K_13115"; transcript_id "KOE98862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98862"; +contig24 ena start_codon 120383 120385 . + 0 gene_id "W7K_13115"; transcript_id "KOE98862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 121106 121108 . + 0 gene_id "W7K_13115"; transcript_id "KOE98862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 121181 121627 . - . gene_id "W7K_13120"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 121181 121627 . - . gene_id "W7K_13120"; transcript_id "KOE98863"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 121181 121627 . - . gene_id "W7K_13120"; transcript_id "KOE98863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98863-1"; +contig24 ena CDS 121184 121627 . - 0 gene_id "W7K_13120"; transcript_id "KOE98863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98863"; +contig24 ena start_codon 121625 121627 . - 0 gene_id "W7K_13120"; transcript_id "KOE98863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 121181 121183 . - 0 gene_id "W7K_13120"; transcript_id "KOE98863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 121662 122438 . + . gene_id "W7K_13125"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 121662 122438 . + . gene_id "W7K_13125"; transcript_id "KOE98864"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 121662 122438 . + . gene_id "W7K_13125"; transcript_id "KOE98864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98864-1"; +contig24 ena CDS 121662 122435 . + 0 gene_id "W7K_13125"; transcript_id "KOE98864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98864"; +contig24 ena start_codon 121662 121664 . + 0 gene_id "W7K_13125"; transcript_id "KOE98864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 122436 122438 . + 0 gene_id "W7K_13125"; transcript_id "KOE98864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 122538 123446 . + . gene_id "W7K_13130"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 122538 123446 . + . gene_id "W7K_13130"; transcript_id "KOE98865"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 122538 123446 . + . gene_id "W7K_13130"; transcript_id "KOE98865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98865-1"; +contig24 ena CDS 122538 123443 . + 0 gene_id "W7K_13130"; transcript_id "KOE98865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98865"; +contig24 ena start_codon 122538 122540 . + 0 gene_id "W7K_13130"; transcript_id "KOE98865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 123444 123446 . + 0 gene_id "W7K_13130"; transcript_id "KOE98865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 123451 123990 . + . gene_id "W7K_13135"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 123451 123990 . + . gene_id "W7K_13135"; transcript_id "KOE98866"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 123451 123990 . + . gene_id "W7K_13135"; transcript_id "KOE98866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98866-1"; +contig24 ena CDS 123451 123987 . + 0 gene_id "W7K_13135"; transcript_id "KOE98866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98866"; +contig24 ena start_codon 123451 123453 . + 0 gene_id "W7K_13135"; transcript_id "KOE98866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 123988 123990 . + 0 gene_id "W7K_13135"; transcript_id "KOE98866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 124215 125432 . + . gene_id "W7K_13140"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 124215 125432 . + . gene_id "W7K_13140"; transcript_id "KOE98867"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 124215 125432 . + . gene_id "W7K_13140"; transcript_id "KOE98867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98867-1"; +contig24 ena CDS 124215 125429 . + 0 gene_id "W7K_13140"; transcript_id "KOE98867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98867"; +contig24 ena start_codon 124215 124217 . + 0 gene_id "W7K_13140"; transcript_id "KOE98867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 125430 125432 . + 0 gene_id "W7K_13140"; transcript_id "KOE98867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 125484 126044 . - . gene_id "W7K_13145"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 125484 126044 . - . gene_id "W7K_13145"; transcript_id "KOE98868"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 125484 126044 . - . gene_id "W7K_13145"; transcript_id "KOE98868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98868-1"; +contig24 ena CDS 125487 126044 . - 0 gene_id "W7K_13145"; transcript_id "KOE98868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98868"; +contig24 ena start_codon 126042 126044 . - 0 gene_id "W7K_13145"; transcript_id "KOE98868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 125484 125486 . - 0 gene_id "W7K_13145"; transcript_id "KOE98868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 126201 126956 . + . gene_id "W7K_13150"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 126201 126956 . + . gene_id "W7K_13150"; transcript_id "KOE98869"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 126201 126956 . + . gene_id "W7K_13150"; transcript_id "KOE98869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98869-1"; +contig24 ena CDS 126201 126953 . + 0 gene_id "W7K_13150"; transcript_id "KOE98869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98869"; +contig24 ena start_codon 126201 126203 . + 0 gene_id "W7K_13150"; transcript_id "KOE98869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 126954 126956 . + 0 gene_id "W7K_13150"; transcript_id "KOE98869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena gene 126995 128209 . + . gene_id "W7K_13155"; gene_source "ena"; gene_biotype "protein_coding"; +contig24 ena transcript 126995 128209 . + . gene_id "W7K_13155"; transcript_id "KOE98870"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena exon 126995 128209 . + . gene_id "W7K_13155"; transcript_id "KOE98870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98870-1"; +contig24 ena CDS 126995 128206 . + 0 gene_id "W7K_13155"; transcript_id "KOE98870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98870"; +contig24 ena start_codon 126995 126997 . + 0 gene_id "W7K_13155"; transcript_id "KOE98870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig24 ena stop_codon 128207 128209 . + 0 gene_id "W7K_13155"; transcript_id "KOE98870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 176 1543 . - . gene_id "W7K_20685"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 176 1543 . - . gene_id "W7K_20685"; transcript_id "KOE97178"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 176 1543 . - . gene_id "W7K_20685"; transcript_id "KOE97178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97178-1"; +contig02 ena CDS 179 1543 . - 0 gene_id "W7K_20685"; transcript_id "KOE97178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97178"; +contig02 ena start_codon 1541 1543 . - 0 gene_id "W7K_20685"; transcript_id "KOE97178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 176 178 . - 0 gene_id "W7K_20685"; transcript_id "KOE97178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 1836 3260 . + . gene_id "W7K_20690"; gene_name "aspA"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 1836 3260 . + . gene_id "W7K_20690"; transcript_id "KOE97179"; gene_name "aspA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aspA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 1836 3260 . + . gene_id "W7K_20690"; transcript_id "KOE97179"; exon_number "1"; gene_name "aspA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aspA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97179-1"; +contig02 ena CDS 1836 3257 . + 0 gene_id "W7K_20690"; transcript_id "KOE97179"; exon_number "1"; gene_name "aspA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aspA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97179"; +contig02 ena start_codon 1836 1838 . + 0 gene_id "W7K_20690"; transcript_id "KOE97179"; exon_number "1"; gene_name "aspA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aspA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 3258 3260 . + 0 gene_id "W7K_20690"; transcript_id "KOE97179"; exon_number "1"; gene_name "aspA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aspA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 3340 3765 . - . gene_id "W7K_20695"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 3340 3765 . - . gene_id "W7K_20695"; transcript_id "KOE97180"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 3340 3765 . - . gene_id "W7K_20695"; transcript_id "KOE97180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97180-1"; +contig02 ena CDS 3343 3765 . - 0 gene_id "W7K_20695"; transcript_id "KOE97180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97180"; +contig02 ena start_codon 3763 3765 . - 0 gene_id "W7K_20695"; transcript_id "KOE97180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 3340 3342 . - 0 gene_id "W7K_20695"; transcript_id "KOE97180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 3872 4477 . - . gene_id "W7K_20700"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 3872 4477 . - . gene_id "W7K_20700"; transcript_id "KOE97181"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 3872 4477 . - . gene_id "W7K_20700"; transcript_id "KOE97181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97181-1"; +contig02 ena CDS 3875 4477 . - 0 gene_id "W7K_20700"; transcript_id "KOE97181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97181"; +contig02 ena start_codon 4475 4477 . - 0 gene_id "W7K_20700"; transcript_id "KOE97181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 3872 3874 . - 0 gene_id "W7K_20700"; transcript_id "KOE97181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 4508 5395 . - . gene_id "W7K_20705"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 4508 5395 . - . gene_id "W7K_20705"; transcript_id "KOE97182"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 4508 5395 . - . gene_id "W7K_20705"; transcript_id "KOE97182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97182-1"; +contig02 ena CDS 4511 5395 . - 0 gene_id "W7K_20705"; transcript_id "KOE97182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97182"; +contig02 ena start_codon 5393 5395 . - 0 gene_id "W7K_20705"; transcript_id "KOE97182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 4508 4510 . - 0 gene_id "W7K_20705"; transcript_id "KOE97182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 5421 6449 . - . gene_id "W7K_20710"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 5421 6449 . - . gene_id "W7K_20710"; transcript_id "KOE97183"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 5421 6449 . - . gene_id "W7K_20710"; transcript_id "KOE97183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97183-1"; +contig02 ena CDS 5424 6449 . - 0 gene_id "W7K_20710"; transcript_id "KOE97183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97183"; +contig02 ena start_codon 6447 6449 . - 0 gene_id "W7K_20710"; transcript_id "KOE97183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 5421 5423 . - 0 gene_id "W7K_20710"; transcript_id "KOE97183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 6446 7321 . - . gene_id "W7K_20715"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 6446 7321 . - . gene_id "W7K_20715"; transcript_id "KOE97184"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 6446 7321 . - . gene_id "W7K_20715"; transcript_id "KOE97184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97184-1"; +contig02 ena CDS 6449 7321 . - 0 gene_id "W7K_20715"; transcript_id "KOE97184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97184"; +contig02 ena start_codon 7319 7321 . - 0 gene_id "W7K_20715"; transcript_id "KOE97184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 6446 6448 . - 0 gene_id "W7K_20715"; transcript_id "KOE97184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 7321 7680 . - . gene_id "W7K_20720"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 7321 7680 . - . gene_id "W7K_20720"; transcript_id "KOE97185"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 7321 7680 . - . gene_id "W7K_20720"; transcript_id "KOE97185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97185-1"; +contig02 ena CDS 7324 7680 . - 0 gene_id "W7K_20720"; transcript_id "KOE97185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97185"; +contig02 ena start_codon 7678 7680 . - 0 gene_id "W7K_20720"; transcript_id "KOE97185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 7321 7323 . - 0 gene_id "W7K_20720"; transcript_id "KOE97185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 8293 8880 . + . gene_id "W7K_20725"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 8293 8880 . + . gene_id "W7K_20725"; transcript_id "KOE97186"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 8293 8880 . + . gene_id "W7K_20725"; transcript_id "KOE97186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97186-1"; +contig02 ena CDS 8293 8877 . + 0 gene_id "W7K_20725"; transcript_id "KOE97186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97186"; +contig02 ena start_codon 8293 8295 . + 0 gene_id "W7K_20725"; transcript_id "KOE97186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 8878 8880 . + 0 gene_id "W7K_20725"; transcript_id "KOE97186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 8977 9954 . + . gene_id "W7K_20730"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 8977 9954 . + . gene_id "W7K_20730"; transcript_id "KOE97187"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 8977 9954 . + . gene_id "W7K_20730"; transcript_id "KOE97187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97187-1"; +contig02 ena CDS 8977 9951 . + 0 gene_id "W7K_20730"; transcript_id "KOE97187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97187"; +contig02 ena start_codon 8977 8979 . + 0 gene_id "W7K_20730"; transcript_id "KOE97187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 9952 9954 . + 0 gene_id "W7K_20730"; transcript_id "KOE97187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 9978 11327 . + . gene_id "W7K_20735"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 9978 11327 . + . gene_id "W7K_20735"; transcript_id "KOE97188"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 9978 11327 . + . gene_id "W7K_20735"; transcript_id "KOE97188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97188-1"; +contig02 ena CDS 9978 11324 . + 0 gene_id "W7K_20735"; transcript_id "KOE97188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97188"; +contig02 ena start_codon 9978 9980 . + 0 gene_id "W7K_20735"; transcript_id "KOE97188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 11325 11327 . + 0 gene_id "W7K_20735"; transcript_id "KOE97188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 11320 11559 . + . gene_id "W7K_20740"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 11320 11559 . + . gene_id "W7K_20740"; transcript_id "KOE97189"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 11320 11559 . + . gene_id "W7K_20740"; transcript_id "KOE97189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97189-1"; +contig02 ena CDS 11320 11556 . + 0 gene_id "W7K_20740"; transcript_id "KOE97189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97189"; +contig02 ena start_codon 11320 11322 . + 0 gene_id "W7K_20740"; transcript_id "KOE97189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 11557 11559 . + 0 gene_id "W7K_20740"; transcript_id "KOE97189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 11570 12256 . + . gene_id "W7K_20745"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 11570 12256 . + . gene_id "W7K_20745"; transcript_id "KOE97190"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 11570 12256 . + . gene_id "W7K_20745"; transcript_id "KOE97190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97190-1"; +contig02 ena CDS 11570 12253 . + 0 gene_id "W7K_20745"; transcript_id "KOE97190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97190"; +contig02 ena start_codon 11570 11572 . + 0 gene_id "W7K_20745"; transcript_id "KOE97190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 12254 12256 . + 0 gene_id "W7K_20745"; transcript_id "KOE97190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 12305 14377 . + . gene_id "W7K_20750"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 12305 14377 . + . gene_id "W7K_20750"; transcript_id "KOE97191"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 12305 14377 . + . gene_id "W7K_20750"; transcript_id "KOE97191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97191-1"; +contig02 ena CDS 12305 14374 . + 0 gene_id "W7K_20750"; transcript_id "KOE97191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97191"; +contig02 ena start_codon 12305 12307 . + 0 gene_id "W7K_20750"; transcript_id "KOE97191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 14375 14377 . + 0 gene_id "W7K_20750"; transcript_id "KOE97191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 14392 15576 . - . gene_id "W7K_20755"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 14392 15576 . - . gene_id "W7K_20755"; transcript_id "KOE97192"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 14392 15576 . - . gene_id "W7K_20755"; transcript_id "KOE97192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97192-1"; +contig02 ena CDS 14395 15576 . - 0 gene_id "W7K_20755"; transcript_id "KOE97192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97192"; +contig02 ena start_codon 15574 15576 . - 0 gene_id "W7K_20755"; transcript_id "KOE97192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 14392 14394 . - 0 gene_id "W7K_20755"; transcript_id "KOE97192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 15664 18348 . - . gene_id "W7K_20760"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 15664 18348 . - . gene_id "W7K_20760"; transcript_id "KOE97193"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 15664 18348 . - . gene_id "W7K_20760"; transcript_id "KOE97193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97193-1"; +contig02 ena CDS 15667 18348 . - 0 gene_id "W7K_20760"; transcript_id "KOE97193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97193"; +contig02 ena start_codon 18346 18348 . - 0 gene_id "W7K_20760"; transcript_id "KOE97193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 15664 15666 . - 0 gene_id "W7K_20760"; transcript_id "KOE97193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 18345 19439 . - . gene_id "W7K_20765"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 18345 19439 . - . gene_id "W7K_20765"; transcript_id "KOE97194"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 18345 19439 . - . gene_id "W7K_20765"; transcript_id "KOE97194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97194-1"; +contig02 ena CDS 18348 19439 . - 0 gene_id "W7K_20765"; transcript_id "KOE97194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97194"; +contig02 ena start_codon 19437 19439 . - 0 gene_id "W7K_20765"; transcript_id "KOE97194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 18345 18347 . - 0 gene_id "W7K_20765"; transcript_id "KOE97194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 19452 20381 . - . gene_id "W7K_20770"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 19452 20381 . - . gene_id "W7K_20770"; transcript_id "KOE97195"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 19452 20381 . - . gene_id "W7K_20770"; transcript_id "KOE97195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97195-1"; +contig02 ena CDS 19455 20381 . - 0 gene_id "W7K_20770"; transcript_id "KOE97195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97195"; +contig02 ena start_codon 20379 20381 . - 0 gene_id "W7K_20770"; transcript_id "KOE97195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 19452 19454 . - 0 gene_id "W7K_20770"; transcript_id "KOE97195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 20535 21683 . + . gene_id "W7K_20775"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 20535 21683 . + . gene_id "W7K_20775"; transcript_id "KOE97196"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 20535 21683 . + . gene_id "W7K_20775"; transcript_id "KOE97196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97196-1"; +contig02 ena CDS 20535 21680 . + 0 gene_id "W7K_20775"; transcript_id "KOE97196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97196"; +contig02 ena start_codon 20535 20537 . + 0 gene_id "W7K_20775"; transcript_id "KOE97196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 21681 21683 . + 0 gene_id "W7K_20775"; transcript_id "KOE97196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 21817 22104 . + . gene_id "W7K_20780"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 21817 22104 . + . gene_id "W7K_20780"; transcript_id "KOE97197"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 21817 22104 . + . gene_id "W7K_20780"; transcript_id "KOE97197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97197-1"; +contig02 ena CDS 21817 22101 . + 0 gene_id "W7K_20780"; transcript_id "KOE97197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97197"; +contig02 ena start_codon 21817 21819 . + 0 gene_id "W7K_20780"; transcript_id "KOE97197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 22102 22104 . + 0 gene_id "W7K_20780"; transcript_id "KOE97197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 22288 25461 . - . gene_id "W7K_20785"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 22288 25461 . - . gene_id "W7K_20785"; transcript_id "KOE97198"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 22288 25461 . - . gene_id "W7K_20785"; transcript_id "KOE97198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97198-1"; +contig02 ena CDS 22291 25461 . - 0 gene_id "W7K_20785"; transcript_id "KOE97198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97198"; +contig02 ena start_codon 25459 25461 . - 0 gene_id "W7K_20785"; transcript_id "KOE97198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 22288 22290 . - 0 gene_id "W7K_20785"; transcript_id "KOE97198"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 25477 26745 . - . gene_id "W7K_20790"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 25477 26745 . - . gene_id "W7K_20790"; transcript_id "KOE97199"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 25477 26745 . - . gene_id "W7K_20790"; transcript_id "KOE97199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97199-1"; +contig02 ena CDS 25480 26745 . - 0 gene_id "W7K_20790"; transcript_id "KOE97199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97199"; +contig02 ena start_codon 26743 26745 . - 0 gene_id "W7K_20790"; transcript_id "KOE97199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 25477 25479 . - 0 gene_id "W7K_20790"; transcript_id "KOE97199"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 26745 27401 . - . gene_id "W7K_20795"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 26745 27401 . - . gene_id "W7K_20795"; transcript_id "KOE97200"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 26745 27401 . - . gene_id "W7K_20795"; transcript_id "KOE97200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97200-1"; +contig02 ena CDS 26748 27401 . - 0 gene_id "W7K_20795"; transcript_id "KOE97200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97200"; +contig02 ena start_codon 27399 27401 . - 0 gene_id "W7K_20795"; transcript_id "KOE97200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 26745 26747 . - 0 gene_id "W7K_20795"; transcript_id "KOE97200"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 27652 32628 . + . gene_id "W7K_20800"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 27652 32628 . + . gene_id "W7K_20800"; transcript_id "KOE97201"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 27652 32628 . + . gene_id "W7K_20800"; transcript_id "KOE97201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97201-1"; +contig02 ena CDS 27652 32625 . + 0 gene_id "W7K_20800"; transcript_id "KOE97201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97201"; +contig02 ena start_codon 27652 27654 . + 0 gene_id "W7K_20800"; transcript_id "KOE97201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 32626 32628 . + 0 gene_id "W7K_20800"; transcript_id "KOE97201"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 32911 33684 . + . gene_id "W7K_20805"; gene_name "ppnK"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 32911 33684 . + . gene_id "W7K_20805"; transcript_id "KOE97202"; gene_name "ppnK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ppnK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 32911 33684 . + . gene_id "W7K_20805"; transcript_id "KOE97202"; exon_number "1"; gene_name "ppnK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ppnK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97202-1"; +contig02 ena CDS 32911 33681 . + 0 gene_id "W7K_20805"; transcript_id "KOE97202"; exon_number "1"; gene_name "ppnK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ppnK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97202"; +contig02 ena start_codon 32911 32913 . + 0 gene_id "W7K_20805"; transcript_id "KOE97202"; exon_number "1"; gene_name "ppnK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ppnK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 33682 33684 . + 0 gene_id "W7K_20805"; transcript_id "KOE97202"; exon_number "1"; gene_name "ppnK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ppnK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 33733 34677 . + . gene_id "W7K_20810"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 33733 34677 . + . gene_id "W7K_20810"; transcript_id "KOE97203"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 33733 34677 . + . gene_id "W7K_20810"; transcript_id "KOE97203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97203-1"; +contig02 ena CDS 33733 34674 . + 0 gene_id "W7K_20810"; transcript_id "KOE97203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97203"; +contig02 ena start_codon 33733 33735 . + 0 gene_id "W7K_20810"; transcript_id "KOE97203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 34675 34677 . + 0 gene_id "W7K_20810"; transcript_id "KOE97203"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 34813 35364 . - . gene_id "W7K_20815"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 34813 35364 . - . gene_id "W7K_20815"; transcript_id "KOE97204"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 34813 35364 . - . gene_id "W7K_20815"; transcript_id "KOE97204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97204-1"; +contig02 ena CDS 34816 35364 . - 0 gene_id "W7K_20815"; transcript_id "KOE97204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97204"; +contig02 ena start_codon 35362 35364 . - 0 gene_id "W7K_20815"; transcript_id "KOE97204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 34813 34815 . - 0 gene_id "W7K_20815"; transcript_id "KOE97204"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 35407 36387 . - . gene_id "W7K_20820"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 35407 36387 . - . gene_id "W7K_20820"; transcript_id "KOE97205"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 35407 36387 . - . gene_id "W7K_20820"; transcript_id "KOE97205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97205-1"; +contig02 ena CDS 35410 36387 . - 0 gene_id "W7K_20820"; transcript_id "KOE97205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97205"; +contig02 ena start_codon 36385 36387 . - 0 gene_id "W7K_20820"; transcript_id "KOE97205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 35407 35409 . - 0 gene_id "W7K_20820"; transcript_id "KOE97205"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 36387 37073 . - . gene_id "W7K_20825"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 36387 37073 . - . gene_id "W7K_20825"; transcript_id "KOE97206"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 36387 37073 . - . gene_id "W7K_20825"; transcript_id "KOE97206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97206-1"; +contig02 ena CDS 36390 37073 . - 0 gene_id "W7K_20825"; transcript_id "KOE97206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97206"; +contig02 ena start_codon 37071 37073 . - 0 gene_id "W7K_20825"; transcript_id "KOE97206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 36387 36389 . - 0 gene_id "W7K_20825"; transcript_id "KOE97206"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 37070 38509 . - . gene_id "W7K_20830"; gene_name "sbcB"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 37070 38509 . - . gene_id "W7K_20830"; transcript_id "KOE97207"; gene_name "sbcB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sbcB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 37070 38509 . - . gene_id "W7K_20830"; transcript_id "KOE97207"; exon_number "1"; gene_name "sbcB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sbcB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97207-1"; +contig02 ena CDS 37073 38509 . - 0 gene_id "W7K_20830"; transcript_id "KOE97207"; exon_number "1"; gene_name "sbcB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sbcB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97207"; +contig02 ena start_codon 38507 38509 . - 0 gene_id "W7K_20830"; transcript_id "KOE97207"; exon_number "1"; gene_name "sbcB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sbcB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 37070 37072 . - 0 gene_id "W7K_20830"; transcript_id "KOE97207"; exon_number "1"; gene_name "sbcB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sbcB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 38509 39876 . - . gene_id "W7K_20835"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 38509 39876 . - . gene_id "W7K_20835"; transcript_id "KOE97208"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 38509 39876 . - . gene_id "W7K_20835"; transcript_id "KOE97208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97208-1"; +contig02 ena CDS 38512 39876 . - 0 gene_id "W7K_20835"; transcript_id "KOE97208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97208"; +contig02 ena start_codon 39874 39876 . - 0 gene_id "W7K_20835"; transcript_id "KOE97208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 38509 38511 . - 0 gene_id "W7K_20835"; transcript_id "KOE97208"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 39909 41183 . - . gene_id "W7K_20840"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 39909 41183 . - . gene_id "W7K_20840"; transcript_id "KOE97209"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 39909 41183 . - . gene_id "W7K_20840"; transcript_id "KOE97209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97209-1"; +contig02 ena CDS 39912 41183 . - 0 gene_id "W7K_20840"; transcript_id "KOE97209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97209"; +contig02 ena start_codon 41181 41183 . - 0 gene_id "W7K_20840"; transcript_id "KOE97209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 39909 39911 . - 0 gene_id "W7K_20840"; transcript_id "KOE97209"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 41322 41843 . - . gene_id "W7K_20845"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 41322 41843 . - . gene_id "W7K_20845"; transcript_id "KOE97286"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 41322 41843 . - . gene_id "W7K_20845"; transcript_id "KOE97286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97286-1"; +contig02 ena CDS 41325 41843 . - 0 gene_id "W7K_20845"; transcript_id "KOE97286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97286"; +contig02 ena start_codon 41841 41843 . - 0 gene_id "W7K_20845"; transcript_id "KOE97286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 41322 41324 . - 0 gene_id "W7K_20845"; transcript_id "KOE97286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 41863 42525 . - . gene_id "W7K_20850"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 41863 42525 . - . gene_id "W7K_20850"; transcript_id "KOE97210"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 41863 42525 . - . gene_id "W7K_20850"; transcript_id "KOE97210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97210-1"; +contig02 ena CDS 41866 42525 . - 0 gene_id "W7K_20850"; transcript_id "KOE97210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97210"; +contig02 ena start_codon 42523 42525 . - 0 gene_id "W7K_20850"; transcript_id "KOE97210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 41863 41865 . - 0 gene_id "W7K_20850"; transcript_id "KOE97210"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 42598 43236 . - . gene_id "W7K_20855"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 42598 43236 . - . gene_id "W7K_20855"; transcript_id "KOE97211"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 42598 43236 . - . gene_id "W7K_20855"; transcript_id "KOE97211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97211-1"; +contig02 ena CDS 42601 43236 . - 0 gene_id "W7K_20855"; transcript_id "KOE97211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97211"; +contig02 ena start_codon 43234 43236 . - 0 gene_id "W7K_20855"; transcript_id "KOE97211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 42598 42600 . - 0 gene_id "W7K_20855"; transcript_id "KOE97211"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 43244 43558 . - . gene_id "W7K_20860"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 43244 43558 . - . gene_id "W7K_20860"; transcript_id "KOE97212"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 43244 43558 . - . gene_id "W7K_20860"; transcript_id "KOE97212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97212-1"; +contig02 ena CDS 43247 43558 . - 0 gene_id "W7K_20860"; transcript_id "KOE97212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97212"; +contig02 ena start_codon 43556 43558 . - 0 gene_id "W7K_20860"; transcript_id "KOE97212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 43244 43246 . - 0 gene_id "W7K_20860"; transcript_id "KOE97212"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 43566 43865 . - . gene_id "W7K_20865"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 43566 43865 . - . gene_id "W7K_20865"; transcript_id "KOE97213"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 43566 43865 . - . gene_id "W7K_20865"; transcript_id "KOE97213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97213-1"; +contig02 ena CDS 43569 43865 . - 0 gene_id "W7K_20865"; transcript_id "KOE97213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97213"; +contig02 ena start_codon 43863 43865 . - 0 gene_id "W7K_20865"; transcript_id "KOE97213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 43566 43568 . - 0 gene_id "W7K_20865"; transcript_id "KOE97213"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 43895 45289 . - . gene_id "W7K_20870"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 43895 45289 . - . gene_id "W7K_20870"; transcript_id "KOE97214"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 43895 45289 . - . gene_id "W7K_20870"; transcript_id "KOE97214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97214-1"; +contig02 ena CDS 43898 45289 . - 0 gene_id "W7K_20870"; transcript_id "KOE97214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97214"; +contig02 ena start_codon 45287 45289 . - 0 gene_id "W7K_20870"; transcript_id "KOE97214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 43895 43897 . - 0 gene_id "W7K_20870"; transcript_id "KOE97214"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 45418 45756 . + . gene_id "W7K_20875"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 45418 45756 . + . gene_id "W7K_20875"; transcript_id "KOE97215"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 45418 45756 . + . gene_id "W7K_20875"; transcript_id "KOE97215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97215-1"; +contig02 ena CDS 45418 45753 . + 0 gene_id "W7K_20875"; transcript_id "KOE97215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97215"; +contig02 ena start_codon 45418 45420 . + 0 gene_id "W7K_20875"; transcript_id "KOE97215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 45754 45756 . + 0 gene_id "W7K_20875"; transcript_id "KOE97215"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 45851 46390 . + . gene_id "W7K_20880"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 45851 46390 . + . gene_id "W7K_20880"; transcript_id "KOE97216"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 45851 46390 . + . gene_id "W7K_20880"; transcript_id "KOE97216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97216-1"; +contig02 ena CDS 45851 46387 . + 0 gene_id "W7K_20880"; transcript_id "KOE97216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97216"; +contig02 ena start_codon 45851 45853 . + 0 gene_id "W7K_20880"; transcript_id "KOE97216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 46388 46390 . + 0 gene_id "W7K_20880"; transcript_id "KOE97216"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 46619 47056 . + . gene_id "W7K_20885"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 46619 47056 . + . gene_id "W7K_20885"; transcript_id "KOE97217"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 46619 47056 . + . gene_id "W7K_20885"; transcript_id "KOE97217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97217-1"; +contig02 ena CDS 46619 47053 . + 0 gene_id "W7K_20885"; transcript_id "KOE97217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97217"; +contig02 ena start_codon 46619 46621 . + 0 gene_id "W7K_20885"; transcript_id "KOE97217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 47054 47056 . + 0 gene_id "W7K_20885"; transcript_id "KOE97217"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 47068 47298 . + . gene_id "W7K_20890"; gene_name "rpsR"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 47068 47298 . + . gene_id "W7K_20890"; transcript_id "KOE97218"; gene_name "rpsR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 47068 47298 . + . gene_id "W7K_20890"; transcript_id "KOE97218"; exon_number "1"; gene_name "rpsR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97218-1"; +contig02 ena CDS 47068 47295 . + 0 gene_id "W7K_20890"; transcript_id "KOE97218"; exon_number "1"; gene_name "rpsR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97218"; +contig02 ena start_codon 47068 47070 . + 0 gene_id "W7K_20890"; transcript_id "KOE97218"; exon_number "1"; gene_name "rpsR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 47296 47298 . + 0 gene_id "W7K_20890"; transcript_id "KOE97218"; exon_number "1"; gene_name "rpsR"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsR-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 47404 47853 . + . gene_id "W7K_20895"; gene_name "rplI"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 47404 47853 . + . gene_id "W7K_20895"; transcript_id "KOE97219"; gene_name "rplI"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplI-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 47404 47853 . + . gene_id "W7K_20895"; transcript_id "KOE97219"; exon_number "1"; gene_name "rplI"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplI-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97219-1"; +contig02 ena CDS 47404 47850 . + 0 gene_id "W7K_20895"; transcript_id "KOE97219"; exon_number "1"; gene_name "rplI"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplI-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97219"; +contig02 ena start_codon 47404 47406 . + 0 gene_id "W7K_20895"; transcript_id "KOE97219"; exon_number "1"; gene_name "rplI"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplI-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 47851 47853 . + 0 gene_id "W7K_20895"; transcript_id "KOE97219"; exon_number "1"; gene_name "rplI"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplI-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 48862 52365 . + . gene_id "W7K_20900"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 48862 52365 . + . gene_id "W7K_20900"; transcript_id "KOE97220"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 48862 52365 . + . gene_id "W7K_20900"; transcript_id "KOE97220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97220-1"; +contig02 ena CDS 48862 52362 . + 0 gene_id "W7K_20900"; transcript_id "KOE97220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97220"; +contig02 ena start_codon 48862 48864 . + 0 gene_id "W7K_20900"; transcript_id "KOE97220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 52363 52365 . + 0 gene_id "W7K_20900"; transcript_id "KOE97220"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 52412 53149 . + . gene_id "W7K_20905"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 52412 53149 . + . gene_id "W7K_20905"; transcript_id "KOE97221"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 52412 53149 . + . gene_id "W7K_20905"; transcript_id "KOE97221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97221-1"; +contig02 ena CDS 52412 53146 . + 0 gene_id "W7K_20905"; transcript_id "KOE97221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97221"; +contig02 ena start_codon 52412 52414 . + 0 gene_id "W7K_20905"; transcript_id "KOE97221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 53147 53149 . + 0 gene_id "W7K_20905"; transcript_id "KOE97221"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 53268 54392 . - . gene_id "W7K_20910"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 53268 54392 . - . gene_id "W7K_20910"; transcript_id "KOE97222"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 53268 54392 . - . gene_id "W7K_20910"; transcript_id "KOE97222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97222-1"; +contig02 ena CDS 53271 54392 . - 0 gene_id "W7K_20910"; transcript_id "KOE97222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97222"; +contig02 ena start_codon 54390 54392 . - 0 gene_id "W7K_20910"; transcript_id "KOE97222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 53268 53270 . - 0 gene_id "W7K_20910"; transcript_id "KOE97222"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 54683 57148 . + . gene_id "W7K_20915"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 54683 57148 . + . gene_id "W7K_20915"; transcript_id "KOE97223"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 54683 57148 . + . gene_id "W7K_20915"; transcript_id "KOE97223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97223-1"; +contig02 ena CDS 54683 57145 . + 0 gene_id "W7K_20915"; transcript_id "KOE97223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97223"; +contig02 ena start_codon 54683 54685 . + 0 gene_id "W7K_20915"; transcript_id "KOE97223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 57146 57148 . + 0 gene_id "W7K_20915"; transcript_id "KOE97223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 57198 57683 . + . gene_id "W7K_20920"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 57198 57683 . + . gene_id "W7K_20920"; transcript_id "KOE97224"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 57198 57683 . + . gene_id "W7K_20920"; transcript_id "KOE97224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97224-1"; +contig02 ena CDS 57198 57680 . + 0 gene_id "W7K_20920"; transcript_id "KOE97224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97224"; +contig02 ena start_codon 57198 57200 . + 0 gene_id "W7K_20920"; transcript_id "KOE97224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 57681 57683 . + 0 gene_id "W7K_20920"; transcript_id "KOE97224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 57701 58636 . + . gene_id "W7K_20925"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 57701 58636 . + . gene_id "W7K_20925"; transcript_id "KOE97287"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 57701 58636 . + . gene_id "W7K_20925"; transcript_id "KOE97287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97287-1"; +contig02 ena CDS 57701 58633 . + 0 gene_id "W7K_20925"; transcript_id "KOE97287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97287"; +contig02 ena start_codon 57701 57703 . + 0 gene_id "W7K_20925"; transcript_id "KOE97287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 58634 58636 . + 0 gene_id "W7K_20925"; transcript_id "KOE97287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 58779 59507 . + . gene_id "W7K_20930"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 58779 59507 . + . gene_id "W7K_20930"; transcript_id "KOE97225"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 58779 59507 . + . gene_id "W7K_20930"; transcript_id "KOE97225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97225-1"; +contig02 ena CDS 58779 59504 . + 0 gene_id "W7K_20930"; transcript_id "KOE97225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97225"; +contig02 ena start_codon 58779 58781 . + 0 gene_id "W7K_20930"; transcript_id "KOE97225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 59505 59507 . + 0 gene_id "W7K_20930"; transcript_id "KOE97225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 59555 60619 . + . gene_id "W7K_20935"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 59555 60619 . + . gene_id "W7K_20935"; transcript_id "KOE97226"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 59555 60619 . + . gene_id "W7K_20935"; transcript_id "KOE97226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97226-1"; +contig02 ena CDS 59555 60616 . + 0 gene_id "W7K_20935"; transcript_id "KOE97226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97226"; +contig02 ena start_codon 59555 59557 . + 0 gene_id "W7K_20935"; transcript_id "KOE97226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 60617 60619 . + 0 gene_id "W7K_20935"; transcript_id "KOE97226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 60881 63595 . + . gene_id "W7K_20940"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 60881 63595 . + . gene_id "W7K_20940"; transcript_id "KOE97227"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 60881 63595 . + . gene_id "W7K_20940"; transcript_id "KOE97227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97227-1"; +contig02 ena CDS 60881 63592 . + 0 gene_id "W7K_20940"; transcript_id "KOE97227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97227"; +contig02 ena start_codon 60881 60883 . + 0 gene_id "W7K_20940"; transcript_id "KOE97227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 63593 63595 . + 0 gene_id "W7K_20940"; transcript_id "KOE97227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 63727 66255 . + . gene_id "W7K_20945"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 63727 66255 . + . gene_id "W7K_20945"; transcript_id "KOE97228"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 63727 66255 . + . gene_id "W7K_20945"; transcript_id "KOE97228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97228-1"; +contig02 ena CDS 63727 66252 . + 0 gene_id "W7K_20945"; transcript_id "KOE97228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97228"; +contig02 ena start_codon 63727 63729 . + 0 gene_id "W7K_20945"; transcript_id "KOE97228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 66253 66255 . + 0 gene_id "W7K_20945"; transcript_id "KOE97228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 67105 67506 . - . gene_id "W7K_20950"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 67105 67506 . - . gene_id "W7K_20950"; transcript_id "KOE97229"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 67105 67506 . - . gene_id "W7K_20950"; transcript_id "KOE97229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97229-1"; +contig02 ena CDS 67108 67506 . - 0 gene_id "W7K_20950"; transcript_id "KOE97229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97229"; +contig02 ena start_codon 67504 67506 . - 0 gene_id "W7K_20950"; transcript_id "KOE97229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 67105 67107 . - 0 gene_id "W7K_20950"; transcript_id "KOE97229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 67484 68260 . - . gene_id "W7K_20955"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 67484 68260 . - . gene_id "W7K_20955"; transcript_id "KOE97230"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 67484 68260 . - . gene_id "W7K_20955"; transcript_id "KOE97230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97230-1"; +contig02 ena CDS 67487 68260 . - 0 gene_id "W7K_20955"; transcript_id "KOE97230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97230"; +contig02 ena start_codon 68258 68260 . - 0 gene_id "W7K_20955"; transcript_id "KOE97230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 67484 67486 . - 0 gene_id "W7K_20955"; transcript_id "KOE97230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 68499 68828 . + . gene_id "W7K_20960"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 68499 68828 . + . gene_id "W7K_20960"; transcript_id "KOE97231"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 68499 68828 . + . gene_id "W7K_20960"; transcript_id "KOE97231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97231-1"; +contig02 ena CDS 68499 68825 . + 0 gene_id "W7K_20960"; transcript_id "KOE97231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97231"; +contig02 ena start_codon 68499 68501 . + 0 gene_id "W7K_20960"; transcript_id "KOE97231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 68826 68828 . + 0 gene_id "W7K_20960"; transcript_id "KOE97231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 68996 71458 . + . gene_id "W7K_20965"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 68996 71458 . + . gene_id "W7K_20965"; transcript_id "KOE97232"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 68996 71458 . + . gene_id "W7K_20965"; transcript_id "KOE97232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97232-1"; +contig02 ena CDS 68996 71455 . + 0 gene_id "W7K_20965"; transcript_id "KOE97232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97232"; +contig02 ena start_codon 68996 68998 . + 0 gene_id "W7K_20965"; transcript_id "KOE97232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 71456 71458 . + 0 gene_id "W7K_20965"; transcript_id "KOE97232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 71679 71999 . + . gene_id "W7K_20970"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 71679 71999 . + . gene_id "W7K_20970"; transcript_id "KOE97233"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 71679 71999 . + . gene_id "W7K_20970"; transcript_id "KOE97233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97233-1"; +contig02 ena CDS 71679 71996 . + 0 gene_id "W7K_20970"; transcript_id "KOE97233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97233"; +contig02 ena start_codon 71679 71681 . + 0 gene_id "W7K_20970"; transcript_id "KOE97233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 71997 71999 . + 0 gene_id "W7K_20970"; transcript_id "KOE97233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 72010 72993 . - . gene_id "W7K_20975"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 72010 72993 . - . gene_id "W7K_20975"; transcript_id "KOE97234"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 72010 72993 . - . gene_id "W7K_20975"; transcript_id "KOE97234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97234-1"; +contig02 ena CDS 72013 72993 . - 0 gene_id "W7K_20975"; transcript_id "KOE97234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97234"; +contig02 ena start_codon 72991 72993 . - 0 gene_id "W7K_20975"; transcript_id "KOE97234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 72010 72012 . - 0 gene_id "W7K_20975"; transcript_id "KOE97234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 73132 74097 . + . gene_id "W7K_20980"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 73132 74097 . + . gene_id "W7K_20980"; transcript_id "KOE97235"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 73132 74097 . + . gene_id "W7K_20980"; transcript_id "KOE97235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97235-1"; +contig02 ena CDS 73132 74094 . + 0 gene_id "W7K_20980"; transcript_id "KOE97235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97235"; +contig02 ena start_codon 73132 73134 . + 0 gene_id "W7K_20980"; transcript_id "KOE97235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 74095 74097 . + 0 gene_id "W7K_20980"; transcript_id "KOE97235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 74147 74935 . + . gene_id "W7K_20985"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 74147 74935 . + . gene_id "W7K_20985"; transcript_id "KOE97236"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 74147 74935 . + . gene_id "W7K_20985"; transcript_id "KOE97236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97236-1"; +contig02 ena CDS 74147 74932 . + 0 gene_id "W7K_20985"; transcript_id "KOE97236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97236"; +contig02 ena start_codon 74147 74149 . + 0 gene_id "W7K_20985"; transcript_id "KOE97236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 74933 74935 . + 0 gene_id "W7K_20985"; transcript_id "KOE97236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 74910 75794 . - . gene_id "W7K_20990"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 74910 75794 . - . gene_id "W7K_20990"; transcript_id "KOE97237"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 74910 75794 . - . gene_id "W7K_20990"; transcript_id "KOE97237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97237-1"; +contig02 ena CDS 74913 75794 . - 0 gene_id "W7K_20990"; transcript_id "KOE97237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97237"; +contig02 ena start_codon 75792 75794 . - 0 gene_id "W7K_20990"; transcript_id "KOE97237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 74910 74912 . - 0 gene_id "W7K_20990"; transcript_id "KOE97237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 75900 77033 . + . gene_id "W7K_20995"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 75900 77033 . + . gene_id "W7K_20995"; transcript_id "KOE97238"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 75900 77033 . + . gene_id "W7K_20995"; transcript_id "KOE97238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97238-1"; +contig02 ena CDS 75900 77030 . + 0 gene_id "W7K_20995"; transcript_id "KOE97238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97238"; +contig02 ena start_codon 75900 75902 . + 0 gene_id "W7K_20995"; transcript_id "KOE97238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 77031 77033 . + 0 gene_id "W7K_20995"; transcript_id "KOE97238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 77040 77585 . - . gene_id "W7K_21000"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 77040 77585 . - . gene_id "W7K_21000"; transcript_id "KOE97239"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 77040 77585 . - . gene_id "W7K_21000"; transcript_id "KOE97239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97239-1"; +contig02 ena CDS 77043 77585 . - 0 gene_id "W7K_21000"; transcript_id "KOE97239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97239"; +contig02 ena start_codon 77583 77585 . - 0 gene_id "W7K_21000"; transcript_id "KOE97239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 77040 77042 . - 0 gene_id "W7K_21000"; transcript_id "KOE97239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 77655 78230 . + . gene_id "W7K_21005"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 77655 78230 . + . gene_id "W7K_21005"; transcript_id "KOE97240"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 77655 78230 . + . gene_id "W7K_21005"; transcript_id "KOE97240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97240-1"; +contig02 ena CDS 77655 78227 . + 0 gene_id "W7K_21005"; transcript_id "KOE97240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97240"; +contig02 ena start_codon 77655 77657 . + 0 gene_id "W7K_21005"; transcript_id "KOE97240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 78228 78230 . + 0 gene_id "W7K_21005"; transcript_id "KOE97240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 78283 78666 . + . gene_id "W7K_21010"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 78283 78666 . + . gene_id "W7K_21010"; transcript_id "KOE97241"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 78283 78666 . + . gene_id "W7K_21010"; transcript_id "KOE97241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97241-1"; +contig02 ena CDS 78283 78663 . + 0 gene_id "W7K_21010"; transcript_id "KOE97241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97241"; +contig02 ena start_codon 78283 78285 . + 0 gene_id "W7K_21010"; transcript_id "KOE97241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 78664 78666 . + 0 gene_id "W7K_21010"; transcript_id "KOE97241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 78819 79598 . + . gene_id "W7K_21015"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 78819 79598 . + . gene_id "W7K_21015"; transcript_id "KOE97288"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 78819 79598 . + . gene_id "W7K_21015"; transcript_id "KOE97288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97288-1"; +contig02 ena CDS 78819 79595 . + 0 gene_id "W7K_21015"; transcript_id "KOE97288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97288"; +contig02 ena start_codon 78819 78821 . + 0 gene_id "W7K_21015"; transcript_id "KOE97288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 79596 79598 . + 0 gene_id "W7K_21015"; transcript_id "KOE97288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 79651 80496 . + . gene_id "W7K_21020"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 79651 80496 . + . gene_id "W7K_21020"; transcript_id "KOE97242"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 79651 80496 . + . gene_id "W7K_21020"; transcript_id "KOE97242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97242-1"; +contig02 ena CDS 79651 80493 . + 0 gene_id "W7K_21020"; transcript_id "KOE97242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97242"; +contig02 ena start_codon 79651 79653 . + 0 gene_id "W7K_21020"; transcript_id "KOE97242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 80494 80496 . + 0 gene_id "W7K_21020"; transcript_id "KOE97242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 80594 80776 . + . gene_id "W7K_21025"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 80594 80776 . + . gene_id "W7K_21025"; transcript_id "KOE97243"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 80594 80776 . + . gene_id "W7K_21025"; transcript_id "KOE97243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97243-1"; +contig02 ena CDS 80594 80773 . + 0 gene_id "W7K_21025"; transcript_id "KOE97243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97243"; +contig02 ena start_codon 80594 80596 . + 0 gene_id "W7K_21025"; transcript_id "KOE97243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 80774 80776 . + 0 gene_id "W7K_21025"; transcript_id "KOE97243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 81383 81901 . + . gene_id "W7K_21035"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 81383 81901 . + . gene_id "W7K_21035"; transcript_id "KOE97244"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 81383 81901 . + . gene_id "W7K_21035"; transcript_id "KOE97244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97244-1"; +contig02 ena CDS 81383 81898 . + 0 gene_id "W7K_21035"; transcript_id "KOE97244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97244"; +contig02 ena start_codon 81383 81385 . + 0 gene_id "W7K_21035"; transcript_id "KOE97244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 81899 81901 . + 0 gene_id "W7K_21035"; transcript_id "KOE97244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 81948 84059 . - . gene_id "W7K_21040"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 81948 84059 . - . gene_id "W7K_21040"; transcript_id "KOE97245"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 81948 84059 . - . gene_id "W7K_21040"; transcript_id "KOE97245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97245-1"; +contig02 ena CDS 81951 84059 . - 0 gene_id "W7K_21040"; transcript_id "KOE97245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97245"; +contig02 ena start_codon 84057 84059 . - 0 gene_id "W7K_21040"; transcript_id "KOE97245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 81948 81950 . - 0 gene_id "W7K_21040"; transcript_id "KOE97245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 84257 85693 . - . gene_id "W7K_21045"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 84257 85693 . - . gene_id "W7K_21045"; transcript_id "KOE97246"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 84257 85693 . - . gene_id "W7K_21045"; transcript_id "KOE97246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97246-1"; +contig02 ena CDS 84260 85693 . - 0 gene_id "W7K_21045"; transcript_id "KOE97246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97246"; +contig02 ena start_codon 85691 85693 . - 0 gene_id "W7K_21045"; transcript_id "KOE97246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 84257 84259 . - 0 gene_id "W7K_21045"; transcript_id "KOE97246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 85859 87526 . - . gene_id "W7K_21050"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 85859 87526 . - . gene_id "W7K_21050"; transcript_id "KOE97247"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 85859 87526 . - . gene_id "W7K_21050"; transcript_id "KOE97247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97247-1"; +contig02 ena CDS 85862 87526 . - 0 gene_id "W7K_21050"; transcript_id "KOE97247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97247"; +contig02 ena start_codon 87524 87526 . - 0 gene_id "W7K_21050"; transcript_id "KOE97247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 85859 85861 . - 0 gene_id "W7K_21050"; transcript_id "KOE97247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 87523 88377 . - . gene_id "W7K_21055"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 87523 88377 . - . gene_id "W7K_21055"; transcript_id "KOE97248"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 87523 88377 . - . gene_id "W7K_21055"; transcript_id "KOE97248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97248-1"; +contig02 ena CDS 87526 88377 . - 0 gene_id "W7K_21055"; transcript_id "KOE97248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97248"; +contig02 ena start_codon 88375 88377 . - 0 gene_id "W7K_21055"; transcript_id "KOE97248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 87523 87525 . - 0 gene_id "W7K_21055"; transcript_id "KOE97248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 88374 89915 . - . gene_id "W7K_21060"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 88374 89915 . - . gene_id "W7K_21060"; transcript_id "KOE97249"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 88374 89915 . - . gene_id "W7K_21060"; transcript_id "KOE97249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97249-1"; +contig02 ena CDS 88377 89915 . - 0 gene_id "W7K_21060"; transcript_id "KOE97249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97249"; +contig02 ena start_codon 89913 89915 . - 0 gene_id "W7K_21060"; transcript_id "KOE97249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 88374 88376 . - 0 gene_id "W7K_21060"; transcript_id "KOE97249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 89912 91135 . - . gene_id "W7K_21065"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 89912 91135 . - . gene_id "W7K_21065"; transcript_id "KOE97250"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 89912 91135 . - . gene_id "W7K_21065"; transcript_id "KOE97250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97250-1"; +contig02 ena CDS 89915 91135 . - 0 gene_id "W7K_21065"; transcript_id "KOE97250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97250"; +contig02 ena start_codon 91133 91135 . - 0 gene_id "W7K_21065"; transcript_id "KOE97250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 89912 89914 . - 0 gene_id "W7K_21065"; transcript_id "KOE97250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 91203 92573 . + . gene_id "W7K_21070"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 91203 92573 . + . gene_id "W7K_21070"; transcript_id "KOE97251"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 91203 92573 . + . gene_id "W7K_21070"; transcript_id "KOE97251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97251-1"; +contig02 ena CDS 91203 92570 . + 0 gene_id "W7K_21070"; transcript_id "KOE97251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97251"; +contig02 ena start_codon 91203 91205 . + 0 gene_id "W7K_21070"; transcript_id "KOE97251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 92571 92573 . + 0 gene_id "W7K_21070"; transcript_id "KOE97251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 92601 93329 . + . gene_id "W7K_21075"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 92601 93329 . + . gene_id "W7K_21075"; transcript_id "KOE97252"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 92601 93329 . + . gene_id "W7K_21075"; transcript_id "KOE97252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97252-1"; +contig02 ena CDS 92601 93326 . + 0 gene_id "W7K_21075"; transcript_id "KOE97252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97252"; +contig02 ena start_codon 92601 92603 . + 0 gene_id "W7K_21075"; transcript_id "KOE97252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 93327 93329 . + 0 gene_id "W7K_21075"; transcript_id "KOE97252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 93431 94441 . - . gene_id "W7K_21080"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 93431 94441 . - . gene_id "W7K_21080"; transcript_id "KOE97253"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 93431 94441 . - . gene_id "W7K_21080"; transcript_id "KOE97253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97253-1"; +contig02 ena CDS 93434 94441 . - 0 gene_id "W7K_21080"; transcript_id "KOE97253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97253"; +contig02 ena start_codon 94439 94441 . - 0 gene_id "W7K_21080"; transcript_id "KOE97253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 93431 93433 . - 0 gene_id "W7K_21080"; transcript_id "KOE97253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 94679 95170 . - . gene_id "W7K_21085"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 94679 95170 . - . gene_id "W7K_21085"; transcript_id "KOE97254"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 94679 95170 . - . gene_id "W7K_21085"; transcript_id "KOE97254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97254-1"; +contig02 ena CDS 94682 95170 . - 0 gene_id "W7K_21085"; transcript_id "KOE97254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97254"; +contig02 ena start_codon 95168 95170 . - 0 gene_id "W7K_21085"; transcript_id "KOE97254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 94679 94681 . - 0 gene_id "W7K_21085"; transcript_id "KOE97254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 95252 95527 . - . gene_id "W7K_21090"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 95252 95527 . - . gene_id "W7K_21090"; transcript_id "KOE97255"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 95252 95527 . - . gene_id "W7K_21090"; transcript_id "KOE97255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97255-1"; +contig02 ena CDS 95255 95527 . - 0 gene_id "W7K_21090"; transcript_id "KOE97255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97255"; +contig02 ena start_codon 95525 95527 . - 0 gene_id "W7K_21090"; transcript_id "KOE97255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 95252 95254 . - 0 gene_id "W7K_21090"; transcript_id "KOE97255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 95653 96459 . + . gene_id "W7K_21095"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 95653 96459 . + . gene_id "W7K_21095"; transcript_id "KOE97256"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 95653 96459 . + . gene_id "W7K_21095"; transcript_id "KOE97256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97256-1"; +contig02 ena CDS 95653 96456 . + 0 gene_id "W7K_21095"; transcript_id "KOE97256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97256"; +contig02 ena start_codon 95653 95655 . + 0 gene_id "W7K_21095"; transcript_id "KOE97256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 96457 96459 . + 0 gene_id "W7K_21095"; transcript_id "KOE97256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 96712 97797 . + . gene_id "W7K_21100"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 96712 97797 . + . gene_id "W7K_21100"; transcript_id "KOE97257"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 96712 97797 . + . gene_id "W7K_21100"; transcript_id "KOE97257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97257-1"; +contig02 ena CDS 96712 97794 . + 0 gene_id "W7K_21100"; transcript_id "KOE97257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97257"; +contig02 ena start_codon 96712 96714 . + 0 gene_id "W7K_21100"; transcript_id "KOE97257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 97795 97797 . + 0 gene_id "W7K_21100"; transcript_id "KOE97257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 97849 99042 . + . gene_id "W7K_21105"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 97849 99042 . + . gene_id "W7K_21105"; transcript_id "KOE97258"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 97849 99042 . + . gene_id "W7K_21105"; transcript_id "KOE97258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97258-1"; +contig02 ena CDS 97849 99039 . + 0 gene_id "W7K_21105"; transcript_id "KOE97258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97258"; +contig02 ena start_codon 97849 97851 . + 0 gene_id "W7K_21105"; transcript_id "KOE97258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 99040 99042 . + 0 gene_id "W7K_21105"; transcript_id "KOE97258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 99119 100426 . + . gene_id "W7K_21110"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 99119 100426 . + . gene_id "W7K_21110"; transcript_id "KOE97259"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 99119 100426 . + . gene_id "W7K_21110"; transcript_id "KOE97259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97259-1"; +contig02 ena CDS 99119 100423 . + 0 gene_id "W7K_21110"; transcript_id "KOE97259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97259"; +contig02 ena start_codon 99119 99121 . + 0 gene_id "W7K_21110"; transcript_id "KOE97259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 100424 100426 . + 0 gene_id "W7K_21110"; transcript_id "KOE97259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 100601 101173 . - . gene_id "W7K_21115"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 100601 101173 . - . gene_id "W7K_21115"; transcript_id "KOE97260"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 100601 101173 . - . gene_id "W7K_21115"; transcript_id "KOE97260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97260-1"; +contig02 ena CDS 100604 101173 . - 0 gene_id "W7K_21115"; transcript_id "KOE97260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97260"; +contig02 ena start_codon 101171 101173 . - 0 gene_id "W7K_21115"; transcript_id "KOE97260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 100601 100603 . - 0 gene_id "W7K_21115"; transcript_id "KOE97260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 101293 101931 . - . gene_id "W7K_21120"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 101293 101931 . - . gene_id "W7K_21120"; transcript_id "KOE97261"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 101293 101931 . - . gene_id "W7K_21120"; transcript_id "KOE97261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97261-1"; +contig02 ena CDS 101296 101931 . - 0 gene_id "W7K_21120"; transcript_id "KOE97261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97261"; +contig02 ena start_codon 101929 101931 . - 0 gene_id "W7K_21120"; transcript_id "KOE97261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 101293 101295 . - 0 gene_id "W7K_21120"; transcript_id "KOE97261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 102045 103325 . + . gene_id "W7K_21125"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 102045 103325 . + . gene_id "W7K_21125"; transcript_id "KOE97262"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 102045 103325 . + . gene_id "W7K_21125"; transcript_id "KOE97262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97262-1"; +contig02 ena CDS 102045 103322 . + 0 gene_id "W7K_21125"; transcript_id "KOE97262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97262"; +contig02 ena start_codon 102045 102047 . + 0 gene_id "W7K_21125"; transcript_id "KOE97262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 103323 103325 . + 0 gene_id "W7K_21125"; transcript_id "KOE97262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 104072 104659 . - . gene_id "W7K_21135"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 104072 104659 . - . gene_id "W7K_21135"; transcript_id "KOE97263"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 104072 104659 . - . gene_id "W7K_21135"; transcript_id "KOE97263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97263-1"; +contig02 ena CDS 104075 104659 . - 0 gene_id "W7K_21135"; transcript_id "KOE97263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97263"; +contig02 ena start_codon 104657 104659 . - 0 gene_id "W7K_21135"; transcript_id "KOE97263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 104072 104074 . - 0 gene_id "W7K_21135"; transcript_id "KOE97263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 104787 105779 . + . gene_id "W7K_21140"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 104787 105779 . + . gene_id "W7K_21140"; transcript_id "KOE97264"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 104787 105779 . + . gene_id "W7K_21140"; transcript_id "KOE97264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97264-1"; +contig02 ena CDS 104787 105776 . + 0 gene_id "W7K_21140"; transcript_id "KOE97264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97264"; +contig02 ena start_codon 104787 104789 . + 0 gene_id "W7K_21140"; transcript_id "KOE97264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 105777 105779 . + 0 gene_id "W7K_21140"; transcript_id "KOE97264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 105861 106931 . - . gene_id "W7K_21145"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 105861 106931 . - . gene_id "W7K_21145"; transcript_id "KOE97265"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 105861 106931 . - . gene_id "W7K_21145"; transcript_id "KOE97265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97265-1"; +contig02 ena CDS 105864 106931 . - 0 gene_id "W7K_21145"; transcript_id "KOE97265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97265"; +contig02 ena start_codon 106929 106931 . - 0 gene_id "W7K_21145"; transcript_id "KOE97265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 105861 105863 . - 0 gene_id "W7K_21145"; transcript_id "KOE97265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 107056 107145 . + . gene_id "W7K_21150"; gene_source "ena"; gene_biotype "tRNA"; +contig02 ena transcript 107056 107145 . + . gene_id "W7K_21150"; transcript_id "EBT00051077604"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_21150"; transcript_source "ena"; transcript_biotype "tRNA"; +contig02 ena exon 107056 107145 . + . gene_id "W7K_21150"; transcript_id "EBT00051077604"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_21150"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_21150-1"; +contig02 ena gene 107211 107426 . - . gene_id "W7K_21155"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 107211 107426 . - . gene_id "W7K_21155"; transcript_id "KOE97266"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 107211 107426 . - . gene_id "W7K_21155"; transcript_id "KOE97266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97266-1"; +contig02 ena CDS 107214 107426 . - 0 gene_id "W7K_21155"; transcript_id "KOE97266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97266"; +contig02 ena start_codon 107424 107426 . - 0 gene_id "W7K_21155"; transcript_id "KOE97266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 107211 107213 . - 0 gene_id "W7K_21155"; transcript_id "KOE97266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 107413 107727 . - . gene_id "W7K_21160"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 107413 107727 . - . gene_id "W7K_21160"; transcript_id "KOE97267"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 107413 107727 . - . gene_id "W7K_21160"; transcript_id "KOE97267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97267-1"; +contig02 ena CDS 107416 107727 . - 0 gene_id "W7K_21160"; transcript_id "KOE97267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97267"; +contig02 ena start_codon 107725 107727 . - 0 gene_id "W7K_21160"; transcript_id "KOE97267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 107413 107415 . - 0 gene_id "W7K_21160"; transcript_id "KOE97267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 107724 108308 . - . gene_id "W7K_21165"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 107724 108308 . - . gene_id "W7K_21165"; transcript_id "KOE97268"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 107724 108308 . - . gene_id "W7K_21165"; transcript_id "KOE97268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97268-1"; +contig02 ena CDS 107727 108308 . - 0 gene_id "W7K_21165"; transcript_id "KOE97268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97268"; +contig02 ena start_codon 108306 108308 . - 0 gene_id "W7K_21165"; transcript_id "KOE97268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 107724 107726 . - 0 gene_id "W7K_21165"; transcript_id "KOE97268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 108305 108991 . - . gene_id "W7K_21170"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 108305 108991 . - . gene_id "W7K_21170"; transcript_id "KOE97269"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 108305 108991 . - . gene_id "W7K_21170"; transcript_id "KOE97269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97269-1"; +contig02 ena CDS 108308 108991 . - 0 gene_id "W7K_21170"; transcript_id "KOE97269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97269"; +contig02 ena start_codon 108989 108991 . - 0 gene_id "W7K_21170"; transcript_id "KOE97269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 108305 108307 . - 0 gene_id "W7K_21170"; transcript_id "KOE97269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 108984 109796 . - . gene_id "W7K_21175"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 108984 109796 . - . gene_id "W7K_21175"; transcript_id "KOE97270"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 108984 109796 . - . gene_id "W7K_21175"; transcript_id "KOE97270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97270-1"; +contig02 ena CDS 108987 109796 . - 0 gene_id "W7K_21175"; transcript_id "KOE97270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97270"; +contig02 ena start_codon 109794 109796 . - 0 gene_id "W7K_21175"; transcript_id "KOE97270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 108984 108986 . - 0 gene_id "W7K_21175"; transcript_id "KOE97270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 109789 110358 . - . gene_id "W7K_21180"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 109789 110358 . - . gene_id "W7K_21180"; transcript_id "KOE97271"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 109789 110358 . - . gene_id "W7K_21180"; transcript_id "KOE97271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97271-1"; +contig02 ena CDS 109792 110358 . - 0 gene_id "W7K_21180"; transcript_id "KOE97271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97271"; +contig02 ena start_codon 110356 110358 . - 0 gene_id "W7K_21180"; transcript_id "KOE97271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 109789 109791 . - 0 gene_id "W7K_21180"; transcript_id "KOE97271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 110355 110564 . - . gene_id "W7K_21185"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 110355 110564 . - . gene_id "W7K_21185"; transcript_id "KOE97272"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 110355 110564 . - . gene_id "W7K_21185"; transcript_id "KOE97272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97272-1"; +contig02 ena CDS 110358 110564 . - 0 gene_id "W7K_21185"; transcript_id "KOE97272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97272"; +contig02 ena start_codon 110562 110564 . - 0 gene_id "W7K_21185"; transcript_id "KOE97272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 110355 110357 . - 0 gene_id "W7K_21185"; transcript_id "KOE97272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 110652 110894 . - . gene_id "W7K_21190"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 110652 110894 . - . gene_id "W7K_21190"; transcript_id "KOE97273"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 110652 110894 . - . gene_id "W7K_21190"; transcript_id "KOE97273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97273-1"; +contig02 ena CDS 110655 110894 . - 0 gene_id "W7K_21190"; transcript_id "KOE97273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97273"; +contig02 ena start_codon 110892 110894 . - 0 gene_id "W7K_21190"; transcript_id "KOE97273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 110652 110654 . - 0 gene_id "W7K_21190"; transcript_id "KOE97273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 110894 111223 . - . gene_id "W7K_21195"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 110894 111223 . - . gene_id "W7K_21195"; transcript_id "KOE97274"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 110894 111223 . - . gene_id "W7K_21195"; transcript_id "KOE97274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97274-1"; +contig02 ena CDS 110897 111223 . - 0 gene_id "W7K_21195"; transcript_id "KOE97274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97274"; +contig02 ena start_codon 111221 111223 . - 0 gene_id "W7K_21195"; transcript_id "KOE97274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 110894 110896 . - 0 gene_id "W7K_21195"; transcript_id "KOE97274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 111220 111507 . - . gene_id "W7K_21200"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 111220 111507 . - . gene_id "W7K_21200"; transcript_id "KOE97275"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 111220 111507 . - . gene_id "W7K_21200"; transcript_id "KOE97275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97275-1"; +contig02 ena CDS 111223 111507 . - 0 gene_id "W7K_21200"; transcript_id "KOE97275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97275"; +contig02 ena start_codon 111505 111507 . - 0 gene_id "W7K_21200"; transcript_id "KOE97275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 111220 111222 . - 0 gene_id "W7K_21200"; transcript_id "KOE97275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 111504 111716 . - . gene_id "W7K_21205"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 111504 111716 . - . gene_id "W7K_21205"; transcript_id "KOE97276"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 111504 111716 . - . gene_id "W7K_21205"; transcript_id "KOE97276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97276-1"; +contig02 ena CDS 111507 111716 . - 0 gene_id "W7K_21205"; transcript_id "KOE97276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97276"; +contig02 ena start_codon 111714 111716 . - 0 gene_id "W7K_21205"; transcript_id "KOE97276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 111504 111506 . - 0 gene_id "W7K_21205"; transcript_id "KOE97276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 111890 112315 . + . gene_id "W7K_21210"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 111890 112315 . + . gene_id "W7K_21210"; transcript_id "KOE97277"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 111890 112315 . + . gene_id "W7K_21210"; transcript_id "KOE97277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97277-1"; +contig02 ena CDS 111890 112312 . + 0 gene_id "W7K_21210"; transcript_id "KOE97277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97277"; +contig02 ena start_codon 111890 111892 . + 0 gene_id "W7K_21210"; transcript_id "KOE97277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 112313 112315 . + 0 gene_id "W7K_21210"; transcript_id "KOE97277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 112465 113028 . + . gene_id "W7K_21215"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 112465 113028 . + . gene_id "W7K_21215"; transcript_id "KOE97278"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 112465 113028 . + . gene_id "W7K_21215"; transcript_id "KOE97278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97278-1"; +contig02 ena CDS 112465 113025 . + 0 gene_id "W7K_21215"; transcript_id "KOE97278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97278"; +contig02 ena start_codon 112465 112467 . + 0 gene_id "W7K_21215"; transcript_id "KOE97278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 113026 113028 . + 0 gene_id "W7K_21215"; transcript_id "KOE97278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 113028 113393 . + . gene_id "W7K_21220"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 113028 113393 . + . gene_id "W7K_21220"; transcript_id "KOE97279"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 113028 113393 . + . gene_id "W7K_21220"; transcript_id "KOE97279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97279-1"; +contig02 ena CDS 113028 113390 . + 0 gene_id "W7K_21220"; transcript_id "KOE97279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97279"; +contig02 ena start_codon 113028 113030 . + 0 gene_id "W7K_21220"; transcript_id "KOE97279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 113391 113393 . + 0 gene_id "W7K_21220"; transcript_id "KOE97279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 113454 113642 . + . gene_id "W7K_21225"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 113454 113642 . + . gene_id "W7K_21225"; transcript_id "KOE97280"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 113454 113642 . + . gene_id "W7K_21225"; transcript_id "KOE97280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97280-1"; +contig02 ena CDS 113454 113639 . + 0 gene_id "W7K_21225"; transcript_id "KOE97280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97280"; +contig02 ena start_codon 113454 113456 . + 0 gene_id "W7K_21225"; transcript_id "KOE97280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 113640 113642 . + 0 gene_id "W7K_21225"; transcript_id "KOE97280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 114184 114894 . + . gene_id "W7K_21230"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 114184 114894 . + . gene_id "W7K_21230"; transcript_id "KOE97281"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 114184 114894 . + . gene_id "W7K_21230"; transcript_id "KOE97281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97281-1"; +contig02 ena CDS 114184 114891 . + 0 gene_id "W7K_21230"; transcript_id "KOE97281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97281"; +contig02 ena start_codon 114184 114186 . + 0 gene_id "W7K_21230"; transcript_id "KOE97281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 114892 114894 . + 0 gene_id "W7K_21230"; transcript_id "KOE97281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 115222 115887 . + . gene_id "W7K_21235"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 115222 115887 . + . gene_id "W7K_21235"; transcript_id "KOE97282"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 115222 115887 . + . gene_id "W7K_21235"; transcript_id "KOE97282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97282-1"; +contig02 ena CDS 115222 115884 . + 0 gene_id "W7K_21235"; transcript_id "KOE97282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97282"; +contig02 ena start_codon 115222 115224 . + 0 gene_id "W7K_21235"; transcript_id "KOE97282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 115885 115887 . + 0 gene_id "W7K_21235"; transcript_id "KOE97282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 115884 116210 . + . gene_id "W7K_21240"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 115884 116210 . + . gene_id "W7K_21240"; transcript_id "KOE97283"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 115884 116210 . + . gene_id "W7K_21240"; transcript_id "KOE97283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97283-1"; +contig02 ena CDS 115884 116207 . + 0 gene_id "W7K_21240"; transcript_id "KOE97283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97283"; +contig02 ena start_codon 115884 115886 . + 0 gene_id "W7K_21240"; transcript_id "KOE97283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 116208 116210 . + 0 gene_id "W7K_21240"; transcript_id "KOE97283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 116207 116422 . + . gene_id "W7K_21245"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 116207 116422 . + . gene_id "W7K_21245"; transcript_id "KOE97284"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 116207 116422 . + . gene_id "W7K_21245"; transcript_id "KOE97284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97284-1"; +contig02 ena CDS 116207 116419 . + 0 gene_id "W7K_21245"; transcript_id "KOE97284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97284"; +contig02 ena start_codon 116207 116209 . + 0 gene_id "W7K_21245"; transcript_id "KOE97284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 116420 116422 . + 0 gene_id "W7K_21245"; transcript_id "KOE97284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 119609 121102 . + . gene_id "W7K_21260"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 119609 121102 . + . gene_id "W7K_21260"; transcript_id "KOE97289"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 119609 121102 . + . gene_id "W7K_21260"; transcript_id "KOE97289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97289-1"; +contig02 ena CDS 119609 121099 . + 0 gene_id "W7K_21260"; transcript_id "KOE97289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97289"; +contig02 ena start_codon 119609 119611 . + 0 gene_id "W7K_21260"; transcript_id "KOE97289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 121100 121102 . + 0 gene_id "W7K_21260"; transcript_id "KOE97289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena gene 121115 121894 . + . gene_id "W7K_21265"; gene_source "ena"; gene_biotype "protein_coding"; +contig02 ena transcript 121115 121894 . + . gene_id "W7K_21265"; transcript_id "KOE97285"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena exon 121115 121894 . + . gene_id "W7K_21265"; transcript_id "KOE97285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97285-1"; +contig02 ena CDS 121115 121891 . + 0 gene_id "W7K_21265"; transcript_id "KOE97285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97285"; +contig02 ena start_codon 121115 121117 . + 0 gene_id "W7K_21265"; transcript_id "KOE97285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig02 ena stop_codon 121892 121894 . + 0 gene_id "W7K_21265"; transcript_id "KOE97285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 4 1368 . - . gene_id "W7K_17620"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 4 1368 . - . gene_id "W7K_17620"; transcript_id "KOE97783"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 4 1368 . - . gene_id "W7K_17620"; transcript_id "KOE97783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97783-1"; +contig10 ena CDS 7 1368 . - 0 gene_id "W7K_17620"; transcript_id "KOE97783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97783"; +contig10 ena start_codon 1366 1368 . - 0 gene_id "W7K_17620"; transcript_id "KOE97783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 4 6 . - 0 gene_id "W7K_17620"; transcript_id "KOE97783"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 1365 3146 . - . gene_id "W7K_17625"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 1365 3146 . - . gene_id "W7K_17625"; transcript_id "KOE97878"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 1365 3146 . - . gene_id "W7K_17625"; transcript_id "KOE97878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97878-1"; +contig10 ena CDS 1368 3146 . - 0 gene_id "W7K_17625"; transcript_id "KOE97878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97878"; +contig10 ena start_codon 3144 3146 . - 0 gene_id "W7K_17625"; transcript_id "KOE97878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 1365 1367 . - 0 gene_id "W7K_17625"; transcript_id "KOE97878"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 3186 3944 . - . gene_id "W7K_17630"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 3186 3944 . - . gene_id "W7K_17630"; transcript_id "KOE97784"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 3186 3944 . - . gene_id "W7K_17630"; transcript_id "KOE97784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97784-1"; +contig10 ena CDS 3189 3944 . - 0 gene_id "W7K_17630"; transcript_id "KOE97784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97784"; +contig10 ena start_codon 3942 3944 . - 0 gene_id "W7K_17630"; transcript_id "KOE97784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 3186 3188 . - 0 gene_id "W7K_17630"; transcript_id "KOE97784"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 4111 6546 . - . gene_id "W7K_17635"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 4111 6546 . - . gene_id "W7K_17635"; transcript_id "KOE97785"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 4111 6546 . - . gene_id "W7K_17635"; transcript_id "KOE97785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97785-1"; +contig10 ena CDS 4114 6546 . - 0 gene_id "W7K_17635"; transcript_id "KOE97785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97785"; +contig10 ena start_codon 6544 6546 . - 0 gene_id "W7K_17635"; transcript_id "KOE97785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 4111 4113 . - 0 gene_id "W7K_17635"; transcript_id "KOE97785"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 6762 7244 . + . gene_id "W7K_17640"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 6762 7244 . + . gene_id "W7K_17640"; transcript_id "KOE97786"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 6762 7244 . + . gene_id "W7K_17640"; transcript_id "KOE97786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97786-1"; +contig10 ena CDS 6762 7241 . + 0 gene_id "W7K_17640"; transcript_id "KOE97786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97786"; +contig10 ena start_codon 6762 6764 . + 0 gene_id "W7K_17640"; transcript_id "KOE97786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 7242 7244 . + 0 gene_id "W7K_17640"; transcript_id "KOE97786"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 7281 8138 . + . gene_id "W7K_17645"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 7281 8138 . + . gene_id "W7K_17645"; transcript_id "KOE97879"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 7281 8138 . + . gene_id "W7K_17645"; transcript_id "KOE97879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97879-1"; +contig10 ena CDS 7281 8135 . + 0 gene_id "W7K_17645"; transcript_id "KOE97879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97879"; +contig10 ena start_codon 7281 7283 . + 0 gene_id "W7K_17645"; transcript_id "KOE97879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 8136 8138 . + 0 gene_id "W7K_17645"; transcript_id "KOE97879"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 8255 9973 . + . gene_id "W7K_17650"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 8255 9973 . + . gene_id "W7K_17650"; transcript_id "KOE97787"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 8255 9973 . + . gene_id "W7K_17650"; transcript_id "KOE97787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97787-1"; +contig10 ena CDS 8255 9970 . + 0 gene_id "W7K_17650"; transcript_id "KOE97787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97787"; +contig10 ena start_codon 8255 8257 . + 0 gene_id "W7K_17650"; transcript_id "KOE97787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 9971 9973 . + 0 gene_id "W7K_17650"; transcript_id "KOE97787"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 10653 12263 . + . gene_id "W7K_17655"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 10653 12263 . + . gene_id "W7K_17655"; transcript_id "KOE97788"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 10653 12263 . + . gene_id "W7K_17655"; transcript_id "KOE97788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97788-1"; +contig10 ena CDS 10653 12260 . + 0 gene_id "W7K_17655"; transcript_id "KOE97788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97788"; +contig10 ena start_codon 10653 10655 . + 0 gene_id "W7K_17655"; transcript_id "KOE97788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 12261 12263 . + 0 gene_id "W7K_17655"; transcript_id "KOE97788"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 12291 13001 . - . gene_id "W7K_17660"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 12291 13001 . - . gene_id "W7K_17660"; transcript_id "KOE97789"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 12291 13001 . - . gene_id "W7K_17660"; transcript_id "KOE97789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97789-1"; +contig10 ena CDS 12294 13001 . - 0 gene_id "W7K_17660"; transcript_id "KOE97789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97789"; +contig10 ena start_codon 12999 13001 . - 0 gene_id "W7K_17660"; transcript_id "KOE97789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 12291 12293 . - 0 gene_id "W7K_17660"; transcript_id "KOE97789"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 13172 13993 . + . gene_id "W7K_17665"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 13172 13993 . + . gene_id "W7K_17665"; transcript_id "KOE97790"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 13172 13993 . + . gene_id "W7K_17665"; transcript_id "KOE97790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97790-1"; +contig10 ena CDS 13172 13990 . + 0 gene_id "W7K_17665"; transcript_id "KOE97790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97790"; +contig10 ena start_codon 13172 13174 . + 0 gene_id "W7K_17665"; transcript_id "KOE97790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 13991 13993 . + 0 gene_id "W7K_17665"; transcript_id "KOE97790"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 14175 16760 . + . gene_id "W7K_17670"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 14175 16760 . + . gene_id "W7K_17670"; transcript_id "KOE97791"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 14175 16760 . + . gene_id "W7K_17670"; transcript_id "KOE97791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97791-1"; +contig10 ena CDS 14175 16757 . + 0 gene_id "W7K_17670"; transcript_id "KOE97791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97791"; +contig10 ena start_codon 14175 14177 . + 0 gene_id "W7K_17670"; transcript_id "KOE97791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 16758 16760 . + 0 gene_id "W7K_17670"; transcript_id "KOE97791"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 16833 17633 . - . gene_id "W7K_17675"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 16833 17633 . - . gene_id "W7K_17675"; transcript_id "KOE97792"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 16833 17633 . - . gene_id "W7K_17675"; transcript_id "KOE97792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97792-1"; +contig10 ena CDS 16836 17633 . - 0 gene_id "W7K_17675"; transcript_id "KOE97792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97792"; +contig10 ena start_codon 17631 17633 . - 0 gene_id "W7K_17675"; transcript_id "KOE97792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 16833 16835 . - 0 gene_id "W7K_17675"; transcript_id "KOE97792"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 17774 19063 . - . gene_id "W7K_17680"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 17774 19063 . - . gene_id "W7K_17680"; transcript_id "KOE97793"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 17774 19063 . - . gene_id "W7K_17680"; transcript_id "KOE97793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97793-1"; +contig10 ena CDS 17777 19063 . - 0 gene_id "W7K_17680"; transcript_id "KOE97793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97793"; +contig10 ena start_codon 19061 19063 . - 0 gene_id "W7K_17680"; transcript_id "KOE97793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 17774 17776 . - 0 gene_id "W7K_17680"; transcript_id "KOE97793"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 19060 19797 . - . gene_id "W7K_17685"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 19060 19797 . - . gene_id "W7K_17685"; transcript_id "KOE97794"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 19060 19797 . - . gene_id "W7K_17685"; transcript_id "KOE97794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97794-1"; +contig10 ena CDS 19063 19797 . - 0 gene_id "W7K_17685"; transcript_id "KOE97794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97794"; +contig10 ena start_codon 19795 19797 . - 0 gene_id "W7K_17685"; transcript_id "KOE97794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 19060 19062 . - 0 gene_id "W7K_17685"; transcript_id "KOE97794"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 19980 21266 . + . gene_id "W7K_17690"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 19980 21266 . + . gene_id "W7K_17690"; transcript_id "KOE97795"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 19980 21266 . + . gene_id "W7K_17690"; transcript_id "KOE97795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97795-1"; +contig10 ena CDS 19980 21263 . + 0 gene_id "W7K_17690"; transcript_id "KOE97795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97795"; +contig10 ena start_codon 19980 19982 . + 0 gene_id "W7K_17690"; transcript_id "KOE97795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 21264 21266 . + 0 gene_id "W7K_17690"; transcript_id "KOE97795"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 21541 23238 . - . gene_id "W7K_17695"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 21541 23238 . - . gene_id "W7K_17695"; transcript_id "KOE97796"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 21541 23238 . - . gene_id "W7K_17695"; transcript_id "KOE97796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97796-1"; +contig10 ena CDS 21544 23238 . - 0 gene_id "W7K_17695"; transcript_id "KOE97796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97796"; +contig10 ena start_codon 23236 23238 . - 0 gene_id "W7K_17695"; transcript_id "KOE97796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 21541 21543 . - 0 gene_id "W7K_17695"; transcript_id "KOE97796"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 23447 25834 . - . gene_id "W7K_17700"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 23447 25834 . - . gene_id "W7K_17700"; transcript_id "KOE97797"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 23447 25834 . - . gene_id "W7K_17700"; transcript_id "KOE97797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97797-1"; +contig10 ena CDS 23450 25834 . - 0 gene_id "W7K_17700"; transcript_id "KOE97797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97797"; +contig10 ena start_codon 25832 25834 . - 0 gene_id "W7K_17700"; transcript_id "KOE97797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 23447 23449 . - 0 gene_id "W7K_17700"; transcript_id "KOE97797"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 26168 28033 . + . gene_id "W7K_17705"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 26168 28033 . + . gene_id "W7K_17705"; transcript_id "KOE97798"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 26168 28033 . + . gene_id "W7K_17705"; transcript_id "KOE97798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97798-1"; +contig10 ena CDS 26168 28030 . + 0 gene_id "W7K_17705"; transcript_id "KOE97798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97798"; +contig10 ena start_codon 26168 26170 . + 0 gene_id "W7K_17705"; transcript_id "KOE97798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 28031 28033 . + 0 gene_id "W7K_17705"; transcript_id "KOE97798"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 28125 28988 . - . gene_id "W7K_17710"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 28125 28988 . - . gene_id "W7K_17710"; transcript_id "KOE97799"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 28125 28988 . - . gene_id "W7K_17710"; transcript_id "KOE97799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97799-1"; +contig10 ena CDS 28128 28988 . - 0 gene_id "W7K_17710"; transcript_id "KOE97799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97799"; +contig10 ena start_codon 28986 28988 . - 0 gene_id "W7K_17710"; transcript_id "KOE97799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 28125 28127 . - 0 gene_id "W7K_17710"; transcript_id "KOE97799"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 29164 30075 . + . gene_id "W7K_17715"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 29164 30075 . + . gene_id "W7K_17715"; transcript_id "KOE97800"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 29164 30075 . + . gene_id "W7K_17715"; transcript_id "KOE97800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97800-1"; +contig10 ena CDS 29164 30072 . + 0 gene_id "W7K_17715"; transcript_id "KOE97800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97800"; +contig10 ena start_codon 29164 29166 . + 0 gene_id "W7K_17715"; transcript_id "KOE97800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 30073 30075 . + 0 gene_id "W7K_17715"; transcript_id "KOE97800"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 30161 31375 . + . gene_id "W7K_17720"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 30161 31375 . + . gene_id "W7K_17720"; transcript_id "KOE97801"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 30161 31375 . + . gene_id "W7K_17720"; transcript_id "KOE97801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97801-1"; +contig10 ena CDS 30161 31372 . + 0 gene_id "W7K_17720"; transcript_id "KOE97801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97801"; +contig10 ena start_codon 30161 30163 . + 0 gene_id "W7K_17720"; transcript_id "KOE97801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 31373 31375 . + 0 gene_id "W7K_17720"; transcript_id "KOE97801"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 31431 32075 . + . gene_id "W7K_17725"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 31431 32075 . + . gene_id "W7K_17725"; transcript_id "KOE97802"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 31431 32075 . + . gene_id "W7K_17725"; transcript_id "KOE97802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97802-1"; +contig10 ena CDS 31431 32072 . + 0 gene_id "W7K_17725"; transcript_id "KOE97802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97802"; +contig10 ena start_codon 31431 31433 . + 0 gene_id "W7K_17725"; transcript_id "KOE97802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 32073 32075 . + 0 gene_id "W7K_17725"; transcript_id "KOE97802"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 32152 32895 . - . gene_id "W7K_17730"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 32152 32895 . - . gene_id "W7K_17730"; transcript_id "KOE97803"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 32152 32895 . - . gene_id "W7K_17730"; transcript_id "KOE97803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97803-1"; +contig10 ena CDS 32155 32895 . - 0 gene_id "W7K_17730"; transcript_id "KOE97803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97803"; +contig10 ena start_codon 32893 32895 . - 0 gene_id "W7K_17730"; transcript_id "KOE97803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 32152 32154 . - 0 gene_id "W7K_17730"; transcript_id "KOE97803"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 33055 34806 . + . gene_id "W7K_17735"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 33055 34806 . + . gene_id "W7K_17735"; transcript_id "KOE97804"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 33055 34806 . + . gene_id "W7K_17735"; transcript_id "KOE97804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97804-1"; +contig10 ena CDS 33055 34803 . + 0 gene_id "W7K_17735"; transcript_id "KOE97804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97804"; +contig10 ena start_codon 33055 33057 . + 0 gene_id "W7K_17735"; transcript_id "KOE97804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 34804 34806 . + 0 gene_id "W7K_17735"; transcript_id "KOE97804"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 34823 35149 . + . gene_id "W7K_17740"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 34823 35149 . + . gene_id "W7K_17740"; transcript_id "KOE97805"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 34823 35149 . + . gene_id "W7K_17740"; transcript_id "KOE97805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97805-1"; +contig10 ena CDS 34823 35146 . + 0 gene_id "W7K_17740"; transcript_id "KOE97805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97805"; +contig10 ena start_codon 34823 34825 . + 0 gene_id "W7K_17740"; transcript_id "KOE97805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 35147 35149 . + 0 gene_id "W7K_17740"; transcript_id "KOE97805"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 35181 35702 . + . gene_id "W7K_17745"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 35181 35702 . + . gene_id "W7K_17745"; transcript_id "KOE97806"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 35181 35702 . + . gene_id "W7K_17745"; transcript_id "KOE97806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97806-1"; +contig10 ena CDS 35181 35699 . + 0 gene_id "W7K_17745"; transcript_id "KOE97806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97806"; +contig10 ena start_codon 35181 35183 . + 0 gene_id "W7K_17745"; transcript_id "KOE97806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 35700 35702 . + 0 gene_id "W7K_17745"; transcript_id "KOE97806"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 35778 36410 . + . gene_id "W7K_17750"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 35778 36410 . + . gene_id "W7K_17750"; transcript_id "KOE97807"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 35778 36410 . + . gene_id "W7K_17750"; transcript_id "KOE97807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97807-1"; +contig10 ena CDS 35778 36407 . + 0 gene_id "W7K_17750"; transcript_id "KOE97807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97807"; +contig10 ena start_codon 35778 35780 . + 0 gene_id "W7K_17750"; transcript_id "KOE97807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 36408 36410 . + 0 gene_id "W7K_17750"; transcript_id "KOE97807"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 36587 37318 . + . gene_id "W7K_17755"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 36587 37318 . + . gene_id "W7K_17755"; transcript_id "KOE97808"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 36587 37318 . + . gene_id "W7K_17755"; transcript_id "KOE97808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97808-1"; +contig10 ena CDS 36587 37315 . + 0 gene_id "W7K_17755"; transcript_id "KOE97808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97808"; +contig10 ena start_codon 36587 36589 . + 0 gene_id "W7K_17755"; transcript_id "KOE97808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 37316 37318 . + 0 gene_id "W7K_17755"; transcript_id "KOE97808"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 37424 37945 . + . gene_id "W7K_17760"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 37424 37945 . + . gene_id "W7K_17760"; transcript_id "KOE97809"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 37424 37945 . + . gene_id "W7K_17760"; transcript_id "KOE97809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97809-1"; +contig10 ena CDS 37424 37942 . + 0 gene_id "W7K_17760"; transcript_id "KOE97809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97809"; +contig10 ena start_codon 37424 37426 . + 0 gene_id "W7K_17760"; transcript_id "KOE97809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 37943 37945 . + 0 gene_id "W7K_17760"; transcript_id "KOE97809"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 37959 38552 . + . gene_id "W7K_17765"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 37959 38552 . + . gene_id "W7K_17765"; transcript_id "KOE97810"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 37959 38552 . + . gene_id "W7K_17765"; transcript_id "KOE97810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97810-1"; +contig10 ena CDS 37959 38549 . + 0 gene_id "W7K_17765"; transcript_id "KOE97810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97810"; +contig10 ena start_codon 37959 37961 . + 0 gene_id "W7K_17765"; transcript_id "KOE97810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 38550 38552 . + 0 gene_id "W7K_17765"; transcript_id "KOE97810"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 38602 40521 . + . gene_id "W7K_17770"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 38602 40521 . + . gene_id "W7K_17770"; transcript_id "KOE97811"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 38602 40521 . + . gene_id "W7K_17770"; transcript_id "KOE97811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97811-1"; +contig10 ena CDS 38602 40518 . + 0 gene_id "W7K_17770"; transcript_id "KOE97811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97811"; +contig10 ena start_codon 38602 38604 . + 0 gene_id "W7K_17770"; transcript_id "KOE97811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 40519 40521 . + 0 gene_id "W7K_17770"; transcript_id "KOE97811"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 40862 41902 . + . gene_id "W7K_17775"; gene_name "ruvB"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 40862 41902 . + . gene_id "W7K_17775"; transcript_id "KOE97812"; gene_name "ruvB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ruvB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 40862 41902 . + . gene_id "W7K_17775"; transcript_id "KOE97812"; exon_number "1"; gene_name "ruvB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ruvB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97812-1"; +contig10 ena CDS 40862 41899 . + 0 gene_id "W7K_17775"; transcript_id "KOE97812"; exon_number "1"; gene_name "ruvB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ruvB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97812"; +contig10 ena start_codon 40862 40864 . + 0 gene_id "W7K_17775"; transcript_id "KOE97812"; exon_number "1"; gene_name "ruvB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ruvB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 41900 41902 . + 0 gene_id "W7K_17775"; transcript_id "KOE97812"; exon_number "1"; gene_name "ruvB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ruvB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 41892 42323 . + . gene_id "W7K_17780"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 41892 42323 . + . gene_id "W7K_17780"; transcript_id "KOE97813"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 41892 42323 . + . gene_id "W7K_17780"; transcript_id "KOE97813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97813-1"; +contig10 ena CDS 41892 42320 . + 0 gene_id "W7K_17780"; transcript_id "KOE97813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97813"; +contig10 ena start_codon 41892 41894 . + 0 gene_id "W7K_17780"; transcript_id "KOE97813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 42321 42323 . + 0 gene_id "W7K_17780"; transcript_id "KOE97813"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 42334 43113 . + . gene_id "W7K_17785"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 42334 43113 . + . gene_id "W7K_17785"; transcript_id "KOE97814"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 42334 43113 . + . gene_id "W7K_17785"; transcript_id "KOE97814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97814-1"; +contig10 ena CDS 42334 43110 . + 0 gene_id "W7K_17785"; transcript_id "KOE97814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97814"; +contig10 ena start_codon 42334 42336 . + 0 gene_id "W7K_17785"; transcript_id "KOE97814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 43111 43113 . + 0 gene_id "W7K_17785"; transcript_id "KOE97814"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 43138 43566 . + . gene_id "W7K_17790"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 43138 43566 . + . gene_id "W7K_17790"; transcript_id "KOE97815"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 43138 43566 . + . gene_id "W7K_17790"; transcript_id "KOE97815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97815-1"; +contig10 ena CDS 43138 43563 . + 0 gene_id "W7K_17790"; transcript_id "KOE97815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97815"; +contig10 ena start_codon 43138 43140 . + 0 gene_id "W7K_17790"; transcript_id "KOE97815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 43564 43566 . + 0 gene_id "W7K_17790"; transcript_id "KOE97815"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 43556 44608 . + . gene_id "W7K_17795"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 43556 44608 . + . gene_id "W7K_17795"; transcript_id "KOE97816"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 43556 44608 . + . gene_id "W7K_17795"; transcript_id "KOE97816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97816-1"; +contig10 ena CDS 43556 44605 . + 0 gene_id "W7K_17795"; transcript_id "KOE97816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97816"; +contig10 ena start_codon 43556 43558 . + 0 gene_id "W7K_17795"; transcript_id "KOE97816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 44606 44608 . + 0 gene_id "W7K_17795"; transcript_id "KOE97816"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 44892 46211 . + . gene_id "W7K_17800"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 44892 46211 . + . gene_id "W7K_17800"; transcript_id "KOE97817"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 44892 46211 . + . gene_id "W7K_17800"; transcript_id "KOE97817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97817-1"; +contig10 ena CDS 44892 46208 . + 0 gene_id "W7K_17800"; transcript_id "KOE97817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97817"; +contig10 ena start_codon 44892 44894 . + 0 gene_id "W7K_17800"; transcript_id "KOE97817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 46209 46211 . + 0 gene_id "W7K_17800"; transcript_id "KOE97817"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 46276 46794 . + . gene_id "W7K_17805"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 46276 46794 . + . gene_id "W7K_17805"; transcript_id "KOE97818"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 46276 46794 . + . gene_id "W7K_17805"; transcript_id "KOE97818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97818-1"; +contig10 ena CDS 46276 46791 . + 0 gene_id "W7K_17805"; transcript_id "KOE97818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97818"; +contig10 ena start_codon 46276 46278 . + 0 gene_id "W7K_17805"; transcript_id "KOE97818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 46792 46794 . + 0 gene_id "W7K_17805"; transcript_id "KOE97818"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 46798 47616 . + . gene_id "W7K_17810"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 46798 47616 . + . gene_id "W7K_17810"; transcript_id "KOE97819"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 46798 47616 . + . gene_id "W7K_17810"; transcript_id "KOE97819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97819-1"; +contig10 ena CDS 46798 47613 . + 0 gene_id "W7K_17810"; transcript_id "KOE97819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97819"; +contig10 ena start_codon 46798 46800 . + 0 gene_id "W7K_17810"; transcript_id "KOE97819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 47614 47616 . + 0 gene_id "W7K_17810"; transcript_id "KOE97819"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 47793 48494 . + . gene_id "W7K_17815"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 47793 48494 . + . gene_id "W7K_17815"; transcript_id "KOE97820"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 47793 48494 . + . gene_id "W7K_17815"; transcript_id "KOE97820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97820-1"; +contig10 ena CDS 47793 48491 . + 0 gene_id "W7K_17815"; transcript_id "KOE97820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97820"; +contig10 ena start_codon 47793 47795 . + 0 gene_id "W7K_17815"; transcript_id "KOE97820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 48492 48494 . + 0 gene_id "W7K_17815"; transcript_id "KOE97820"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 48573 49238 . + . gene_id "W7K_17820"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 48573 49238 . + . gene_id "W7K_17820"; transcript_id "KOE97821"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 48573 49238 . + . gene_id "W7K_17820"; transcript_id "KOE97821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97821-1"; +contig10 ena CDS 48573 49235 . + 0 gene_id "W7K_17820"; transcript_id "KOE97821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97821"; +contig10 ena start_codon 48573 48575 . + 0 gene_id "W7K_17820"; transcript_id "KOE97821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 49236 49238 . + 0 gene_id "W7K_17820"; transcript_id "KOE97821"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 49303 50301 . - . gene_id "W7K_17825"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 49303 50301 . - . gene_id "W7K_17825"; transcript_id "KOE97822"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 49303 50301 . - . gene_id "W7K_17825"; transcript_id "KOE97822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97822-1"; +contig10 ena CDS 49306 50301 . - 0 gene_id "W7K_17825"; transcript_id "KOE97822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97822"; +contig10 ena start_codon 50299 50301 . - 0 gene_id "W7K_17825"; transcript_id "KOE97822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 49303 49305 . - 0 gene_id "W7K_17825"; transcript_id "KOE97822"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 50480 50555 . + . gene_id "W7K_17830"; gene_source "ena"; gene_biotype "tRNA"; +contig10 ena transcript 50480 50555 . + . gene_id "W7K_17830"; transcript_id "EBT00051077610"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17830"; transcript_source "ena"; transcript_biotype "tRNA"; +contig10 ena exon 50480 50555 . + . gene_id "W7K_17830"; transcript_id "EBT00051077610"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17830"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_17830-1"; +contig10 ena gene 50623 51819 . - . gene_id "W7K_17835"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 50623 51819 . - . gene_id "W7K_17835"; transcript_id "KOE97823"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 50623 51819 . - . gene_id "W7K_17835"; transcript_id "KOE97823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97823-1"; +contig10 ena CDS 50626 51819 . - 0 gene_id "W7K_17835"; transcript_id "KOE97823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97823"; +contig10 ena start_codon 51817 51819 . - 0 gene_id "W7K_17835"; transcript_id "KOE97823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 50623 50625 . - 0 gene_id "W7K_17835"; transcript_id "KOE97823"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 51819 52037 . - . gene_id "W7K_17840"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 51819 52037 . - . gene_id "W7K_17840"; transcript_id "KOE97824"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 51819 52037 . - . gene_id "W7K_17840"; transcript_id "KOE97824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97824-1"; +contig10 ena CDS 51822 52037 . - 0 gene_id "W7K_17840"; transcript_id "KOE97824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97824"; +contig10 ena start_codon 52035 52037 . - 0 gene_id "W7K_17840"; transcript_id "KOE97824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 51819 51821 . - 0 gene_id "W7K_17840"; transcript_id "KOE97824"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 52490 52696 . - . gene_id "W7K_17845"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 52490 52696 . - . gene_id "W7K_17845"; transcript_id "KOE97825"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 52490 52696 . - . gene_id "W7K_17845"; transcript_id "KOE97825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97825-1"; +contig10 ena CDS 52493 52696 . - 0 gene_id "W7K_17845"; transcript_id "KOE97825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97825"; +contig10 ena start_codon 52694 52696 . - 0 gene_id "W7K_17845"; transcript_id "KOE97825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 52490 52492 . - 0 gene_id "W7K_17845"; transcript_id "KOE97825"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 52711 52896 . - . gene_id "W7K_17850"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 52711 52896 . - . gene_id "W7K_17850"; transcript_id "KOE97826"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 52711 52896 . - . gene_id "W7K_17850"; transcript_id "KOE97826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97826-1"; +contig10 ena CDS 52714 52896 . - 0 gene_id "W7K_17850"; transcript_id "KOE97826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97826"; +contig10 ena start_codon 52894 52896 . - 0 gene_id "W7K_17850"; transcript_id "KOE97826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 52711 52713 . - 0 gene_id "W7K_17850"; transcript_id "KOE97826"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 52889 53236 . - . gene_id "W7K_17855"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 52889 53236 . - . gene_id "W7K_17855"; transcript_id "KOE97880"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 52889 53236 . - . gene_id "W7K_17855"; transcript_id "KOE97880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97880-1"; +contig10 ena CDS 52892 53236 . - 0 gene_id "W7K_17855"; transcript_id "KOE97880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97880"; +contig10 ena start_codon 53234 53236 . - 0 gene_id "W7K_17855"; transcript_id "KOE97880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 52889 52891 . - 0 gene_id "W7K_17855"; transcript_id "KOE97880"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 53400 56090 . - . gene_id "W7K_17860"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 53400 56090 . - . gene_id "W7K_17860"; transcript_id "KOE97827"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 53400 56090 . - . gene_id "W7K_17860"; transcript_id "KOE97827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97827-1"; +contig10 ena CDS 53403 56090 . - 0 gene_id "W7K_17860"; transcript_id "KOE97827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97827"; +contig10 ena start_codon 56088 56090 . - 0 gene_id "W7K_17860"; transcript_id "KOE97827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 53400 53402 . - 0 gene_id "W7K_17860"; transcript_id "KOE97827"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 56199 56444 . - . gene_id "W7K_17865"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 56199 56444 . - . gene_id "W7K_17865"; transcript_id "KOE97828"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 56199 56444 . - . gene_id "W7K_17865"; transcript_id "KOE97828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97828-1"; +contig10 ena CDS 56202 56444 . - 0 gene_id "W7K_17865"; transcript_id "KOE97828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97828"; +contig10 ena start_codon 56442 56444 . - 0 gene_id "W7K_17865"; transcript_id "KOE97828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 56199 56201 . - 0 gene_id "W7K_17865"; transcript_id "KOE97828"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 56444 56752 . - . gene_id "W7K_17870"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 56444 56752 . - . gene_id "W7K_17870"; transcript_id "KOE97829"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 56444 56752 . - . gene_id "W7K_17870"; transcript_id "KOE97829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97829-1"; +contig10 ena CDS 56447 56752 . - 0 gene_id "W7K_17870"; transcript_id "KOE97829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97829"; +contig10 ena start_codon 56750 56752 . - 0 gene_id "W7K_17870"; transcript_id "KOE97829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 56444 56446 . - 0 gene_id "W7K_17870"; transcript_id "KOE97829"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 56752 56994 . - . gene_id "W7K_17875"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 56752 56994 . - . gene_id "W7K_17875"; transcript_id "KOE97881"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 56752 56994 . - . gene_id "W7K_17875"; transcript_id "KOE97881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97881-1"; +contig10 ena CDS 56755 56994 . - 0 gene_id "W7K_17875"; transcript_id "KOE97881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97881"; +contig10 ena start_codon 56992 56994 . - 0 gene_id "W7K_17875"; transcript_id "KOE97881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 56752 56754 . - 0 gene_id "W7K_17875"; transcript_id "KOE97881"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 57321 57527 . - . gene_id "W7K_17885"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 57321 57527 . - . gene_id "W7K_17885"; transcript_id "KOE97830"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 57321 57527 . - . gene_id "W7K_17885"; transcript_id "KOE97830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97830-1"; +contig10 ena CDS 57324 57527 . - 0 gene_id "W7K_17885"; transcript_id "KOE97830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97830"; +contig10 ena start_codon 57525 57527 . - 0 gene_id "W7K_17885"; transcript_id "KOE97830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 57321 57323 . - 0 gene_id "W7K_17885"; transcript_id "KOE97830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 58322 58750 . + . gene_id "W7K_17890"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 58322 58750 . + . gene_id "W7K_17890"; transcript_id "KOE97831"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 58322 58750 . + . gene_id "W7K_17890"; transcript_id "KOE97831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97831-1"; +contig10 ena CDS 58322 58747 . + 0 gene_id "W7K_17890"; transcript_id "KOE97831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97831"; +contig10 ena start_codon 58322 58324 . + 0 gene_id "W7K_17890"; transcript_id "KOE97831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 58748 58750 . + 0 gene_id "W7K_17890"; transcript_id "KOE97831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 59356 59910 . + . gene_id "W7K_17895"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 59356 59910 . + . gene_id "W7K_17895"; transcript_id "KOE97832"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 59356 59910 . + . gene_id "W7K_17895"; transcript_id "KOE97832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97832-1"; +contig10 ena CDS 59356 59907 . + 0 gene_id "W7K_17895"; transcript_id "KOE97832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97832"; +contig10 ena start_codon 59356 59358 . + 0 gene_id "W7K_17895"; transcript_id "KOE97832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 59908 59910 . + 0 gene_id "W7K_17895"; transcript_id "KOE97832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 59952 60947 . - . gene_id "W7K_17900"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 59952 60947 . - . gene_id "W7K_17900"; transcript_id "KOE97833"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 59952 60947 . - . gene_id "W7K_17900"; transcript_id "KOE97833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97833-1"; +contig10 ena CDS 59955 60947 . - 0 gene_id "W7K_17900"; transcript_id "KOE97833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97833"; +contig10 ena start_codon 60945 60947 . - 0 gene_id "W7K_17900"; transcript_id "KOE97833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 59952 59954 . - 0 gene_id "W7K_17900"; transcript_id "KOE97833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 60944 61342 . - . gene_id "W7K_17905"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 60944 61342 . - . gene_id "W7K_17905"; transcript_id "KOE97834"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 60944 61342 . - . gene_id "W7K_17905"; transcript_id "KOE97834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97834-1"; +contig10 ena CDS 60947 61342 . - 0 gene_id "W7K_17905"; transcript_id "KOE97834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97834"; +contig10 ena start_codon 61340 61342 . - 0 gene_id "W7K_17905"; transcript_id "KOE97834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 60944 60946 . - 0 gene_id "W7K_17905"; transcript_id "KOE97834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 64736 64852 . - . gene_id "W7K_17915"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 64736 64852 . - . gene_id "W7K_17915"; transcript_id "KOE97835"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 64736 64852 . - . gene_id "W7K_17915"; transcript_id "KOE97835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97835-1"; +contig10 ena CDS 64739 64852 . - 0 gene_id "W7K_17915"; transcript_id "KOE97835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97835"; +contig10 ena start_codon 64850 64852 . - 0 gene_id "W7K_17915"; transcript_id "KOE97835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 64736 64738 . - 0 gene_id "W7K_17915"; transcript_id "KOE97835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 64861 65199 . - . gene_id "W7K_17920"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 64861 65199 . - . gene_id "W7K_17920"; transcript_id "KOE97836"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 64861 65199 . - . gene_id "W7K_17920"; transcript_id "KOE97836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97836-1"; +contig10 ena CDS 64864 65199 . - 0 gene_id "W7K_17920"; transcript_id "KOE97836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97836"; +contig10 ena start_codon 65197 65199 . - 0 gene_id "W7K_17920"; transcript_id "KOE97836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 64861 64863 . - 0 gene_id "W7K_17920"; transcript_id "KOE97836"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 65256 65765 . - . gene_id "W7K_17925"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 65256 65765 . - . gene_id "W7K_17925"; transcript_id "KOE97837"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 65256 65765 . - . gene_id "W7K_17925"; transcript_id "KOE97837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97837-1"; +contig10 ena CDS 65259 65765 . - 0 gene_id "W7K_17925"; transcript_id "KOE97837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97837"; +contig10 ena start_codon 65763 65765 . - 0 gene_id "W7K_17925"; transcript_id "KOE97837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 65256 65258 . - 0 gene_id "W7K_17925"; transcript_id "KOE97837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 65788 66960 . - . gene_id "W7K_17930"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 65788 66960 . - . gene_id "W7K_17930"; transcript_id "KOE97838"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 65788 66960 . - . gene_id "W7K_17930"; transcript_id "KOE97838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97838-1"; +contig10 ena CDS 65791 66960 . - 0 gene_id "W7K_17930"; transcript_id "KOE97838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97838"; +contig10 ena start_codon 66958 66960 . - 0 gene_id "W7K_17930"; transcript_id "KOE97838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 65788 65790 . - 0 gene_id "W7K_17930"; transcript_id "KOE97838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 66976 67335 . - . gene_id "W7K_17935"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 66976 67335 . - . gene_id "W7K_17935"; transcript_id "KOE97839"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 66976 67335 . - . gene_id "W7K_17935"; transcript_id "KOE97839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97839-1"; +contig10 ena CDS 66979 67335 . - 0 gene_id "W7K_17935"; transcript_id "KOE97839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97839"; +contig10 ena start_codon 67333 67335 . - 0 gene_id "W7K_17935"; transcript_id "KOE97839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 66976 66978 . - 0 gene_id "W7K_17935"; transcript_id "KOE97839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 67332 67898 . - . gene_id "W7K_17940"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 67332 67898 . - . gene_id "W7K_17940"; transcript_id "KOE97840"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 67332 67898 . - . gene_id "W7K_17940"; transcript_id "KOE97840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97840-1"; +contig10 ena CDS 67335 67898 . - 0 gene_id "W7K_17940"; transcript_id "KOE97840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97840"; +contig10 ena start_codon 67896 67898 . - 0 gene_id "W7K_17940"; transcript_id "KOE97840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 67332 67334 . - 0 gene_id "W7K_17940"; transcript_id "KOE97840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 68005 68586 . - . gene_id "W7K_17945"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 68005 68586 . - . gene_id "W7K_17945"; transcript_id "KOE97841"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 68005 68586 . - . gene_id "W7K_17945"; transcript_id "KOE97841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97841-1"; +contig10 ena CDS 68008 68586 . - 0 gene_id "W7K_17945"; transcript_id "KOE97841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97841"; +contig10 ena start_codon 68584 68586 . - 0 gene_id "W7K_17945"; transcript_id "KOE97841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 68005 68007 . - 0 gene_id "W7K_17945"; transcript_id "KOE97841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 71804 72355 . - . gene_id "W7K_17960"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 71804 72355 . - . gene_id "W7K_17960"; transcript_id "KOE97842"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 71804 72355 . - . gene_id "W7K_17960"; transcript_id "KOE97842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97842-1"; +contig10 ena CDS 71807 72355 . - 0 gene_id "W7K_17960"; transcript_id "KOE97842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97842"; +contig10 ena start_codon 72353 72355 . - 0 gene_id "W7K_17960"; transcript_id "KOE97842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 71804 71806 . - 0 gene_id "W7K_17960"; transcript_id "KOE97842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 72348 73238 . - . gene_id "W7K_17965"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 72348 73238 . - . gene_id "W7K_17965"; transcript_id "KOE97843"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 72348 73238 . - . gene_id "W7K_17965"; transcript_id "KOE97843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97843-1"; +contig10 ena CDS 72351 73238 . - 0 gene_id "W7K_17965"; transcript_id "KOE97843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97843"; +contig10 ena start_codon 73236 73238 . - 0 gene_id "W7K_17965"; transcript_id "KOE97843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 72348 72350 . - 0 gene_id "W7K_17965"; transcript_id "KOE97843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 73325 73786 . - . gene_id "W7K_17970"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 73325 73786 . - . gene_id "W7K_17970"; transcript_id "KOE97844"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 73325 73786 . - . gene_id "W7K_17970"; transcript_id "KOE97844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97844-1"; +contig10 ena CDS 73328 73786 . - 0 gene_id "W7K_17970"; transcript_id "KOE97844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97844"; +contig10 ena start_codon 73784 73786 . - 0 gene_id "W7K_17970"; transcript_id "KOE97844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 73325 73327 . - 0 gene_id "W7K_17970"; transcript_id "KOE97844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 73783 74268 . - . gene_id "W7K_17975"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 73783 74268 . - . gene_id "W7K_17975"; transcript_id "KOE97882"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 73783 74268 . - . gene_id "W7K_17975"; transcript_id "KOE97882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97882-1"; +contig10 ena CDS 73786 74268 . - 0 gene_id "W7K_17975"; transcript_id "KOE97882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97882"; +contig10 ena start_codon 74266 74268 . - 0 gene_id "W7K_17975"; transcript_id "KOE97882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 73783 73785 . - 0 gene_id "W7K_17975"; transcript_id "KOE97882"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 74265 74786 . - . gene_id "W7K_17980"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 74265 74786 . - . gene_id "W7K_17980"; transcript_id "KOE97845"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 74265 74786 . - . gene_id "W7K_17980"; transcript_id "KOE97845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97845-1"; +contig10 ena CDS 74268 74786 . - 0 gene_id "W7K_17980"; transcript_id "KOE97845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97845"; +contig10 ena start_codon 74784 74786 . - 0 gene_id "W7K_17980"; transcript_id "KOE97845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 74265 74267 . - 0 gene_id "W7K_17980"; transcript_id "KOE97845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 74786 75391 . - . gene_id "W7K_17985"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 74786 75391 . - . gene_id "W7K_17985"; transcript_id "KOE97883"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 74786 75391 . - . gene_id "W7K_17985"; transcript_id "KOE97883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97883-1"; +contig10 ena CDS 74789 75391 . - 0 gene_id "W7K_17985"; transcript_id "KOE97883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97883"; +contig10 ena start_codon 75389 75391 . - 0 gene_id "W7K_17985"; transcript_id "KOE97883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 74786 74788 . - 0 gene_id "W7K_17985"; transcript_id "KOE97883"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 75423 75698 . - . gene_id "W7K_17990"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 75423 75698 . - . gene_id "W7K_17990"; transcript_id "KOE97846"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 75423 75698 . - . gene_id "W7K_17990"; transcript_id "KOE97846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97846-1"; +contig10 ena CDS 75426 75698 . - 0 gene_id "W7K_17990"; transcript_id "KOE97846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97846"; +contig10 ena start_codon 75696 75698 . - 0 gene_id "W7K_17990"; transcript_id "KOE97846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 75423 75425 . - 0 gene_id "W7K_17990"; transcript_id "KOE97846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 75691 76044 . - . gene_id "W7K_17995"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 75691 76044 . - . gene_id "W7K_17995"; transcript_id "KOE97847"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 75691 76044 . - . gene_id "W7K_17995"; transcript_id "KOE97847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97847-1"; +contig10 ena CDS 75694 76044 . - 0 gene_id "W7K_17995"; transcript_id "KOE97847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97847"; +contig10 ena start_codon 76042 76044 . - 0 gene_id "W7K_17995"; transcript_id "KOE97847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 75691 75693 . - 0 gene_id "W7K_17995"; transcript_id "KOE97847"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 76047 76262 . - . gene_id "W7K_18000"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 76047 76262 . - . gene_id "W7K_18000"; transcript_id "KOE97848"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 76047 76262 . - . gene_id "W7K_18000"; transcript_id "KOE97848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97848-1"; +contig10 ena CDS 76050 76262 . - 0 gene_id "W7K_18000"; transcript_id "KOE97848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97848"; +contig10 ena start_codon 76260 76262 . - 0 gene_id "W7K_18000"; transcript_id "KOE97848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 76047 76049 . - 0 gene_id "W7K_18000"; transcript_id "KOE97848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 76262 76729 . - . gene_id "W7K_18005"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 76262 76729 . - . gene_id "W7K_18005"; transcript_id "KOE97849"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 76262 76729 . - . gene_id "W7K_18005"; transcript_id "KOE97849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97849-1"; +contig10 ena CDS 76265 76729 . - 0 gene_id "W7K_18005"; transcript_id "KOE97849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97849"; +contig10 ena start_codon 76727 76729 . - 0 gene_id "W7K_18005"; transcript_id "KOE97849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 76262 76264 . - 0 gene_id "W7K_18005"; transcript_id "KOE97849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 76834 77541 . - . gene_id "W7K_18010"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 76834 77541 . - . gene_id "W7K_18010"; transcript_id "KOE97850"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 76834 77541 . - . gene_id "W7K_18010"; transcript_id "KOE97850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97850-1"; +contig10 ena CDS 76837 77541 . - 0 gene_id "W7K_18010"; transcript_id "KOE97850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97850"; +contig10 ena start_codon 77539 77541 . - 0 gene_id "W7K_18010"; transcript_id "KOE97850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 76834 76836 . - 0 gene_id "W7K_18010"; transcript_id "KOE97850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 77545 78561 . - . gene_id "W7K_18015"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 77545 78561 . - . gene_id "W7K_18015"; transcript_id "KOE97851"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 77545 78561 . - . gene_id "W7K_18015"; transcript_id "KOE97851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97851-1"; +contig10 ena CDS 77548 78561 . - 0 gene_id "W7K_18015"; transcript_id "KOE97851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97851"; +contig10 ena start_codon 78559 78561 . - 0 gene_id "W7K_18015"; transcript_id "KOE97851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 77545 77547 . - 0 gene_id "W7K_18015"; transcript_id "KOE97851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 78598 79458 . - . gene_id "W7K_18020"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 78598 79458 . - . gene_id "W7K_18020"; transcript_id "KOE97852"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 78598 79458 . - . gene_id "W7K_18020"; transcript_id "KOE97852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97852-1"; +contig10 ena CDS 78601 79458 . - 0 gene_id "W7K_18020"; transcript_id "KOE97852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97852"; +contig10 ena start_codon 79456 79458 . - 0 gene_id "W7K_18020"; transcript_id "KOE97852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 78598 78600 . - 0 gene_id "W7K_18020"; transcript_id "KOE97852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 79613 81370 . + . gene_id "W7K_18025"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 79613 81370 . + . gene_id "W7K_18025"; transcript_id "KOE97853"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 79613 81370 . + . gene_id "W7K_18025"; transcript_id "KOE97853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97853-1"; +contig10 ena CDS 79613 81367 . + 0 gene_id "W7K_18025"; transcript_id "KOE97853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97853"; +contig10 ena start_codon 79613 79615 . + 0 gene_id "W7K_18025"; transcript_id "KOE97853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 81368 81370 . + 0 gene_id "W7K_18025"; transcript_id "KOE97853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 81367 82380 . + . gene_id "W7K_18030"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 81367 82380 . + . gene_id "W7K_18030"; transcript_id "KOE97884"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 81367 82380 . + . gene_id "W7K_18030"; transcript_id "KOE97884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97884-1"; +contig10 ena CDS 81367 82377 . + 0 gene_id "W7K_18030"; transcript_id "KOE97884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97884"; +contig10 ena start_codon 81367 81369 . + 0 gene_id "W7K_18030"; transcript_id "KOE97884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 82378 82380 . + 0 gene_id "W7K_18030"; transcript_id "KOE97884"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 82448 83950 . - . gene_id "W7K_18035"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 82448 83950 . - . gene_id "W7K_18035"; transcript_id "KOE97854"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 82448 83950 . - . gene_id "W7K_18035"; transcript_id "KOE97854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97854-1"; +contig10 ena CDS 82451 83950 . - 0 gene_id "W7K_18035"; transcript_id "KOE97854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97854"; +contig10 ena start_codon 83948 83950 . - 0 gene_id "W7K_18035"; transcript_id "KOE97854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 82448 82450 . - 0 gene_id "W7K_18035"; transcript_id "KOE97854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 84156 84356 . - . gene_id "W7K_18040"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 84156 84356 . - . gene_id "W7K_18040"; transcript_id "KOE97855"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 84156 84356 . - . gene_id "W7K_18040"; transcript_id "KOE97855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97855-1"; +contig10 ena CDS 84159 84356 . - 0 gene_id "W7K_18040"; transcript_id "KOE97855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97855"; +contig10 ena start_codon 84354 84356 . - 0 gene_id "W7K_18040"; transcript_id "KOE97855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 84156 84158 . - 0 gene_id "W7K_18040"; transcript_id "KOE97855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 85526 86701 . - . gene_id "W7K_18045"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 85526 86701 . - . gene_id "W7K_18045"; transcript_id "KOE97856"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 85526 86701 . - . gene_id "W7K_18045"; transcript_id "KOE97856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97856-1"; +contig10 ena CDS 85529 86701 . - 0 gene_id "W7K_18045"; transcript_id "KOE97856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97856"; +contig10 ena start_codon 86699 86701 . - 0 gene_id "W7K_18045"; transcript_id "KOE97856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 85526 85528 . - 0 gene_id "W7K_18045"; transcript_id "KOE97856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 86948 87979 . - . gene_id "W7K_18050"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 86948 87979 . - . gene_id "W7K_18050"; transcript_id "KOE97857"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 86948 87979 . - . gene_id "W7K_18050"; transcript_id "KOE97857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97857-1"; +contig10 ena CDS 86951 87979 . - 0 gene_id "W7K_18050"; transcript_id "KOE97857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97857"; +contig10 ena start_codon 87977 87979 . - 0 gene_id "W7K_18050"; transcript_id "KOE97857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 86948 86950 . - 0 gene_id "W7K_18050"; transcript_id "KOE97857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 90104 90565 . + . gene_id "W7K_18060"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 90104 90565 . + . gene_id "W7K_18060"; transcript_id "KOE97858"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 90104 90565 . + . gene_id "W7K_18060"; transcript_id "KOE97858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97858-1"; +contig10 ena CDS 90104 90562 . + 0 gene_id "W7K_18060"; transcript_id "KOE97858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97858"; +contig10 ena start_codon 90104 90106 . + 0 gene_id "W7K_18060"; transcript_id "KOE97858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 90563 90565 . + 0 gene_id "W7K_18060"; transcript_id "KOE97858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 91045 91362 . - . gene_id "W7K_18065"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 91045 91362 . - . gene_id "W7K_18065"; transcript_id "KOE97859"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 91045 91362 . - . gene_id "W7K_18065"; transcript_id "KOE97859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97859-1"; +contig10 ena CDS 91048 91362 . - 0 gene_id "W7K_18065"; transcript_id "KOE97859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97859"; +contig10 ena start_codon 91360 91362 . - 0 gene_id "W7K_18065"; transcript_id "KOE97859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 91045 91047 . - 0 gene_id "W7K_18065"; transcript_id "KOE97859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 92014 92853 . + . gene_id "W7K_18075"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 92014 92853 . + . gene_id "W7K_18075"; transcript_id "KOE97860"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 92014 92853 . + . gene_id "W7K_18075"; transcript_id "KOE97860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97860-1"; +contig10 ena CDS 92014 92850 . + 0 gene_id "W7K_18075"; transcript_id "KOE97860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97860"; +contig10 ena start_codon 92014 92016 . + 0 gene_id "W7K_18075"; transcript_id "KOE97860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 92851 92853 . + 0 gene_id "W7K_18075"; transcript_id "KOE97860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 92936 93874 . + . gene_id "W7K_18080"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 92936 93874 . + . gene_id "W7K_18080"; transcript_id "KOE97861"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 92936 93874 . + . gene_id "W7K_18080"; transcript_id "KOE97861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97861-1"; +contig10 ena CDS 92936 93871 . + 0 gene_id "W7K_18080"; transcript_id "KOE97861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97861"; +contig10 ena start_codon 92936 92938 . + 0 gene_id "W7K_18080"; transcript_id "KOE97861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 93872 93874 . + 0 gene_id "W7K_18080"; transcript_id "KOE97861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 93982 94407 . - . gene_id "W7K_18085"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 93982 94407 . - . gene_id "W7K_18085"; transcript_id "KOE97862"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 93982 94407 . - . gene_id "W7K_18085"; transcript_id "KOE97862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97862-1"; +contig10 ena CDS 93985 94407 . - 0 gene_id "W7K_18085"; transcript_id "KOE97862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97862"; +contig10 ena start_codon 94405 94407 . - 0 gene_id "W7K_18085"; transcript_id "KOE97862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 93982 93984 . - 0 gene_id "W7K_18085"; transcript_id "KOE97862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 94502 95269 . - . gene_id "W7K_18090"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 94502 95269 . - . gene_id "W7K_18090"; transcript_id "KOE97863"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 94502 95269 . - . gene_id "W7K_18090"; transcript_id "KOE97863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97863-1"; +contig10 ena CDS 94505 95269 . - 0 gene_id "W7K_18090"; transcript_id "KOE97863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97863"; +contig10 ena start_codon 95267 95269 . - 0 gene_id "W7K_18090"; transcript_id "KOE97863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 94502 94504 . - 0 gene_id "W7K_18090"; transcript_id "KOE97863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 95419 95739 . + . gene_id "W7K_18095"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 95419 95739 . + . gene_id "W7K_18095"; transcript_id "KOE97864"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 95419 95739 . + . gene_id "W7K_18095"; transcript_id "KOE97864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97864-1"; +contig10 ena CDS 95419 95736 . + 0 gene_id "W7K_18095"; transcript_id "KOE97864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97864"; +contig10 ena start_codon 95419 95421 . + 0 gene_id "W7K_18095"; transcript_id "KOE97864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 95737 95739 . + 0 gene_id "W7K_18095"; transcript_id "KOE97864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 95818 96330 . - . gene_id "W7K_18100"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 95818 96330 . - . gene_id "W7K_18100"; transcript_id "KOE97865"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 95818 96330 . - . gene_id "W7K_18100"; transcript_id "KOE97865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97865-1"; +contig10 ena CDS 95821 96330 . - 0 gene_id "W7K_18100"; transcript_id "KOE97865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97865"; +contig10 ena start_codon 96328 96330 . - 0 gene_id "W7K_18100"; transcript_id "KOE97865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 95818 95820 . - 0 gene_id "W7K_18100"; transcript_id "KOE97865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 96412 97431 . - . gene_id "W7K_18105"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 96412 97431 . - . gene_id "W7K_18105"; transcript_id "KOE97866"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 96412 97431 . - . gene_id "W7K_18105"; transcript_id "KOE97866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97866-1"; +contig10 ena CDS 96415 97431 . - 0 gene_id "W7K_18105"; transcript_id "KOE97866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97866"; +contig10 ena start_codon 97429 97431 . - 0 gene_id "W7K_18105"; transcript_id "KOE97866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 96412 96414 . - 0 gene_id "W7K_18105"; transcript_id "KOE97866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 97428 99236 . - . gene_id "W7K_18110"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 97428 99236 . - . gene_id "W7K_18110"; transcript_id "KOE97867"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 97428 99236 . - . gene_id "W7K_18110"; transcript_id "KOE97867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97867-1"; +contig10 ena CDS 97431 99236 . - 0 gene_id "W7K_18110"; transcript_id "KOE97867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97867"; +contig10 ena start_codon 99234 99236 . - 0 gene_id "W7K_18110"; transcript_id "KOE97867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 97428 97430 . - 0 gene_id "W7K_18110"; transcript_id "KOE97867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 99312 99695 . - . gene_id "W7K_18115"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 99312 99695 . - . gene_id "W7K_18115"; transcript_id "KOE97868"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 99312 99695 . - . gene_id "W7K_18115"; transcript_id "KOE97868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97868-1"; +contig10 ena CDS 99315 99695 . - 0 gene_id "W7K_18115"; transcript_id "KOE97868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97868"; +contig10 ena start_codon 99693 99695 . - 0 gene_id "W7K_18115"; transcript_id "KOE97868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 99312 99314 . - 0 gene_id "W7K_18115"; transcript_id "KOE97868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 99900 101705 . - . gene_id "W7K_18120"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 99900 101705 . - . gene_id "W7K_18120"; transcript_id "KOE97869"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 99900 101705 . - . gene_id "W7K_18120"; transcript_id "KOE97869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97869-1"; +contig10 ena CDS 99903 101705 . - 0 gene_id "W7K_18120"; transcript_id "KOE97869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97869"; +contig10 ena start_codon 101703 101705 . - 0 gene_id "W7K_18120"; transcript_id "KOE97869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 99900 99902 . - 0 gene_id "W7K_18120"; transcript_id "KOE97869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 102260 102808 . - . gene_id "W7K_18125"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 102260 102808 . - . gene_id "W7K_18125"; transcript_id "KOE97870"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 102260 102808 . - . gene_id "W7K_18125"; transcript_id "KOE97870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97870-1"; +contig10 ena CDS 102263 102808 . - 0 gene_id "W7K_18125"; transcript_id "KOE97870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97870"; +contig10 ena start_codon 102806 102808 . - 0 gene_id "W7K_18125"; transcript_id "KOE97870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 102260 102262 . - 0 gene_id "W7K_18125"; transcript_id "KOE97870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 102895 106977 . + . gene_id "W7K_18130"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 102895 106977 . + . gene_id "W7K_18130"; transcript_id "KOE97871"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 102895 106977 . + . gene_id "W7K_18130"; transcript_id "KOE97871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97871-1"; +contig10 ena CDS 102895 106974 . + 0 gene_id "W7K_18130"; transcript_id "KOE97871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97871"; +contig10 ena start_codon 102895 102897 . + 0 gene_id "W7K_18130"; transcript_id "KOE97871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 106975 106977 . + 0 gene_id "W7K_18130"; transcript_id "KOE97871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 107031 107567 . - . gene_id "W7K_18135"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 107031 107567 . - . gene_id "W7K_18135"; transcript_id "KOE97872"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 107031 107567 . - . gene_id "W7K_18135"; transcript_id "KOE97872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97872-1"; +contig10 ena CDS 107034 107567 . - 0 gene_id "W7K_18135"; transcript_id "KOE97872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97872"; +contig10 ena start_codon 107565 107567 . - 0 gene_id "W7K_18135"; transcript_id "KOE97872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 107031 107033 . - 0 gene_id "W7K_18135"; transcript_id "KOE97872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 107698 109854 . + . gene_id "W7K_18140"; gene_name "relA"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 107698 109854 . + . gene_id "W7K_18140"; transcript_id "KOE97873"; gene_name "relA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "relA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 107698 109854 . + . gene_id "W7K_18140"; transcript_id "KOE97873"; exon_number "1"; gene_name "relA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "relA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97873-1"; +contig10 ena CDS 107698 109851 . + 0 gene_id "W7K_18140"; transcript_id "KOE97873"; exon_number "1"; gene_name "relA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "relA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97873"; +contig10 ena start_codon 107698 107700 . + 0 gene_id "W7K_18140"; transcript_id "KOE97873"; exon_number "1"; gene_name "relA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "relA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 109852 109854 . + 0 gene_id "W7K_18140"; transcript_id "KOE97873"; exon_number "1"; gene_name "relA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "relA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 109885 111450 . + . gene_id "W7K_18145"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 109885 111450 . + . gene_id "W7K_18145"; transcript_id "KOE97874"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 109885 111450 . + . gene_id "W7K_18145"; transcript_id "KOE97874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97874-1"; +contig10 ena CDS 109885 111447 . + 0 gene_id "W7K_18145"; transcript_id "KOE97874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97874"; +contig10 ena start_codon 109885 109887 . + 0 gene_id "W7K_18145"; transcript_id "KOE97874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 111448 111450 . + 0 gene_id "W7K_18145"; transcript_id "KOE97874"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 111447 113546 . - . gene_id "W7K_18150"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 111447 113546 . - . gene_id "W7K_18150"; transcript_id "KOE97875"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 111447 113546 . - . gene_id "W7K_18150"; transcript_id "KOE97875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97875-1"; +contig10 ena CDS 111450 113546 . - 0 gene_id "W7K_18150"; transcript_id "KOE97875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97875"; +contig10 ena start_codon 113544 113546 . - 0 gene_id "W7K_18150"; transcript_id "KOE97875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 111447 111449 . - 0 gene_id "W7K_18150"; transcript_id "KOE97875"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 113643 116081 . + . gene_id "W7K_18155"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 113643 116081 . + . gene_id "W7K_18155"; transcript_id "KOE97876"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 113643 116081 . + . gene_id "W7K_18155"; transcript_id "KOE97876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97876-1"; +contig10 ena CDS 113643 116078 . + 0 gene_id "W7K_18155"; transcript_id "KOE97876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97876"; +contig10 ena start_codon 113643 113645 . + 0 gene_id "W7K_18155"; transcript_id "KOE97876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 116079 116081 . + 0 gene_id "W7K_18155"; transcript_id "KOE97876"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena gene 116078 116614 . + . gene_id "W7K_18160"; gene_source "ena"; gene_biotype "protein_coding"; +contig10 ena transcript 116078 116614 . + . gene_id "W7K_18160"; transcript_id "KOE97877"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena exon 116078 116614 . + . gene_id "W7K_18160"; transcript_id "KOE97877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97877-1"; +contig10 ena CDS 116078 116611 . + 0 gene_id "W7K_18160"; transcript_id "KOE97877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97877"; +contig10 ena start_codon 116078 116080 . + 0 gene_id "W7K_18160"; transcript_id "KOE97877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig10 ena stop_codon 116612 116614 . + 0 gene_id "W7K_18160"; transcript_id "KOE97877"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 462 869 . + . gene_id "W7K_09325"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 462 869 . + . gene_id "W7K_09325"; transcript_id "KOE99404"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 462 869 . + . gene_id "W7K_09325"; transcript_id "KOE99404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99404-1"; +contig29 ena CDS 462 866 . + 0 gene_id "W7K_09325"; transcript_id "KOE99404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99404"; +contig29 ena start_codon 462 464 . + 0 gene_id "W7K_09325"; transcript_id "KOE99404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 867 869 . + 0 gene_id "W7K_09325"; transcript_id "KOE99404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 847 2928 . - . gene_id "W7K_09330"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 847 2928 . - . gene_id "W7K_09330"; transcript_id "KOE99405"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 847 2928 . - . gene_id "W7K_09330"; transcript_id "KOE99405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99405-1"; +contig29 ena CDS 850 2928 . - 0 gene_id "W7K_09330"; transcript_id "KOE99405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99405"; +contig29 ena start_codon 2926 2928 . - 0 gene_id "W7K_09330"; transcript_id "KOE99405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 847 849 . - 0 gene_id "W7K_09330"; transcript_id "KOE99405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 3094 4614 . + . gene_id "W7K_09335"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 3094 4614 . + . gene_id "W7K_09335"; transcript_id "KOE99406"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 3094 4614 . + . gene_id "W7K_09335"; transcript_id "KOE99406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99406-1"; +contig29 ena CDS 3094 4611 . + 0 gene_id "W7K_09335"; transcript_id "KOE99406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99406"; +contig29 ena start_codon 3094 3096 . + 0 gene_id "W7K_09335"; transcript_id "KOE99406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 4612 4614 . + 0 gene_id "W7K_09335"; transcript_id "KOE99406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 4708 5484 . - . gene_id "W7K_09340"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 4708 5484 . - . gene_id "W7K_09340"; transcript_id "KOE99407"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 4708 5484 . - . gene_id "W7K_09340"; transcript_id "KOE99407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99407-1"; +contig29 ena CDS 4711 5484 . - 0 gene_id "W7K_09340"; transcript_id "KOE99407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99407"; +contig29 ena start_codon 5482 5484 . - 0 gene_id "W7K_09340"; transcript_id "KOE99407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 4708 4710 . - 0 gene_id "W7K_09340"; transcript_id "KOE99407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 5769 7142 . - . gene_id "W7K_09345"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 5769 7142 . - . gene_id "W7K_09345"; transcript_id "KOE99408"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 5769 7142 . - . gene_id "W7K_09345"; transcript_id "KOE99408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99408-1"; +contig29 ena CDS 5772 7142 . - 0 gene_id "W7K_09345"; transcript_id "KOE99408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99408"; +contig29 ena start_codon 7140 7142 . - 0 gene_id "W7K_09345"; transcript_id "KOE99408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 5769 5771 . - 0 gene_id "W7K_09345"; transcript_id "KOE99408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 7373 8989 . + . gene_id "W7K_09350"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 7373 8989 . + . gene_id "W7K_09350"; transcript_id "KOE99409"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 7373 8989 . + . gene_id "W7K_09350"; transcript_id "KOE99409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99409-1"; +contig29 ena CDS 7373 8986 . + 0 gene_id "W7K_09350"; transcript_id "KOE99409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99409"; +contig29 ena start_codon 7373 7375 . + 0 gene_id "W7K_09350"; transcript_id "KOE99409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 8987 8989 . + 0 gene_id "W7K_09350"; transcript_id "KOE99409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 9310 10494 . - . gene_id "W7K_09355"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 9310 10494 . - . gene_id "W7K_09355"; transcript_id "KOE99410"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 9310 10494 . - . gene_id "W7K_09355"; transcript_id "KOE99410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99410-1"; +contig29 ena CDS 9313 10494 . - 0 gene_id "W7K_09355"; transcript_id "KOE99410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99410"; +contig29 ena start_codon 10492 10494 . - 0 gene_id "W7K_09355"; transcript_id "KOE99410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 9310 9312 . - 0 gene_id "W7K_09355"; transcript_id "KOE99410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 10491 11669 . - . gene_id "W7K_09360"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 10491 11669 . - . gene_id "W7K_09360"; transcript_id "KOE99411"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 10491 11669 . - . gene_id "W7K_09360"; transcript_id "KOE99411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99411-1"; +contig29 ena CDS 10494 11669 . - 0 gene_id "W7K_09360"; transcript_id "KOE99411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99411"; +contig29 ena start_codon 11667 11669 . - 0 gene_id "W7K_09360"; transcript_id "KOE99411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 10491 10493 . - 0 gene_id "W7K_09360"; transcript_id "KOE99411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 11898 12797 . + . gene_id "W7K_09365"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 11898 12797 . + . gene_id "W7K_09365"; transcript_id "KOE99412"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 11898 12797 . + . gene_id "W7K_09365"; transcript_id "KOE99412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99412-1"; +contig29 ena CDS 11898 12794 . + 0 gene_id "W7K_09365"; transcript_id "KOE99412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99412"; +contig29 ena start_codon 11898 11900 . + 0 gene_id "W7K_09365"; transcript_id "KOE99412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 12795 12797 . + 0 gene_id "W7K_09365"; transcript_id "KOE99412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 13061 14668 . + . gene_id "W7K_09370"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 13061 14668 . + . gene_id "W7K_09370"; transcript_id "KOE99413"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 13061 14668 . + . gene_id "W7K_09370"; transcript_id "KOE99413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99413-1"; +contig29 ena CDS 13061 14665 . + 0 gene_id "W7K_09370"; transcript_id "KOE99413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99413"; +contig29 ena start_codon 13061 13063 . + 0 gene_id "W7K_09370"; transcript_id "KOE99413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 14666 14668 . + 0 gene_id "W7K_09370"; transcript_id "KOE99413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 14789 16114 . - . gene_id "W7K_09375"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 14789 16114 . - . gene_id "W7K_09375"; transcript_id "KOE99414"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 14789 16114 . - . gene_id "W7K_09375"; transcript_id "KOE99414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99414-1"; +contig29 ena CDS 14792 16114 . - 0 gene_id "W7K_09375"; transcript_id "KOE99414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99414"; +contig29 ena start_codon 16112 16114 . - 0 gene_id "W7K_09375"; transcript_id "KOE99414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 14789 14791 . - 0 gene_id "W7K_09375"; transcript_id "KOE99414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 16184 16558 . + . gene_id "W7K_09380"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 16184 16558 . + . gene_id "W7K_09380"; transcript_id "KOE99415"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 16184 16558 . + . gene_id "W7K_09380"; transcript_id "KOE99415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99415-1"; +contig29 ena CDS 16184 16555 . + 0 gene_id "W7K_09380"; transcript_id "KOE99415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99415"; +contig29 ena start_codon 16184 16186 . + 0 gene_id "W7K_09380"; transcript_id "KOE99415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 16556 16558 . + 0 gene_id "W7K_09380"; transcript_id "KOE99415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 16654 16938 . - . gene_id "W7K_09385"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 16654 16938 . - . gene_id "W7K_09385"; transcript_id "KOE99416"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 16654 16938 . - . gene_id "W7K_09385"; transcript_id "KOE99416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99416-1"; +contig29 ena CDS 16657 16938 . - 0 gene_id "W7K_09385"; transcript_id "KOE99416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99416"; +contig29 ena start_codon 16936 16938 . - 0 gene_id "W7K_09385"; transcript_id "KOE99416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 16654 16656 . - 0 gene_id "W7K_09385"; transcript_id "KOE99416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 16992 17969 . + . gene_id "W7K_09390"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 16992 17969 . + . gene_id "W7K_09390"; transcript_id "KOE99417"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 16992 17969 . + . gene_id "W7K_09390"; transcript_id "KOE99417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99417-1"; +contig29 ena CDS 16992 17966 . + 0 gene_id "W7K_09390"; transcript_id "KOE99417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99417"; +contig29 ena start_codon 16992 16994 . + 0 gene_id "W7K_09390"; transcript_id "KOE99417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 17967 17969 . + 0 gene_id "W7K_09390"; transcript_id "KOE99417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 18093 18377 . - . gene_id "W7K_09395"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 18093 18377 . - . gene_id "W7K_09395"; transcript_id "KOE99418"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 18093 18377 . - . gene_id "W7K_09395"; transcript_id "KOE99418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99418-1"; +contig29 ena CDS 18096 18377 . - 0 gene_id "W7K_09395"; transcript_id "KOE99418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99418"; +contig29 ena start_codon 18375 18377 . - 0 gene_id "W7K_09395"; transcript_id "KOE99418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 18093 18095 . - 0 gene_id "W7K_09395"; transcript_id "KOE99418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 18468 18884 . + . gene_id "W7K_09400"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 18468 18884 . + . gene_id "W7K_09400"; transcript_id "KOE99419"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 18468 18884 . + . gene_id "W7K_09400"; transcript_id "KOE99419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99419-1"; +contig29 ena CDS 18468 18881 . + 0 gene_id "W7K_09400"; transcript_id "KOE99419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99419"; +contig29 ena start_codon 18468 18470 . + 0 gene_id "W7K_09400"; transcript_id "KOE99419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 18882 18884 . + 0 gene_id "W7K_09400"; transcript_id "KOE99419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 18954 19277 . + . gene_id "W7K_09405"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 18954 19277 . + . gene_id "W7K_09405"; transcript_id "KOE99420"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 18954 19277 . + . gene_id "W7K_09405"; transcript_id "KOE99420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99420-1"; +contig29 ena CDS 18954 19274 . + 0 gene_id "W7K_09405"; transcript_id "KOE99420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99420"; +contig29 ena start_codon 18954 18956 . + 0 gene_id "W7K_09405"; transcript_id "KOE99420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 19275 19277 . + 0 gene_id "W7K_09405"; transcript_id "KOE99420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 19406 20248 . + . gene_id "W7K_09410"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 19406 20248 . + . gene_id "W7K_09410"; transcript_id "KOE99421"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 19406 20248 . + . gene_id "W7K_09410"; transcript_id "KOE99421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99421-1"; +contig29 ena CDS 19406 20245 . + 0 gene_id "W7K_09410"; transcript_id "KOE99421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99421"; +contig29 ena start_codon 19406 19408 . + 0 gene_id "W7K_09410"; transcript_id "KOE99421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 20246 20248 . + 0 gene_id "W7K_09410"; transcript_id "KOE99421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 20252 21220 . - . gene_id "W7K_09415"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 20252 21220 . - . gene_id "W7K_09415"; transcript_id "KOE99422"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 20252 21220 . - . gene_id "W7K_09415"; transcript_id "KOE99422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99422-1"; +contig29 ena CDS 20255 21220 . - 0 gene_id "W7K_09415"; transcript_id "KOE99422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99422"; +contig29 ena start_codon 21218 21220 . - 0 gene_id "W7K_09415"; transcript_id "KOE99422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 20252 20254 . - 0 gene_id "W7K_09415"; transcript_id "KOE99422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 21291 21950 . - . gene_id "W7K_09420"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 21291 21950 . - . gene_id "W7K_09420"; transcript_id "KOE99423"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 21291 21950 . - . gene_id "W7K_09420"; transcript_id "KOE99423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99423-1"; +contig29 ena CDS 21294 21950 . - 0 gene_id "W7K_09420"; transcript_id "KOE99423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99423"; +contig29 ena start_codon 21948 21950 . - 0 gene_id "W7K_09420"; transcript_id "KOE99423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 21291 21293 . - 0 gene_id "W7K_09420"; transcript_id "KOE99423"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 22084 22764 . + . gene_id "W7K_09425"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 22084 22764 . + . gene_id "W7K_09425"; transcript_id "KOE99424"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 22084 22764 . + . gene_id "W7K_09425"; transcript_id "KOE99424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99424-1"; +contig29 ena CDS 22084 22761 . + 0 gene_id "W7K_09425"; transcript_id "KOE99424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99424"; +contig29 ena start_codon 22084 22086 . + 0 gene_id "W7K_09425"; transcript_id "KOE99424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 22762 22764 . + 0 gene_id "W7K_09425"; transcript_id "KOE99424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 23033 23845 . - . gene_id "W7K_09430"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 23033 23845 . - . gene_id "W7K_09430"; transcript_id "KOE99425"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 23033 23845 . - . gene_id "W7K_09430"; transcript_id "KOE99425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99425-1"; +contig29 ena CDS 23036 23845 . - 0 gene_id "W7K_09430"; transcript_id "KOE99425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99425"; +contig29 ena start_codon 23843 23845 . - 0 gene_id "W7K_09430"; transcript_id "KOE99425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 23033 23035 . - 0 gene_id "W7K_09430"; transcript_id "KOE99425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 24067 24546 . + . gene_id "W7K_09435"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 24067 24546 . + . gene_id "W7K_09435"; transcript_id "KOE99426"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 24067 24546 . + . gene_id "W7K_09435"; transcript_id "KOE99426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99426-1"; +contig29 ena CDS 24067 24543 . + 0 gene_id "W7K_09435"; transcript_id "KOE99426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99426"; +contig29 ena start_codon 24067 24069 . + 0 gene_id "W7K_09435"; transcript_id "KOE99426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 24544 24546 . + 0 gene_id "W7K_09435"; transcript_id "KOE99426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 24622 25038 . + . gene_id "W7K_09440"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 24622 25038 . + . gene_id "W7K_09440"; transcript_id "KOE99427"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 24622 25038 . + . gene_id "W7K_09440"; transcript_id "KOE99427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99427-1"; +contig29 ena CDS 24622 25035 . + 0 gene_id "W7K_09440"; transcript_id "KOE99427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99427"; +contig29 ena start_codon 24622 24624 . + 0 gene_id "W7K_09440"; transcript_id "KOE99427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 25036 25038 . + 0 gene_id "W7K_09440"; transcript_id "KOE99427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 25101 26171 . - . gene_id "W7K_09445"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 25101 26171 . - . gene_id "W7K_09445"; transcript_id "KOE99428"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 25101 26171 . - . gene_id "W7K_09445"; transcript_id "KOE99428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99428-1"; +contig29 ena CDS 25104 26171 . - 0 gene_id "W7K_09445"; transcript_id "KOE99428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99428"; +contig29 ena start_codon 26169 26171 . - 0 gene_id "W7K_09445"; transcript_id "KOE99428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 25101 25103 . - 0 gene_id "W7K_09445"; transcript_id "KOE99428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 26207 26782 . - . gene_id "W7K_09450"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 26207 26782 . - . gene_id "W7K_09450"; transcript_id "KOE99429"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 26207 26782 . - . gene_id "W7K_09450"; transcript_id "KOE99429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99429-1"; +contig29 ena CDS 26210 26782 . - 0 gene_id "W7K_09450"; transcript_id "KOE99429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99429"; +contig29 ena start_codon 26780 26782 . - 0 gene_id "W7K_09450"; transcript_id "KOE99429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 26207 26209 . - 0 gene_id "W7K_09450"; transcript_id "KOE99429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 26926 28071 . - . gene_id "W7K_09455"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 26926 28071 . - . gene_id "W7K_09455"; transcript_id "KOE99430"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 26926 28071 . - . gene_id "W7K_09455"; transcript_id "KOE99430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99430-1"; +contig29 ena CDS 26929 28071 . - 0 gene_id "W7K_09455"; transcript_id "KOE99430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99430"; +contig29 ena start_codon 28069 28071 . - 0 gene_id "W7K_09455"; transcript_id "KOE99430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 26926 26928 . - 0 gene_id "W7K_09455"; transcript_id "KOE99430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 28239 29165 . - . gene_id "W7K_09460"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 28239 29165 . - . gene_id "W7K_09460"; transcript_id "KOE99431"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 28239 29165 . - . gene_id "W7K_09460"; transcript_id "KOE99431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99431-1"; +contig29 ena CDS 28242 29165 . - 0 gene_id "W7K_09460"; transcript_id "KOE99431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99431"; +contig29 ena start_codon 29163 29165 . - 0 gene_id "W7K_09460"; transcript_id "KOE99431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 28239 28241 . - 0 gene_id "W7K_09460"; transcript_id "KOE99431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 29380 30249 . + . gene_id "W7K_09465"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 29380 30249 . + . gene_id "W7K_09465"; transcript_id "KOE99432"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 29380 30249 . + . gene_id "W7K_09465"; transcript_id "KOE99432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99432-1"; +contig29 ena CDS 29380 30246 . + 0 gene_id "W7K_09465"; transcript_id "KOE99432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99432"; +contig29 ena start_codon 29380 29382 . + 0 gene_id "W7K_09465"; transcript_id "KOE99432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 30247 30249 . + 0 gene_id "W7K_09465"; transcript_id "KOE99432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 30271 31596 . + . gene_id "W7K_09470"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 30271 31596 . + . gene_id "W7K_09470"; transcript_id "KOE99433"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 30271 31596 . + . gene_id "W7K_09470"; transcript_id "KOE99433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99433-1"; +contig29 ena CDS 30271 31593 . + 0 gene_id "W7K_09470"; transcript_id "KOE99433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99433"; +contig29 ena start_codon 30271 30273 . + 0 gene_id "W7K_09470"; transcript_id "KOE99433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 31594 31596 . + 0 gene_id "W7K_09470"; transcript_id "KOE99433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 31683 31904 . + . gene_id "W7K_09475"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 31683 31904 . + . gene_id "W7K_09475"; transcript_id "KOE99434"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 31683 31904 . + . gene_id "W7K_09475"; transcript_id "KOE99434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99434-1"; +contig29 ena CDS 31683 31901 . + 0 gene_id "W7K_09475"; transcript_id "KOE99434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99434"; +contig29 ena start_codon 31683 31685 . + 0 gene_id "W7K_09475"; transcript_id "KOE99434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 31902 31904 . + 0 gene_id "W7K_09475"; transcript_id "KOE99434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 32391 32759 . + . gene_id "W7K_09480"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 32391 32759 . + . gene_id "W7K_09480"; transcript_id "KOE99435"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 32391 32759 . + . gene_id "W7K_09480"; transcript_id "KOE99435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99435-1"; +contig29 ena CDS 32391 32756 . + 0 gene_id "W7K_09480"; transcript_id "KOE99435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99435"; +contig29 ena start_codon 32391 32393 . + 0 gene_id "W7K_09480"; transcript_id "KOE99435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 32757 32759 . + 0 gene_id "W7K_09480"; transcript_id "KOE99435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 33384 34289 . + . gene_id "W7K_09485"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 33384 34289 . + . gene_id "W7K_09485"; transcript_id "KOE99436"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 33384 34289 . + . gene_id "W7K_09485"; transcript_id "KOE99436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99436-1"; +contig29 ena CDS 33384 34286 . + 0 gene_id "W7K_09485"; transcript_id "KOE99436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99436"; +contig29 ena start_codon 33384 33386 . + 0 gene_id "W7K_09485"; transcript_id "KOE99436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 34287 34289 . + 0 gene_id "W7K_09485"; transcript_id "KOE99436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 36050 37363 . + . gene_id "W7K_09490"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 36050 37363 . + . gene_id "W7K_09490"; transcript_id "KOE99437"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 36050 37363 . + . gene_id "W7K_09490"; transcript_id "KOE99437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99437-1"; +contig29 ena CDS 36050 37360 . + 0 gene_id "W7K_09490"; transcript_id "KOE99437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99437"; +contig29 ena start_codon 36050 36052 . + 0 gene_id "W7K_09490"; transcript_id "KOE99437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 37361 37363 . + 0 gene_id "W7K_09490"; transcript_id "KOE99437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 37370 38425 . - . gene_id "W7K_09495"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 37370 38425 . - . gene_id "W7K_09495"; transcript_id "KOE99438"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 37370 38425 . - . gene_id "W7K_09495"; transcript_id "KOE99438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99438-1"; +contig29 ena CDS 37373 38425 . - 0 gene_id "W7K_09495"; transcript_id "KOE99438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99438"; +contig29 ena start_codon 38423 38425 . - 0 gene_id "W7K_09495"; transcript_id "KOE99438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 37370 37372 . - 0 gene_id "W7K_09495"; transcript_id "KOE99438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 38415 39068 . - . gene_id "W7K_09500"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 38415 39068 . - . gene_id "W7K_09500"; transcript_id "KOE99439"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 38415 39068 . - . gene_id "W7K_09500"; transcript_id "KOE99439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99439-1"; +contig29 ena CDS 38418 39068 . - 0 gene_id "W7K_09500"; transcript_id "KOE99439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99439"; +contig29 ena start_codon 39066 39068 . - 0 gene_id "W7K_09500"; transcript_id "KOE99439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 38415 38417 . - 0 gene_id "W7K_09500"; transcript_id "KOE99439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 39065 41068 . - . gene_id "W7K_09505"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 39065 41068 . - . gene_id "W7K_09505"; transcript_id "KOE99440"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 39065 41068 . - . gene_id "W7K_09505"; transcript_id "KOE99440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99440-1"; +contig29 ena CDS 39068 41068 . - 0 gene_id "W7K_09505"; transcript_id "KOE99440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99440"; +contig29 ena start_codon 41066 41068 . - 0 gene_id "W7K_09505"; transcript_id "KOE99440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 39065 39067 . - 0 gene_id "W7K_09505"; transcript_id "KOE99440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 41207 42436 . - . gene_id "W7K_09510"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 41207 42436 . - . gene_id "W7K_09510"; transcript_id "KOE99441"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 41207 42436 . - . gene_id "W7K_09510"; transcript_id "KOE99441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99441-1"; +contig29 ena CDS 41210 42436 . - 0 gene_id "W7K_09510"; transcript_id "KOE99441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99441"; +contig29 ena start_codon 42434 42436 . - 0 gene_id "W7K_09510"; transcript_id "KOE99441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 41207 41209 . - 0 gene_id "W7K_09510"; transcript_id "KOE99441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 42445 43122 . - . gene_id "W7K_09515"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 42445 43122 . - . gene_id "W7K_09515"; transcript_id "KOE99442"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 42445 43122 . - . gene_id "W7K_09515"; transcript_id "KOE99442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99442-1"; +contig29 ena CDS 42448 43122 . - 0 gene_id "W7K_09515"; transcript_id "KOE99442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99442"; +contig29 ena start_codon 43120 43122 . - 0 gene_id "W7K_09515"; transcript_id "KOE99442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 42445 42447 . - 0 gene_id "W7K_09515"; transcript_id "KOE99442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 43130 45145 . - . gene_id "W7K_09520"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 43130 45145 . - . gene_id "W7K_09520"; transcript_id "KOE99443"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 43130 45145 . - . gene_id "W7K_09520"; transcript_id "KOE99443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99443-1"; +contig29 ena CDS 43133 45145 . - 0 gene_id "W7K_09520"; transcript_id "KOE99443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99443"; +contig29 ena start_codon 45143 45145 . - 0 gene_id "W7K_09520"; transcript_id "KOE99443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 43130 43132 . - 0 gene_id "W7K_09520"; transcript_id "KOE99443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 46313 49000 . - . gene_id "W7K_09525"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 46313 49000 . - . gene_id "W7K_09525"; transcript_id "KOE99444"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 46313 49000 . - . gene_id "W7K_09525"; transcript_id "KOE99444"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99444-1"; +contig29 ena CDS 46316 49000 . - 0 gene_id "W7K_09525"; transcript_id "KOE99444"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99444"; +contig29 ena start_codon 48998 49000 . - 0 gene_id "W7K_09525"; transcript_id "KOE99444"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 46313 46315 . - 0 gene_id "W7K_09525"; transcript_id "KOE99444"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 49546 50106 . + . gene_id "W7K_09530"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 49546 50106 . + . gene_id "W7K_09530"; transcript_id "KOE99445"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 49546 50106 . + . gene_id "W7K_09530"; transcript_id "KOE99445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99445-1"; +contig29 ena CDS 49546 50103 . + 0 gene_id "W7K_09530"; transcript_id "KOE99445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99445"; +contig29 ena start_codon 49546 49548 . + 0 gene_id "W7K_09530"; transcript_id "KOE99445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 50104 50106 . + 0 gene_id "W7K_09530"; transcript_id "KOE99445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 50167 50964 . + . gene_id "W7K_09535"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 50167 50964 . + . gene_id "W7K_09535"; transcript_id "KOE99446"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 50167 50964 . + . gene_id "W7K_09535"; transcript_id "KOE99446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99446-1"; +contig29 ena CDS 50167 50961 . + 0 gene_id "W7K_09535"; transcript_id "KOE99446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99446"; +contig29 ena start_codon 50167 50169 . + 0 gene_id "W7K_09535"; transcript_id "KOE99446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 50962 50964 . + 0 gene_id "W7K_09535"; transcript_id "KOE99446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 51242 51643 . + . gene_id "W7K_09540"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 51242 51643 . + . gene_id "W7K_09540"; transcript_id "KOE99447"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 51242 51643 . + . gene_id "W7K_09540"; transcript_id "KOE99447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99447-1"; +contig29 ena CDS 51242 51640 . + 0 gene_id "W7K_09540"; transcript_id "KOE99447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99447"; +contig29 ena start_codon 51242 51244 . + 0 gene_id "W7K_09540"; transcript_id "KOE99447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 51641 51643 . + 0 gene_id "W7K_09540"; transcript_id "KOE99447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 51801 52334 . - . gene_id "W7K_09545"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 51801 52334 . - . gene_id "W7K_09545"; transcript_id "KOE99503"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 51801 52334 . - . gene_id "W7K_09545"; transcript_id "KOE99503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99503-1"; +contig29 ena CDS 51804 52334 . - 0 gene_id "W7K_09545"; transcript_id "KOE99503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99503"; +contig29 ena start_codon 52332 52334 . - 0 gene_id "W7K_09545"; transcript_id "KOE99503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 51801 51803 . - 0 gene_id "W7K_09545"; transcript_id "KOE99503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 52595 53185 . - . gene_id "W7K_09550"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 52595 53185 . - . gene_id "W7K_09550"; transcript_id "KOE99448"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 52595 53185 . - . gene_id "W7K_09550"; transcript_id "KOE99448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99448-1"; +contig29 ena CDS 52598 53185 . - 0 gene_id "W7K_09550"; transcript_id "KOE99448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99448"; +contig29 ena start_codon 53183 53185 . - 0 gene_id "W7K_09550"; transcript_id "KOE99448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 52595 52597 . - 0 gene_id "W7K_09550"; transcript_id "KOE99448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 53312 54271 . + . gene_id "W7K_09555"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 53312 54271 . + . gene_id "W7K_09555"; transcript_id "KOE99449"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 53312 54271 . + . gene_id "W7K_09555"; transcript_id "KOE99449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99449-1"; +contig29 ena CDS 53312 54268 . + 0 gene_id "W7K_09555"; transcript_id "KOE99449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99449"; +contig29 ena start_codon 53312 53314 . + 0 gene_id "W7K_09555"; transcript_id "KOE99449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 54269 54271 . + 0 gene_id "W7K_09555"; transcript_id "KOE99449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 54400 54630 . + . gene_id "W7K_09560"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 54400 54630 . + . gene_id "W7K_09560"; transcript_id "KOE99450"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 54400 54630 . + . gene_id "W7K_09560"; transcript_id "KOE99450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99450-1"; +contig29 ena CDS 54400 54627 . + 0 gene_id "W7K_09560"; transcript_id "KOE99450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99450"; +contig29 ena start_codon 54400 54402 . + 0 gene_id "W7K_09560"; transcript_id "KOE99450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 54628 54630 . + 0 gene_id "W7K_09560"; transcript_id "KOE99450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 54679 55530 . + . gene_id "W7K_09565"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 54679 55530 . + . gene_id "W7K_09565"; transcript_id "KOE99451"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 54679 55530 . + . gene_id "W7K_09565"; transcript_id "KOE99451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99451-1"; +contig29 ena CDS 54679 55527 . + 0 gene_id "W7K_09565"; transcript_id "KOE99451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99451"; +contig29 ena start_codon 54679 54681 . + 0 gene_id "W7K_09565"; transcript_id "KOE99451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 55528 55530 . + 0 gene_id "W7K_09565"; transcript_id "KOE99451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 55550 56053 . + . gene_id "W7K_09570"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 55550 56053 . + . gene_id "W7K_09570"; transcript_id "KOE99504"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 55550 56053 . + . gene_id "W7K_09570"; transcript_id "KOE99504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99504-1"; +contig29 ena CDS 55550 56050 . + 0 gene_id "W7K_09570"; transcript_id "KOE99504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99504"; +contig29 ena start_codon 55550 55552 . + 0 gene_id "W7K_09570"; transcript_id "KOE99504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 56051 56053 . + 0 gene_id "W7K_09570"; transcript_id "KOE99504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 56086 56601 . + . gene_id "W7K_09575"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 56086 56601 . + . gene_id "W7K_09575"; transcript_id "KOE99452"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 56086 56601 . + . gene_id "W7K_09575"; transcript_id "KOE99452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99452-1"; +contig29 ena CDS 56086 56598 . + 0 gene_id "W7K_09575"; transcript_id "KOE99452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99452"; +contig29 ena start_codon 56086 56088 . + 0 gene_id "W7K_09575"; transcript_id "KOE99452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 56599 56601 . + 0 gene_id "W7K_09575"; transcript_id "KOE99452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 56677 57237 . + . gene_id "W7K_09580"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 56677 57237 . + . gene_id "W7K_09580"; transcript_id "KOE99453"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 56677 57237 . + . gene_id "W7K_09580"; transcript_id "KOE99453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99453-1"; +contig29 ena CDS 56677 57234 . + 0 gene_id "W7K_09580"; transcript_id "KOE99453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99453"; +contig29 ena start_codon 56677 56679 . + 0 gene_id "W7K_09580"; transcript_id "KOE99453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 57235 57237 . + 0 gene_id "W7K_09580"; transcript_id "KOE99453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 57380 60175 . - . gene_id "W7K_09585"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 57380 60175 . - . gene_id "W7K_09585"; transcript_id "KOE99454"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 57380 60175 . - . gene_id "W7K_09585"; transcript_id "KOE99454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99454-1"; +contig29 ena CDS 57383 60175 . - 0 gene_id "W7K_09585"; transcript_id "KOE99454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99454"; +contig29 ena start_codon 60173 60175 . - 0 gene_id "W7K_09585"; transcript_id "KOE99454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 57380 57382 . - 0 gene_id "W7K_09585"; transcript_id "KOE99454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 60563 62077 . + . gene_id "W7K_09590"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 60563 62077 . + . gene_id "W7K_09590"; transcript_id "KOE99455"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 60563 62077 . + . gene_id "W7K_09590"; transcript_id "KOE99455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99455-1"; +contig29 ena CDS 60563 62074 . + 0 gene_id "W7K_09590"; transcript_id "KOE99455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99455"; +contig29 ena start_codon 60563 60565 . + 0 gene_id "W7K_09590"; transcript_id "KOE99455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 62075 62077 . + 0 gene_id "W7K_09590"; transcript_id "KOE99455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 62173 63534 . - . gene_id "W7K_09595"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 62173 63534 . - . gene_id "W7K_09595"; transcript_id "KOE99456"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 62173 63534 . - . gene_id "W7K_09595"; transcript_id "KOE99456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99456-1"; +contig29 ena CDS 62176 63534 . - 0 gene_id "W7K_09595"; transcript_id "KOE99456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99456"; +contig29 ena start_codon 63532 63534 . - 0 gene_id "W7K_09595"; transcript_id "KOE99456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 62173 62175 . - 0 gene_id "W7K_09595"; transcript_id "KOE99456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 63700 64188 . - . gene_id "W7K_09600"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 63700 64188 . - . gene_id "W7K_09600"; transcript_id "KOE99457"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 63700 64188 . - . gene_id "W7K_09600"; transcript_id "KOE99457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99457-1"; +contig29 ena CDS 63703 64188 . - 0 gene_id "W7K_09600"; transcript_id "KOE99457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99457"; +contig29 ena start_codon 64186 64188 . - 0 gene_id "W7K_09600"; transcript_id "KOE99457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 63700 63702 . - 0 gene_id "W7K_09600"; transcript_id "KOE99457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 64220 64972 . - . gene_id "W7K_09605"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 64220 64972 . - . gene_id "W7K_09605"; transcript_id "KOE99458"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 64220 64972 . - . gene_id "W7K_09605"; transcript_id "KOE99458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99458-1"; +contig29 ena CDS 64223 64972 . - 0 gene_id "W7K_09605"; transcript_id "KOE99458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99458"; +contig29 ena start_codon 64970 64972 . - 0 gene_id "W7K_09605"; transcript_id "KOE99458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 64220 64222 . - 0 gene_id "W7K_09605"; transcript_id "KOE99458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 65068 65478 . - . gene_id "W7K_09610"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 65068 65478 . - . gene_id "W7K_09610"; transcript_id "KOE99459"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 65068 65478 . - . gene_id "W7K_09610"; transcript_id "KOE99459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99459-1"; +contig29 ena CDS 65071 65478 . - 0 gene_id "W7K_09610"; transcript_id "KOE99459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99459"; +contig29 ena start_codon 65476 65478 . - 0 gene_id "W7K_09610"; transcript_id "KOE99459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 65068 65070 . - 0 gene_id "W7K_09610"; transcript_id "KOE99459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 65711 66082 . - . gene_id "W7K_09615"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 65711 66082 . - . gene_id "W7K_09615"; transcript_id "KOE99460"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 65711 66082 . - . gene_id "W7K_09615"; transcript_id "KOE99460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99460-1"; +contig29 ena CDS 65714 66082 . - 0 gene_id "W7K_09615"; transcript_id "KOE99460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99460"; +contig29 ena start_codon 66080 66082 . - 0 gene_id "W7K_09615"; transcript_id "KOE99460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 65711 65713 . - 0 gene_id "W7K_09615"; transcript_id "KOE99460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 66603 67316 . - . gene_id "W7K_09620"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 66603 67316 . - . gene_id "W7K_09620"; transcript_id "KOE99461"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 66603 67316 . - . gene_id "W7K_09620"; transcript_id "KOE99461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99461-1"; +contig29 ena CDS 66606 67316 . - 0 gene_id "W7K_09620"; transcript_id "KOE99461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99461"; +contig29 ena start_codon 67314 67316 . - 0 gene_id "W7K_09620"; transcript_id "KOE99461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 66603 66605 . - 0 gene_id "W7K_09620"; transcript_id "KOE99461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 67249 68805 . - . gene_id "W7K_09625"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 67249 68805 . - . gene_id "W7K_09625"; transcript_id "KOE99462"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 67249 68805 . - . gene_id "W7K_09625"; transcript_id "KOE99462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99462-1"; +contig29 ena CDS 67252 68805 . - 0 gene_id "W7K_09625"; transcript_id "KOE99462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99462"; +contig29 ena start_codon 68803 68805 . - 0 gene_id "W7K_09625"; transcript_id "KOE99462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 67249 67251 . - 0 gene_id "W7K_09625"; transcript_id "KOE99462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 68861 71884 . - . gene_id "W7K_09630"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 68861 71884 . - . gene_id "W7K_09630"; transcript_id "KOE99463"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 68861 71884 . - . gene_id "W7K_09630"; transcript_id "KOE99463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99463-1"; +contig29 ena CDS 68864 71884 . - 0 gene_id "W7K_09630"; transcript_id "KOE99463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99463"; +contig29 ena start_codon 71882 71884 . - 0 gene_id "W7K_09630"; transcript_id "KOE99463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 68861 68863 . - 0 gene_id "W7K_09630"; transcript_id "KOE99463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 71936 73408 . - . gene_id "W7K_09635"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 71936 73408 . - . gene_id "W7K_09635"; transcript_id "KOE99464"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 71936 73408 . - . gene_id "W7K_09635"; transcript_id "KOE99464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99464-1"; +contig29 ena CDS 71939 73408 . - 0 gene_id "W7K_09635"; transcript_id "KOE99464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99464"; +contig29 ena start_codon 73406 73408 . - 0 gene_id "W7K_09635"; transcript_id "KOE99464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 71936 71938 . - 0 gene_id "W7K_09635"; transcript_id "KOE99464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 73541 74980 . + . gene_id "W7K_09640"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 73541 74980 . + . gene_id "W7K_09640"; transcript_id "KOE99505"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 73541 74980 . + . gene_id "W7K_09640"; transcript_id "KOE99505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99505-1"; +contig29 ena CDS 73541 74977 . + 0 gene_id "W7K_09640"; transcript_id "KOE99505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99505"; +contig29 ena start_codon 73541 73543 . + 0 gene_id "W7K_09640"; transcript_id "KOE99505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 74978 74980 . + 0 gene_id "W7K_09640"; transcript_id "KOE99505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 74977 76071 . + . gene_id "W7K_09645"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 74977 76071 . + . gene_id "W7K_09645"; transcript_id "KOE99465"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 74977 76071 . + . gene_id "W7K_09645"; transcript_id "KOE99465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99465-1"; +contig29 ena CDS 74977 76068 . + 0 gene_id "W7K_09645"; transcript_id "KOE99465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99465"; +contig29 ena start_codon 74977 74979 . + 0 gene_id "W7K_09645"; transcript_id "KOE99465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 76069 76071 . + 0 gene_id "W7K_09645"; transcript_id "KOE99465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 76586 77434 . + . gene_id "W7K_09650"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 76586 77434 . + . gene_id "W7K_09650"; transcript_id "KOE99466"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 76586 77434 . + . gene_id "W7K_09650"; transcript_id "KOE99466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99466-1"; +contig29 ena CDS 76586 77431 . + 0 gene_id "W7K_09650"; transcript_id "KOE99466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99466"; +contig29 ena start_codon 76586 76588 . + 0 gene_id "W7K_09650"; transcript_id "KOE99466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 77432 77434 . + 0 gene_id "W7K_09650"; transcript_id "KOE99466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 77450 78211 . + . gene_id "W7K_09655"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 77450 78211 . + . gene_id "W7K_09655"; transcript_id "KOE99467"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 77450 78211 . + . gene_id "W7K_09655"; transcript_id "KOE99467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99467-1"; +contig29 ena CDS 77450 78208 . + 0 gene_id "W7K_09655"; transcript_id "KOE99467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99467"; +contig29 ena start_codon 77450 77452 . + 0 gene_id "W7K_09655"; transcript_id "KOE99467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 78209 78211 . + 0 gene_id "W7K_09655"; transcript_id "KOE99467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 78208 79509 . + . gene_id "W7K_09660"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 78208 79509 . + . gene_id "W7K_09660"; transcript_id "KOE99468"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 78208 79509 . + . gene_id "W7K_09660"; transcript_id "KOE99468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99468-1"; +contig29 ena CDS 78208 79506 . + 0 gene_id "W7K_09660"; transcript_id "KOE99468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99468"; +contig29 ena start_codon 78208 78210 . + 0 gene_id "W7K_09660"; transcript_id "KOE99468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 79507 79509 . + 0 gene_id "W7K_09660"; transcript_id "KOE99468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 79620 79943 . + . gene_id "W7K_09665"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 79620 79943 . + . gene_id "W7K_09665"; transcript_id "KOE99469"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 79620 79943 . + . gene_id "W7K_09665"; transcript_id "KOE99469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99469-1"; +contig29 ena CDS 79620 79940 . + 0 gene_id "W7K_09665"; transcript_id "KOE99469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99469"; +contig29 ena start_codon 79620 79622 . + 0 gene_id "W7K_09665"; transcript_id "KOE99469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 79941 79943 . + 0 gene_id "W7K_09665"; transcript_id "KOE99469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 80051 80506 . - . gene_id "W7K_09670"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 80051 80506 . - . gene_id "W7K_09670"; transcript_id "KOE99470"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 80051 80506 . - . gene_id "W7K_09670"; transcript_id "KOE99470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99470-1"; +contig29 ena CDS 80054 80506 . - 0 gene_id "W7K_09670"; transcript_id "KOE99470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99470"; +contig29 ena start_codon 80504 80506 . - 0 gene_id "W7K_09670"; transcript_id "KOE99470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 80051 80053 . - 0 gene_id "W7K_09670"; transcript_id "KOE99470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 80677 81843 . + . gene_id "W7K_09675"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 80677 81843 . + . gene_id "W7K_09675"; transcript_id "KOE99471"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 80677 81843 . + . gene_id "W7K_09675"; transcript_id "KOE99471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99471-1"; +contig29 ena CDS 80677 81840 . + 0 gene_id "W7K_09675"; transcript_id "KOE99471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99471"; +contig29 ena start_codon 80677 80679 . + 0 gene_id "W7K_09675"; transcript_id "KOE99471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 81841 81843 . + 0 gene_id "W7K_09675"; transcript_id "KOE99471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 81890 82432 . - . gene_id "W7K_09680"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 81890 82432 . - . gene_id "W7K_09680"; transcript_id "KOE99472"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 81890 82432 . - . gene_id "W7K_09680"; transcript_id "KOE99472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99472-1"; +contig29 ena CDS 81893 82432 . - 0 gene_id "W7K_09680"; transcript_id "KOE99472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99472"; +contig29 ena start_codon 82430 82432 . - 0 gene_id "W7K_09680"; transcript_id "KOE99472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 81890 81892 . - 0 gene_id "W7K_09680"; transcript_id "KOE99472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 82564 84738 . - . gene_id "W7K_09685"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 82564 84738 . - . gene_id "W7K_09685"; transcript_id "KOE99473"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 82564 84738 . - . gene_id "W7K_09685"; transcript_id "KOE99473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99473-1"; +contig29 ena CDS 82567 84738 . - 0 gene_id "W7K_09685"; transcript_id "KOE99473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99473"; +contig29 ena start_codon 84736 84738 . - 0 gene_id "W7K_09685"; transcript_id "KOE99473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 82564 82566 . - 0 gene_id "W7K_09685"; transcript_id "KOE99473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 84867 86138 . - . gene_id "W7K_09690"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 84867 86138 . - . gene_id "W7K_09690"; transcript_id "KOE99474"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 84867 86138 . - . gene_id "W7K_09690"; transcript_id "KOE99474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99474-1"; +contig29 ena CDS 84870 86138 . - 0 gene_id "W7K_09690"; transcript_id "KOE99474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99474"; +contig29 ena start_codon 86136 86138 . - 0 gene_id "W7K_09690"; transcript_id "KOE99474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 84867 84869 . - 0 gene_id "W7K_09690"; transcript_id "KOE99474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 86198 86551 . - . gene_id "W7K_09695"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 86198 86551 . - . gene_id "W7K_09695"; transcript_id "KOE99475"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 86198 86551 . - . gene_id "W7K_09695"; transcript_id "KOE99475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99475-1"; +contig29 ena CDS 86201 86551 . - 0 gene_id "W7K_09695"; transcript_id "KOE99475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99475"; +contig29 ena start_codon 86549 86551 . - 0 gene_id "W7K_09695"; transcript_id "KOE99475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 86198 86200 . - 0 gene_id "W7K_09695"; transcript_id "KOE99475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 86910 87575 . + . gene_id "W7K_09700"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 86910 87575 . + . gene_id "W7K_09700"; transcript_id "KOE99476"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 86910 87575 . + . gene_id "W7K_09700"; transcript_id "KOE99476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99476-1"; +contig29 ena CDS 86910 87572 . + 0 gene_id "W7K_09700"; transcript_id "KOE99476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99476"; +contig29 ena start_codon 86910 86912 . + 0 gene_id "W7K_09700"; transcript_id "KOE99476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 87573 87575 . + 0 gene_id "W7K_09700"; transcript_id "KOE99476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 87609 88634 . - . gene_id "W7K_09705"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 87609 88634 . - . gene_id "W7K_09705"; transcript_id "KOE99477"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 87609 88634 . - . gene_id "W7K_09705"; transcript_id "KOE99477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99477-1"; +contig29 ena CDS 87612 88634 . - 0 gene_id "W7K_09705"; transcript_id "KOE99477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99477"; +contig29 ena start_codon 88632 88634 . - 0 gene_id "W7K_09705"; transcript_id "KOE99477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 87609 87611 . - 0 gene_id "W7K_09705"; transcript_id "KOE99477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 88801 89016 . + . gene_id "W7K_09710"; gene_name "rpsU"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 88801 89016 . + . gene_id "W7K_09710"; transcript_id "KOE99478"; gene_name "rpsU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 88801 89016 . + . gene_id "W7K_09710"; transcript_id "KOE99478"; exon_number "1"; gene_name "rpsU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99478-1"; +contig29 ena CDS 88801 89013 . + 0 gene_id "W7K_09710"; transcript_id "KOE99478"; exon_number "1"; gene_name "rpsU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99478"; +contig29 ena start_codon 88801 88803 . + 0 gene_id "W7K_09710"; transcript_id "KOE99478"; exon_number "1"; gene_name "rpsU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 89014 89016 . + 0 gene_id "W7K_09710"; transcript_id "KOE99478"; exon_number "1"; gene_name "rpsU"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpsU-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 89150 89593 . + . gene_id "W7K_09715"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 89150 89593 . + . gene_id "W7K_09715"; transcript_id "KOE99479"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 89150 89593 . + . gene_id "W7K_09715"; transcript_id "KOE99479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99479-1"; +contig29 ena CDS 89150 89590 . + 0 gene_id "W7K_09715"; transcript_id "KOE99479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99479"; +contig29 ena start_codon 89150 89152 . + 0 gene_id "W7K_09715"; transcript_id "KOE99479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 89591 89593 . + 0 gene_id "W7K_09715"; transcript_id "KOE99479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 89697 90641 . + . gene_id "W7K_09720"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 89697 90641 . + . gene_id "W7K_09720"; transcript_id "KOE99480"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 89697 90641 . + . gene_id "W7K_09720"; transcript_id "KOE99480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99480-1"; +contig29 ena CDS 89697 90638 . + 0 gene_id "W7K_09720"; transcript_id "KOE99480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99480"; +contig29 ena start_codon 89697 89699 . + 0 gene_id "W7K_09720"; transcript_id "KOE99480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 90639 90641 . + 0 gene_id "W7K_09720"; transcript_id "KOE99480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 90702 92444 . + . gene_id "W7K_09725"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 90702 92444 . + . gene_id "W7K_09725"; transcript_id "KOE99481"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 90702 92444 . + . gene_id "W7K_09725"; transcript_id "KOE99481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99481-1"; +contig29 ena CDS 90702 92441 . + 0 gene_id "W7K_09725"; transcript_id "KOE99481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99481"; +contig29 ena start_codon 90702 90704 . + 0 gene_id "W7K_09725"; transcript_id "KOE99481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 92442 92444 . + 0 gene_id "W7K_09725"; transcript_id "KOE99481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 92473 92973 . + . gene_id "W7K_09730"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 92473 92973 . + . gene_id "W7K_09730"; transcript_id "KOE99482"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 92473 92973 . + . gene_id "W7K_09730"; transcript_id "KOE99482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99482-1"; +contig29 ena CDS 92473 92970 . + 0 gene_id "W7K_09730"; transcript_id "KOE99482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99482"; +contig29 ena start_codon 92473 92475 . + 0 gene_id "W7K_09730"; transcript_id "KOE99482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 92971 92973 . + 0 gene_id "W7K_09730"; transcript_id "KOE99482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 93002 93973 . + . gene_id "W7K_09735"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 93002 93973 . + . gene_id "W7K_09735"; transcript_id "KOE99483"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 93002 93973 . + . gene_id "W7K_09735"; transcript_id "KOE99483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99483-1"; +contig29 ena CDS 93002 93970 . + 0 gene_id "W7K_09735"; transcript_id "KOE99483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99483"; +contig29 ena start_codon 93002 93004 . + 0 gene_id "W7K_09735"; transcript_id "KOE99483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 93971 93973 . + 0 gene_id "W7K_09735"; transcript_id "KOE99483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 95074 95967 . - . gene_id "W7K_09745"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 95074 95967 . - . gene_id "W7K_09745"; transcript_id "KOE99484"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 95074 95967 . - . gene_id "W7K_09745"; transcript_id "KOE99484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99484-1"; +contig29 ena CDS 95077 95967 . - 0 gene_id "W7K_09745"; transcript_id "KOE99484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99484"; +contig29 ena start_codon 95965 95967 . - 0 gene_id "W7K_09745"; transcript_id "KOE99484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 95074 95076 . - 0 gene_id "W7K_09745"; transcript_id "KOE99484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 95972 97135 . - . gene_id "W7K_09750"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 95972 97135 . - . gene_id "W7K_09750"; transcript_id "KOE99485"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 95972 97135 . - . gene_id "W7K_09750"; transcript_id "KOE99485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99485-1"; +contig29 ena CDS 95975 97135 . - 0 gene_id "W7K_09750"; transcript_id "KOE99485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99485"; +contig29 ena start_codon 97133 97135 . - 0 gene_id "W7K_09750"; transcript_id "KOE99485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 95972 95974 . - 0 gene_id "W7K_09750"; transcript_id "KOE99485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 97146 97715 . - . gene_id "W7K_09755"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 97146 97715 . - . gene_id "W7K_09755"; transcript_id "KOE99486"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 97146 97715 . - . gene_id "W7K_09755"; transcript_id "KOE99486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99486-1"; +contig29 ena CDS 97149 97715 . - 0 gene_id "W7K_09755"; transcript_id "KOE99486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99486"; +contig29 ena start_codon 97713 97715 . - 0 gene_id "W7K_09755"; transcript_id "KOE99486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 97146 97148 . - 0 gene_id "W7K_09755"; transcript_id "KOE99486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 97729 98466 . - . gene_id "W7K_09760"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 97729 98466 . - . gene_id "W7K_09760"; transcript_id "KOE99487"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 97729 98466 . - . gene_id "W7K_09760"; transcript_id "KOE99487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99487-1"; +contig29 ena CDS 97732 98466 . - 0 gene_id "W7K_09760"; transcript_id "KOE99487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99487"; +contig29 ena start_codon 98464 98466 . - 0 gene_id "W7K_09760"; transcript_id "KOE99487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 97729 97731 . - 0 gene_id "W7K_09760"; transcript_id "KOE99487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 98524 98742 . + . gene_id "W7K_09765"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 98524 98742 . + . gene_id "W7K_09765"; transcript_id "KOE99488"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 98524 98742 . + . gene_id "W7K_09765"; transcript_id "KOE99488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99488-1"; +contig29 ena CDS 98524 98739 . + 0 gene_id "W7K_09765"; transcript_id "KOE99488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99488"; +contig29 ena start_codon 98524 98526 . + 0 gene_id "W7K_09765"; transcript_id "KOE99488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 98740 98742 . + 0 gene_id "W7K_09765"; transcript_id "KOE99488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 98763 99638 . - . gene_id "W7K_09770"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 98763 99638 . - . gene_id "W7K_09770"; transcript_id "KOE99489"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 98763 99638 . - . gene_id "W7K_09770"; transcript_id "KOE99489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99489-1"; +contig29 ena CDS 98766 99638 . - 0 gene_id "W7K_09770"; transcript_id "KOE99489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99489"; +contig29 ena start_codon 99636 99638 . - 0 gene_id "W7K_09770"; transcript_id "KOE99489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 98763 98765 . - 0 gene_id "W7K_09770"; transcript_id "KOE99489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 99652 100242 . - . gene_id "W7K_09775"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 99652 100242 . - . gene_id "W7K_09775"; transcript_id "KOE99490"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 99652 100242 . - . gene_id "W7K_09775"; transcript_id "KOE99490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99490-1"; +contig29 ena CDS 99655 100242 . - 0 gene_id "W7K_09775"; transcript_id "KOE99490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99490"; +contig29 ena start_codon 100240 100242 . - 0 gene_id "W7K_09775"; transcript_id "KOE99490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 99652 99654 . - 0 gene_id "W7K_09775"; transcript_id "KOE99490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 100239 100457 . - . gene_id "W7K_09780"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 100239 100457 . - . gene_id "W7K_09780"; transcript_id "KOE99491"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 100239 100457 . - . gene_id "W7K_09780"; transcript_id "KOE99491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99491-1"; +contig29 ena CDS 100242 100457 . - 0 gene_id "W7K_09780"; transcript_id "KOE99491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99491"; +contig29 ena start_codon 100455 100457 . - 0 gene_id "W7K_09780"; transcript_id "KOE99491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 100239 100241 . - 0 gene_id "W7K_09780"; transcript_id "KOE99491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 100466 102073 . - . gene_id "W7K_09785"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 100466 102073 . - . gene_id "W7K_09785"; transcript_id "KOE99492"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 100466 102073 . - . gene_id "W7K_09785"; transcript_id "KOE99492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99492-1"; +contig29 ena CDS 100469 102073 . - 0 gene_id "W7K_09785"; transcript_id "KOE99492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99492"; +contig29 ena start_codon 102071 102073 . - 0 gene_id "W7K_09785"; transcript_id "KOE99492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 100466 100468 . - 0 gene_id "W7K_09785"; transcript_id "KOE99492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 102133 103089 . - . gene_id "W7K_09790"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 102133 103089 . - . gene_id "W7K_09790"; transcript_id "KOE99493"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 102133 103089 . - . gene_id "W7K_09790"; transcript_id "KOE99493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99493-1"; +contig29 ena CDS 102136 103089 . - 0 gene_id "W7K_09790"; transcript_id "KOE99493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99493"; +contig29 ena start_codon 103087 103089 . - 0 gene_id "W7K_09790"; transcript_id "KOE99493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 102133 102135 . - 0 gene_id "W7K_09790"; transcript_id "KOE99493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 103101 103577 . - . gene_id "W7K_09795"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 103101 103577 . - . gene_id "W7K_09795"; transcript_id "KOE99494"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 103101 103577 . - . gene_id "W7K_09795"; transcript_id "KOE99494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99494-1"; +contig29 ena CDS 103104 103577 . - 0 gene_id "W7K_09795"; transcript_id "KOE99494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99494"; +contig29 ena start_codon 103575 103577 . - 0 gene_id "W7K_09795"; transcript_id "KOE99494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 103101 103103 . - 0 gene_id "W7K_09795"; transcript_id "KOE99494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 103852 107070 . + . gene_id "W7K_09800"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 103852 107070 . + . gene_id "W7K_09800"; transcript_id "KOE99495"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 103852 107070 . + . gene_id "W7K_09800"; transcript_id "KOE99495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99495-1"; +contig29 ena CDS 103852 107067 . + 0 gene_id "W7K_09800"; transcript_id "KOE99495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99495"; +contig29 ena start_codon 103852 103854 . + 0 gene_id "W7K_09800"; transcript_id "KOE99495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 107068 107070 . + 0 gene_id "W7K_09800"; transcript_id "KOE99495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 107189 107761 . - . gene_id "W7K_09805"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 107189 107761 . - . gene_id "W7K_09805"; transcript_id "KOE99496"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 107189 107761 . - . gene_id "W7K_09805"; transcript_id "KOE99496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99496-1"; +contig29 ena CDS 107192 107761 . - 0 gene_id "W7K_09805"; transcript_id "KOE99496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99496"; +contig29 ena start_codon 107759 107761 . - 0 gene_id "W7K_09805"; transcript_id "KOE99496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 107189 107191 . - 0 gene_id "W7K_09805"; transcript_id "KOE99496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 107874 109223 . - . gene_id "W7K_09810"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 107874 109223 . - . gene_id "W7K_09810"; transcript_id "KOE99497"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 107874 109223 . - . gene_id "W7K_09810"; transcript_id "KOE99497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99497-1"; +contig29 ena CDS 107877 109223 . - 0 gene_id "W7K_09810"; transcript_id "KOE99497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99497"; +contig29 ena start_codon 109221 109223 . - 0 gene_id "W7K_09810"; transcript_id "KOE99497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 107874 107876 . - 0 gene_id "W7K_09810"; transcript_id "KOE99497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 109452 110144 . + . gene_id "W7K_09815"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 109452 110144 . + . gene_id "W7K_09815"; transcript_id "KOE99498"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 109452 110144 . + . gene_id "W7K_09815"; transcript_id "KOE99498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99498-1"; +contig29 ena CDS 109452 110141 . + 0 gene_id "W7K_09815"; transcript_id "KOE99498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99498"; +contig29 ena start_codon 109452 109454 . + 0 gene_id "W7K_09815"; transcript_id "KOE99498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 110142 110144 . + 0 gene_id "W7K_09815"; transcript_id "KOE99498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 110248 111741 . - . gene_id "W7K_09820"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 110248 111741 . - . gene_id "W7K_09820"; transcript_id "KOE99499"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 110248 111741 . - . gene_id "W7K_09820"; transcript_id "KOE99499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99499-1"; +contig29 ena CDS 110251 111741 . - 0 gene_id "W7K_09820"; transcript_id "KOE99499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99499"; +contig29 ena start_codon 111739 111741 . - 0 gene_id "W7K_09820"; transcript_id "KOE99499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 110248 110250 . - 0 gene_id "W7K_09820"; transcript_id "KOE99499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 111850 113148 . - . gene_id "W7K_09825"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 111850 113148 . - . gene_id "W7K_09825"; transcript_id "KOE99500"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 111850 113148 . - . gene_id "W7K_09825"; transcript_id "KOE99500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99500-1"; +contig29 ena CDS 111853 113148 . - 0 gene_id "W7K_09825"; transcript_id "KOE99500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99500"; +contig29 ena start_codon 113146 113148 . - 0 gene_id "W7K_09825"; transcript_id "KOE99500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 111850 111852 . - 0 gene_id "W7K_09825"; transcript_id "KOE99500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 113244 113906 . + . gene_id "W7K_09830"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 113244 113906 . + . gene_id "W7K_09830"; transcript_id "KOE99501"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 113244 113906 . + . gene_id "W7K_09830"; transcript_id "KOE99501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99501-1"; +contig29 ena CDS 113244 113903 . + 0 gene_id "W7K_09830"; transcript_id "KOE99501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99501"; +contig29 ena start_codon 113244 113246 . + 0 gene_id "W7K_09830"; transcript_id "KOE99501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 113904 113906 . + 0 gene_id "W7K_09830"; transcript_id "KOE99501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 113993 115702 . + . gene_id "W7K_09835"; gene_source "ena"; gene_biotype "protein_coding"; +contig29 ena transcript 113993 115702 . + . gene_id "W7K_09835"; transcript_id "KOE99502"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena exon 113993 115702 . + . gene_id "W7K_09835"; transcript_id "KOE99502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99502-1"; +contig29 ena CDS 113993 115699 . + 0 gene_id "W7K_09835"; transcript_id "KOE99502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99502"; +contig29 ena start_codon 113993 113995 . + 0 gene_id "W7K_09835"; transcript_id "KOE99502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena stop_codon 115700 115702 . + 0 gene_id "W7K_09835"; transcript_id "KOE99502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig29 ena gene 115983 116097 . - . gene_id "W7K_09840"; gene_source "ena"; gene_biotype "rRNA"; +contig29 ena transcript 115983 116097 . - . gene_id "W7K_09840"; transcript_id "EBT00051077637"; gene_source "ena"; gene_biotype "rRNA"; transcript_name "W7K_09840"; transcript_source "ena"; transcript_biotype "rRNA"; +contig29 ena exon 115983 116097 . - . gene_id "W7K_09840"; transcript_id "EBT00051077637"; exon_number "1"; gene_source "ena"; gene_biotype "rRNA"; transcript_name "W7K_09840"; transcript_source "ena"; transcript_biotype "rRNA"; exon_id "W7K_09840-1"; +contig11 ena gene 1 358 . - . gene_id "W7K_17040"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 1 358 . - . gene_id "W7K_17040"; transcript_id "KOE97885"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 1 358 . - . gene_id "W7K_17040"; transcript_id "KOE97885"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97885-1"; +contig11 ena CDS 1 358 . - 0 gene_id "W7K_17040"; transcript_id "KOE97885"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97885"; +contig11 ena start_codon 356 358 . - 0 gene_id "W7K_17040"; transcript_id "KOE97885"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 400 475 . - . gene_id "W7K_17045"; gene_source "ena"; gene_biotype "tRNA"; +contig11 ena transcript 400 475 . - . gene_id "W7K_17045"; transcript_id "EBT00051077613"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17045"; transcript_source "ena"; transcript_biotype "tRNA"; +contig11 ena exon 400 475 . - . gene_id "W7K_17045"; transcript_id "EBT00051077613"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17045"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_17045-1"; +contig11 ena gene 525 598 . - . gene_id "W7K_17050"; gene_source "ena"; gene_biotype "tRNA"; +contig11 ena transcript 525 598 . - . gene_id "W7K_17050"; transcript_id "EBT00051077614"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17050"; transcript_source "ena"; transcript_biotype "tRNA"; +contig11 ena exon 525 598 . - . gene_id "W7K_17050"; transcript_id "EBT00051077614"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17050"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_17050-1"; +contig11 ena gene 623 708 . - . gene_id "W7K_17055"; gene_source "ena"; gene_biotype "tRNA"; +contig11 ena transcript 623 708 . - . gene_id "W7K_17055"; transcript_id "EBT00051077611"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17055"; transcript_source "ena"; transcript_biotype "tRNA"; +contig11 ena exon 623 708 . - . gene_id "W7K_17055"; transcript_id "EBT00051077611"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17055"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_17055-1"; +contig11 ena gene 846 1862 . - . gene_id "W7K_17060"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 846 1862 . - . gene_id "W7K_17060"; transcript_id "KOE97886"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 846 1862 . - . gene_id "W7K_17060"; transcript_id "KOE97886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97886-1"; +contig11 ena CDS 849 1862 . - 0 gene_id "W7K_17060"; transcript_id "KOE97886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97886"; +contig11 ena start_codon 1860 1862 . - 0 gene_id "W7K_17060"; transcript_id "KOE97886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 846 848 . - 0 gene_id "W7K_17060"; transcript_id "KOE97886"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 2001 3020 . - . gene_id "W7K_17065"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 2001 3020 . - . gene_id "W7K_17065"; transcript_id "KOE97988"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 2001 3020 . - . gene_id "W7K_17065"; transcript_id "KOE97988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97988-1"; +contig11 ena CDS 2004 3020 . - 0 gene_id "W7K_17065"; transcript_id "KOE97988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97988"; +contig11 ena start_codon 3018 3020 . - 0 gene_id "W7K_17065"; transcript_id "KOE97988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 2001 2003 . - 0 gene_id "W7K_17065"; transcript_id "KOE97988"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 3191 5929 . + . gene_id "W7K_17070"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 3191 5929 . + . gene_id "W7K_17070"; transcript_id "KOE97887"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 3191 5929 . + . gene_id "W7K_17070"; transcript_id "KOE97887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97887-1"; +contig11 ena CDS 3191 5926 . + 0 gene_id "W7K_17070"; transcript_id "KOE97887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97887"; +contig11 ena start_codon 3191 3193 . + 0 gene_id "W7K_17070"; transcript_id "KOE97887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 5927 5929 . + 0 gene_id "W7K_17070"; transcript_id "KOE97887"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 6561 7652 . - . gene_id "W7K_17075"; gene_name "ychF"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 6561 7652 . - . gene_id "W7K_17075"; transcript_id "KOE97888"; gene_name "ychF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ychF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 6561 7652 . - . gene_id "W7K_17075"; transcript_id "KOE97888"; exon_number "1"; gene_name "ychF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ychF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97888-1"; +contig11 ena CDS 6564 7652 . - 0 gene_id "W7K_17075"; transcript_id "KOE97888"; exon_number "1"; gene_name "ychF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ychF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97888"; +contig11 ena start_codon 7650 7652 . - 0 gene_id "W7K_17075"; transcript_id "KOE97888"; exon_number "1"; gene_name "ychF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ychF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 6561 6563 . - 0 gene_id "W7K_17075"; transcript_id "KOE97888"; exon_number "1"; gene_name "ychF"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ychF-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 7751 8371 . - . gene_id "W7K_17080"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 7751 8371 . - . gene_id "W7K_17080"; transcript_id "KOE97889"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 7751 8371 . - . gene_id "W7K_17080"; transcript_id "KOE97889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97889-1"; +contig11 ena CDS 7754 8371 . - 0 gene_id "W7K_17080"; transcript_id "KOE97889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97889"; +contig11 ena start_codon 8369 8371 . - 0 gene_id "W7K_17080"; transcript_id "KOE97889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 7751 7753 . - 0 gene_id "W7K_17080"; transcript_id "KOE97889"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 8374 8952 . - . gene_id "W7K_17085"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 8374 8952 . - . gene_id "W7K_17085"; transcript_id "KOE97890"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 8374 8952 . - . gene_id "W7K_17085"; transcript_id "KOE97890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97890-1"; +contig11 ena CDS 8377 8952 . - 0 gene_id "W7K_17085"; transcript_id "KOE97890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97890"; +contig11 ena start_codon 8950 8952 . - 0 gene_id "W7K_17085"; transcript_id "KOE97890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 8374 8376 . - 0 gene_id "W7K_17085"; transcript_id "KOE97890"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 9001 9618 . - . gene_id "W7K_17090"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 9001 9618 . - . gene_id "W7K_17090"; transcript_id "KOE97891"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 9001 9618 . - . gene_id "W7K_17090"; transcript_id "KOE97891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97891-1"; +contig11 ena CDS 9004 9618 . - 0 gene_id "W7K_17090"; transcript_id "KOE97891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97891"; +contig11 ena start_codon 9616 9618 . - 0 gene_id "W7K_17090"; transcript_id "KOE97891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 9001 9003 . - 0 gene_id "W7K_17090"; transcript_id "KOE97891"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 9729 10688 . - . gene_id "W7K_17095"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 9729 10688 . - . gene_id "W7K_17095"; transcript_id "KOE97989"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 9729 10688 . - . gene_id "W7K_17095"; transcript_id "KOE97989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97989-1"; +contig11 ena CDS 9732 10688 . - 0 gene_id "W7K_17095"; transcript_id "KOE97989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97989"; +contig11 ena start_codon 10686 10688 . - 0 gene_id "W7K_17095"; transcript_id "KOE97989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 9729 9731 . - 0 gene_id "W7K_17095"; transcript_id "KOE97989"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 10829 10905 . - . gene_id "W7K_17100"; gene_source "ena"; gene_biotype "tRNA"; +contig11 ena transcript 10829 10905 . - . gene_id "W7K_17100"; transcript_id "EBT00051077612"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17100"; transcript_source "ena"; transcript_biotype "tRNA"; +contig11 ena exon 10829 10905 . - . gene_id "W7K_17100"; transcript_id "EBT00051077612"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_17100"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_17100-1"; +contig11 ena gene 10917 11786 . - . gene_id "W7K_17105"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 10917 11786 . - . gene_id "W7K_17105"; transcript_id "KOE97892"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 10917 11786 . - . gene_id "W7K_17105"; transcript_id "KOE97892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97892-1"; +contig11 ena CDS 10920 11786 . - 0 gene_id "W7K_17105"; transcript_id "KOE97892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97892"; +contig11 ena start_codon 11784 11786 . - 0 gene_id "W7K_17105"; transcript_id "KOE97892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 10917 10919 . - 0 gene_id "W7K_17105"; transcript_id "KOE97892"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 11783 12442 . - . gene_id "W7K_17110"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 11783 12442 . - . gene_id "W7K_17110"; transcript_id "KOE97893"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 11783 12442 . - . gene_id "W7K_17110"; transcript_id "KOE97893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97893-1"; +contig11 ena CDS 11786 12442 . - 0 gene_id "W7K_17110"; transcript_id "KOE97893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97893"; +contig11 ena start_codon 12440 12442 . - 0 gene_id "W7K_17110"; transcript_id "KOE97893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 11783 11785 . - 0 gene_id "W7K_17110"; transcript_id "KOE97893"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 12439 14133 . - . gene_id "W7K_17115"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 12439 14133 . - . gene_id "W7K_17115"; transcript_id "KOE97894"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 12439 14133 . - . gene_id "W7K_17115"; transcript_id "KOE97894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97894-1"; +contig11 ena CDS 12442 14133 . - 0 gene_id "W7K_17115"; transcript_id "KOE97894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97894"; +contig11 ena start_codon 14131 14133 . - 0 gene_id "W7K_17115"; transcript_id "KOE97894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 12439 12441 . - 0 gene_id "W7K_17115"; transcript_id "KOE97894"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 14188 15471 . + . gene_id "W7K_17120"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 14188 15471 . + . gene_id "W7K_17120"; transcript_id "KOE97895"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 14188 15471 . + . gene_id "W7K_17120"; transcript_id "KOE97895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97895-1"; +contig11 ena CDS 14188 15468 . + 0 gene_id "W7K_17120"; transcript_id "KOE97895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97895"; +contig11 ena start_codon 14188 14190 . + 0 gene_id "W7K_17120"; transcript_id "KOE97895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 15469 15471 . + 0 gene_id "W7K_17120"; transcript_id "KOE97895"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 15449 16531 . + . gene_id "W7K_17125"; gene_name "prfA"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 15449 16531 . + . gene_id "W7K_17125"; transcript_id "KOE97896"; gene_name "prfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 15449 16531 . + . gene_id "W7K_17125"; transcript_id "KOE97896"; exon_number "1"; gene_name "prfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97896-1"; +contig11 ena CDS 15449 16528 . + 0 gene_id "W7K_17125"; transcript_id "KOE97896"; exon_number "1"; gene_name "prfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97896"; +contig11 ena start_codon 15449 15451 . + 0 gene_id "W7K_17125"; transcript_id "KOE97896"; exon_number "1"; gene_name "prfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 16529 16531 . + 0 gene_id "W7K_17125"; transcript_id "KOE97896"; exon_number "1"; gene_name "prfA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "prfA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 16537 18243 . + . gene_id "W7K_17130"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 16537 18243 . + . gene_id "W7K_17130"; transcript_id "KOE97897"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 16537 18243 . + . gene_id "W7K_17130"; transcript_id "KOE97897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97897-1"; +contig11 ena CDS 16537 18240 . + 0 gene_id "W7K_17130"; transcript_id "KOE97897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97897"; +contig11 ena start_codon 16537 16539 . + 0 gene_id "W7K_17130"; transcript_id "KOE97897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 18241 18243 . + 0 gene_id "W7K_17130"; transcript_id "KOE97897"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 18290 19072 . + . gene_id "W7K_17135"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 18290 19072 . + . gene_id "W7K_17135"; transcript_id "KOE97898"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 18290 19072 . + . gene_id "W7K_17135"; transcript_id "KOE97898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97898-1"; +contig11 ena CDS 18290 19069 . + 0 gene_id "W7K_17135"; transcript_id "KOE97898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97898"; +contig11 ena start_codon 18290 18292 . + 0 gene_id "W7K_17135"; transcript_id "KOE97898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 19070 19072 . + 0 gene_id "W7K_17135"; transcript_id "KOE97898"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 19639 20208 . - . gene_id "W7K_17140"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 19639 20208 . - . gene_id "W7K_17140"; transcript_id "KOE97899"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 19639 20208 . - . gene_id "W7K_17140"; transcript_id "KOE97899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97899-1"; +contig11 ena CDS 19642 20208 . - 0 gene_id "W7K_17140"; transcript_id "KOE97899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97899"; +contig11 ena start_codon 20206 20208 . - 0 gene_id "W7K_17140"; transcript_id "KOE97899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 19639 19641 . - 0 gene_id "W7K_17140"; transcript_id "KOE97899"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 20205 21479 . - . gene_id "W7K_17145"; gene_name "rbn"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 20205 21479 . - . gene_id "W7K_17145"; transcript_id "KOE97900"; gene_name "rbn"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rbn-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 20205 21479 . - . gene_id "W7K_17145"; transcript_id "KOE97900"; exon_number "1"; gene_name "rbn"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rbn-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97900-1"; +contig11 ena CDS 20208 21479 . - 0 gene_id "W7K_17145"; transcript_id "KOE97900"; exon_number "1"; gene_name "rbn"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rbn-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97900"; +contig11 ena start_codon 21477 21479 . - 0 gene_id "W7K_17145"; transcript_id "KOE97900"; exon_number "1"; gene_name "rbn"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rbn-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 20205 20207 . - 0 gene_id "W7K_17145"; transcript_id "KOE97900"; exon_number "1"; gene_name "rbn"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rbn-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 21557 22150 . + . gene_id "W7K_17150"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 21557 22150 . + . gene_id "W7K_17150"; transcript_id "KOE97901"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 21557 22150 . + . gene_id "W7K_17150"; transcript_id "KOE97901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97901-1"; +contig11 ena CDS 21557 22147 . + 0 gene_id "W7K_17150"; transcript_id "KOE97901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97901"; +contig11 ena start_codon 21557 21559 . + 0 gene_id "W7K_17150"; transcript_id "KOE97901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 22148 22150 . + 0 gene_id "W7K_17150"; transcript_id "KOE97901"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 22147 22482 . + . gene_id "W7K_17155"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 22147 22482 . + . gene_id "W7K_17155"; transcript_id "KOE97902"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 22147 22482 . + . gene_id "W7K_17155"; transcript_id "KOE97902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97902-1"; +contig11 ena CDS 22147 22479 . + 0 gene_id "W7K_17155"; transcript_id "KOE97902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97902"; +contig11 ena start_codon 22147 22149 . + 0 gene_id "W7K_17155"; transcript_id "KOE97902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 22480 22482 . + 0 gene_id "W7K_17155"; transcript_id "KOE97902"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 22562 23047 . + . gene_id "W7K_17160"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 22562 23047 . + . gene_id "W7K_17160"; transcript_id "KOE97990"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 22562 23047 . + . gene_id "W7K_17160"; transcript_id "KOE97990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97990-1"; +contig11 ena CDS 22562 23044 . + 0 gene_id "W7K_17160"; transcript_id "KOE97990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97990"; +contig11 ena start_codon 22562 22564 . + 0 gene_id "W7K_17160"; transcript_id "KOE97990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 23045 23047 . + 0 gene_id "W7K_17160"; transcript_id "KOE97990"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 23168 24907 . - . gene_id "W7K_17165"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 23168 24907 . - . gene_id "W7K_17165"; transcript_id "KOE97903"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 23168 24907 . - . gene_id "W7K_17165"; transcript_id "KOE97903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97903-1"; +contig11 ena CDS 23171 24907 . - 0 gene_id "W7K_17165"; transcript_id "KOE97903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97903"; +contig11 ena start_codon 24905 24907 . - 0 gene_id "W7K_17165"; transcript_id "KOE97903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 23168 23170 . - 0 gene_id "W7K_17165"; transcript_id "KOE97903"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 25273 26295 . - . gene_id "W7K_17170"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 25273 26295 . - . gene_id "W7K_17170"; transcript_id "KOE97904"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 25273 26295 . - . gene_id "W7K_17170"; transcript_id "KOE97904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97904-1"; +contig11 ena CDS 25276 26295 . - 0 gene_id "W7K_17170"; transcript_id "KOE97904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97904"; +contig11 ena start_codon 26293 26295 . - 0 gene_id "W7K_17170"; transcript_id "KOE97904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 25273 25275 . - 0 gene_id "W7K_17170"; transcript_id "KOE97904"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 26297 26632 . - . gene_id "W7K_17175"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 26297 26632 . - . gene_id "W7K_17175"; transcript_id "KOE97905"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 26297 26632 . - . gene_id "W7K_17175"; transcript_id "KOE97905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97905-1"; +contig11 ena CDS 26300 26632 . - 0 gene_id "W7K_17175"; transcript_id "KOE97905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97905"; +contig11 ena start_codon 26630 26632 . - 0 gene_id "W7K_17175"; transcript_id "KOE97905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 26297 26299 . - 0 gene_id "W7K_17175"; transcript_id "KOE97905"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 26629 27285 . - . gene_id "W7K_17180"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 26629 27285 . - . gene_id "W7K_17180"; transcript_id "KOE97906"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 26629 27285 . - . gene_id "W7K_17180"; transcript_id "KOE97906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97906-1"; +contig11 ena CDS 26632 27285 . - 0 gene_id "W7K_17180"; transcript_id "KOE97906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97906"; +contig11 ena start_codon 27283 27285 . - 0 gene_id "W7K_17180"; transcript_id "KOE97906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 26629 26631 . - 0 gene_id "W7K_17180"; transcript_id "KOE97906"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 27460 28554 . - . gene_id "W7K_17185"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 27460 28554 . - . gene_id "W7K_17185"; transcript_id "KOE97907"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 27460 28554 . - . gene_id "W7K_17185"; transcript_id "KOE97907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97907-1"; +contig11 ena CDS 27463 28554 . - 0 gene_id "W7K_17185"; transcript_id "KOE97907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97907"; +contig11 ena start_codon 28552 28554 . - 0 gene_id "W7K_17185"; transcript_id "KOE97907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 27460 27462 . - 0 gene_id "W7K_17185"; transcript_id "KOE97907"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 28614 29165 . - . gene_id "W7K_17190"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 28614 29165 . - . gene_id "W7K_17190"; transcript_id "KOE97908"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 28614 29165 . - . gene_id "W7K_17190"; transcript_id "KOE97908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97908-1"; +contig11 ena CDS 28617 29165 . - 0 gene_id "W7K_17190"; transcript_id "KOE97908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97908"; +contig11 ena start_codon 29163 29165 . - 0 gene_id "W7K_17190"; transcript_id "KOE97908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 28614 28616 . - 0 gene_id "W7K_17190"; transcript_id "KOE97908"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 29288 29707 . + . gene_id "W7K_17195"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 29288 29707 . + . gene_id "W7K_17195"; transcript_id "KOE97909"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 29288 29707 . + . gene_id "W7K_17195"; transcript_id "KOE97909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97909-1"; +contig11 ena CDS 29288 29704 . + 0 gene_id "W7K_17195"; transcript_id "KOE97909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97909"; +contig11 ena start_codon 29288 29290 . + 0 gene_id "W7K_17195"; transcript_id "KOE97909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 29705 29707 . + 0 gene_id "W7K_17195"; transcript_id "KOE97909"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 29819 31279 . - . gene_id "W7K_17200"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 29819 31279 . - . gene_id "W7K_17200"; transcript_id "KOE97910"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 29819 31279 . - . gene_id "W7K_17200"; transcript_id "KOE97910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97910-1"; +contig11 ena CDS 29822 31279 . - 0 gene_id "W7K_17200"; transcript_id "KOE97910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97910"; +contig11 ena start_codon 31277 31279 . - 0 gene_id "W7K_17200"; transcript_id "KOE97910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 29819 29821 . - 0 gene_id "W7K_17200"; transcript_id "KOE97910"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 31276 31596 . - . gene_id "W7K_17205"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 31276 31596 . - . gene_id "W7K_17205"; transcript_id "KOE97911"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 31276 31596 . - . gene_id "W7K_17205"; transcript_id "KOE97911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97911-1"; +contig11 ena CDS 31279 31596 . - 0 gene_id "W7K_17205"; transcript_id "KOE97911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97911"; +contig11 ena start_codon 31594 31596 . - 0 gene_id "W7K_17205"; transcript_id "KOE97911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 31276 31278 . - 0 gene_id "W7K_17205"; transcript_id "KOE97911"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 31725 32279 . + . gene_id "W7K_17210"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 31725 32279 . + . gene_id "W7K_17210"; transcript_id "KOE97912"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 31725 32279 . + . gene_id "W7K_17210"; transcript_id "KOE97912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97912-1"; +contig11 ena CDS 31725 32276 . + 0 gene_id "W7K_17210"; transcript_id "KOE97912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97912"; +contig11 ena start_codon 31725 31727 . + 0 gene_id "W7K_17210"; transcript_id "KOE97912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 32277 32279 . + 0 gene_id "W7K_17210"; transcript_id "KOE97912"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 32276 32602 . + . gene_id "W7K_17215"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 32276 32602 . + . gene_id "W7K_17215"; transcript_id "KOE97913"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 32276 32602 . + . gene_id "W7K_17215"; transcript_id "KOE97913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97913-1"; +contig11 ena CDS 32276 32599 . + 0 gene_id "W7K_17215"; transcript_id "KOE97913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97913"; +contig11 ena start_codon 32276 32278 . + 0 gene_id "W7K_17215"; transcript_id "KOE97913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 32600 32602 . + 0 gene_id "W7K_17215"; transcript_id "KOE97913"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 32606 33058 . + . gene_id "W7K_17220"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 32606 33058 . + . gene_id "W7K_17220"; transcript_id "KOE97914"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 32606 33058 . + . gene_id "W7K_17220"; transcript_id "KOE97914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97914-1"; +contig11 ena CDS 32606 33055 . + 0 gene_id "W7K_17220"; transcript_id "KOE97914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97914"; +contig11 ena start_codon 32606 32608 . + 0 gene_id "W7K_17220"; transcript_id "KOE97914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 33056 33058 . + 0 gene_id "W7K_17220"; transcript_id "KOE97914"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 33144 34223 . - . gene_id "W7K_17225"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 33144 34223 . - . gene_id "W7K_17225"; transcript_id "KOE97915"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 33144 34223 . - . gene_id "W7K_17225"; transcript_id "KOE97915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97915-1"; +contig11 ena CDS 33147 34223 . - 0 gene_id "W7K_17225"; transcript_id "KOE97915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97915"; +contig11 ena start_codon 34221 34223 . - 0 gene_id "W7K_17225"; transcript_id "KOE97915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 33144 33146 . - 0 gene_id "W7K_17225"; transcript_id "KOE97915"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 34276 36597 . - . gene_id "W7K_17230"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 34276 36597 . - . gene_id "W7K_17230"; transcript_id "KOE97916"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 34276 36597 . - . gene_id "W7K_17230"; transcript_id "KOE97916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97916-1"; +contig11 ena CDS 34279 36597 . - 0 gene_id "W7K_17230"; transcript_id "KOE97916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97916"; +contig11 ena start_codon 36595 36597 . - 0 gene_id "W7K_17230"; transcript_id "KOE97916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 34276 34278 . - 0 gene_id "W7K_17230"; transcript_id "KOE97916"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 36929 37510 . + . gene_id "W7K_17235"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 36929 37510 . + . gene_id "W7K_17235"; transcript_id "KOE97991"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 36929 37510 . + . gene_id "W7K_17235"; transcript_id "KOE97991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97991-1"; +contig11 ena CDS 36929 37507 . + 0 gene_id "W7K_17235"; transcript_id "KOE97991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97991"; +contig11 ena start_codon 36929 36931 . + 0 gene_id "W7K_17235"; transcript_id "KOE97991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 37508 37510 . + 0 gene_id "W7K_17235"; transcript_id "KOE97991"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 37507 38442 . + . gene_id "W7K_17240"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 37507 38442 . + . gene_id "W7K_17240"; transcript_id "KOE97917"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 37507 38442 . + . gene_id "W7K_17240"; transcript_id "KOE97917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97917-1"; +contig11 ena CDS 37507 38439 . + 0 gene_id "W7K_17240"; transcript_id "KOE97917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97917"; +contig11 ena start_codon 37507 37509 . + 0 gene_id "W7K_17240"; transcript_id "KOE97917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 38440 38442 . + 0 gene_id "W7K_17240"; transcript_id "KOE97917"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 38439 38993 . + . gene_id "W7K_17245"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 38439 38993 . + . gene_id "W7K_17245"; transcript_id "KOE97918"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 38439 38993 . + . gene_id "W7K_17245"; transcript_id "KOE97918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97918-1"; +contig11 ena CDS 38439 38990 . + 0 gene_id "W7K_17245"; transcript_id "KOE97918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97918"; +contig11 ena start_codon 38439 38441 . + 0 gene_id "W7K_17245"; transcript_id "KOE97918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 38991 38993 . + 0 gene_id "W7K_17245"; transcript_id "KOE97918"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 38986 39783 . + . gene_id "W7K_17250"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 38986 39783 . + . gene_id "W7K_17250"; transcript_id "KOE97919"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 38986 39783 . + . gene_id "W7K_17250"; transcript_id "KOE97919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97919-1"; +contig11 ena CDS 38986 39780 . + 0 gene_id "W7K_17250"; transcript_id "KOE97919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97919"; +contig11 ena start_codon 38986 38988 . + 0 gene_id "W7K_17250"; transcript_id "KOE97919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 39781 39783 . + 0 gene_id "W7K_17250"; transcript_id "KOE97919"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 39880 40551 . - . gene_id "W7K_17255"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 39880 40551 . - . gene_id "W7K_17255"; transcript_id "KOE97920"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 39880 40551 . - . gene_id "W7K_17255"; transcript_id "KOE97920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97920-1"; +contig11 ena CDS 39883 40551 . - 0 gene_id "W7K_17255"; transcript_id "KOE97920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97920"; +contig11 ena start_codon 40549 40551 . - 0 gene_id "W7K_17255"; transcript_id "KOE97920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 39880 39882 . - 0 gene_id "W7K_17255"; transcript_id "KOE97920"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 40548 41966 . - . gene_id "W7K_17260"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 40548 41966 . - . gene_id "W7K_17260"; transcript_id "KOE97921"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 40548 41966 . - . gene_id "W7K_17260"; transcript_id "KOE97921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97921-1"; +contig11 ena CDS 40551 41966 . - 0 gene_id "W7K_17260"; transcript_id "KOE97921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97921"; +contig11 ena start_codon 41964 41966 . - 0 gene_id "W7K_17260"; transcript_id "KOE97921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 40548 40550 . - 0 gene_id "W7K_17260"; transcript_id "KOE97921"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 42074 42958 . + . gene_id "W7K_17265"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 42074 42958 . + . gene_id "W7K_17265"; transcript_id "KOE97992"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 42074 42958 . + . gene_id "W7K_17265"; transcript_id "KOE97992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97992-1"; +contig11 ena CDS 42074 42955 . + 0 gene_id "W7K_17265"; transcript_id "KOE97992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97992"; +contig11 ena start_codon 42074 42076 . + 0 gene_id "W7K_17265"; transcript_id "KOE97992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 42956 42958 . + 0 gene_id "W7K_17265"; transcript_id "KOE97992"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 43030 43971 . - . gene_id "W7K_17270"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 43030 43971 . - . gene_id "W7K_17270"; transcript_id "KOE97922"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 43030 43971 . - . gene_id "W7K_17270"; transcript_id "KOE97922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97922-1"; +contig11 ena CDS 43033 43971 . - 0 gene_id "W7K_17270"; transcript_id "KOE97922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97922"; +contig11 ena start_codon 43969 43971 . - 0 gene_id "W7K_17270"; transcript_id "KOE97922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 43030 43032 . - 0 gene_id "W7K_17270"; transcript_id "KOE97922"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 44020 44877 . - . gene_id "W7K_17275"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 44020 44877 . - . gene_id "W7K_17275"; transcript_id "KOE97923"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 44020 44877 . - . gene_id "W7K_17275"; transcript_id "KOE97923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97923-1"; +contig11 ena CDS 44023 44877 . - 0 gene_id "W7K_17275"; transcript_id "KOE97923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97923"; +contig11 ena start_codon 44875 44877 . - 0 gene_id "W7K_17275"; transcript_id "KOE97923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 44020 44022 . - 0 gene_id "W7K_17275"; transcript_id "KOE97923"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 45232 45795 . + . gene_id "W7K_17280"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 45232 45795 . + . gene_id "W7K_17280"; transcript_id "KOE97924"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 45232 45795 . + . gene_id "W7K_17280"; transcript_id "KOE97924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97924-1"; +contig11 ena CDS 45232 45792 . + 0 gene_id "W7K_17280"; transcript_id "KOE97924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97924"; +contig11 ena start_codon 45232 45234 . + 0 gene_id "W7K_17280"; transcript_id "KOE97924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 45793 45795 . + 0 gene_id "W7K_17280"; transcript_id "KOE97924"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 46021 47613 . + . gene_id "W7K_17285"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 46021 47613 . + . gene_id "W7K_17285"; transcript_id "KOE97925"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 46021 47613 . + . gene_id "W7K_17285"; transcript_id "KOE97925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97925-1"; +contig11 ena CDS 46021 47610 . + 0 gene_id "W7K_17285"; transcript_id "KOE97925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97925"; +contig11 ena start_codon 46021 46023 . + 0 gene_id "W7K_17285"; transcript_id "KOE97925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 47611 47613 . + 0 gene_id "W7K_17285"; transcript_id "KOE97925"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 47699 48661 . + . gene_id "W7K_17290"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 47699 48661 . + . gene_id "W7K_17290"; transcript_id "KOE97926"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 47699 48661 . + . gene_id "W7K_17290"; transcript_id "KOE97926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97926-1"; +contig11 ena CDS 47699 48658 . + 0 gene_id "W7K_17290"; transcript_id "KOE97926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97926"; +contig11 ena start_codon 47699 47701 . + 0 gene_id "W7K_17290"; transcript_id "KOE97926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 48659 48661 . + 0 gene_id "W7K_17290"; transcript_id "KOE97926"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 48785 49189 . + . gene_id "W7K_17295"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 48785 49189 . + . gene_id "W7K_17295"; transcript_id "KOE97927"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 48785 49189 . + . gene_id "W7K_17295"; transcript_id "KOE97927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97927-1"; +contig11 ena CDS 48785 49186 . + 0 gene_id "W7K_17295"; transcript_id "KOE97927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97927"; +contig11 ena start_codon 48785 48787 . + 0 gene_id "W7K_17295"; transcript_id "KOE97927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 49187 49189 . + 0 gene_id "W7K_17295"; transcript_id "KOE97927"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 49240 50196 . + . gene_id "W7K_17300"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 49240 50196 . + . gene_id "W7K_17300"; transcript_id "KOE97928"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 49240 50196 . + . gene_id "W7K_17300"; transcript_id "KOE97928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97928-1"; +contig11 ena CDS 49240 50193 . + 0 gene_id "W7K_17300"; transcript_id "KOE97928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97928"; +contig11 ena start_codon 49240 49242 . + 0 gene_id "W7K_17300"; transcript_id "KOE97928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 50194 50196 . + 0 gene_id "W7K_17300"; transcript_id "KOE97928"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 50852 51517 . - . gene_id "W7K_17305"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 50852 51517 . - . gene_id "W7K_17305"; transcript_id "KOE97993"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 50852 51517 . - . gene_id "W7K_17305"; transcript_id "KOE97993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97993-1"; +contig11 ena CDS 50855 51517 . - 0 gene_id "W7K_17305"; transcript_id "KOE97993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97993"; +contig11 ena start_codon 51515 51517 . - 0 gene_id "W7K_17305"; transcript_id "KOE97993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 50852 50854 . - 0 gene_id "W7K_17305"; transcript_id "KOE97993"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 51548 51811 . - . gene_id "W7K_17310"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 51548 51811 . - . gene_id "W7K_17310"; transcript_id "KOE97929"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 51548 51811 . - . gene_id "W7K_17310"; transcript_id "KOE97929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97929-1"; +contig11 ena CDS 51551 51811 . - 0 gene_id "W7K_17310"; transcript_id "KOE97929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97929"; +contig11 ena start_codon 51809 51811 . - 0 gene_id "W7K_17310"; transcript_id "KOE97929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 51548 51550 . - 0 gene_id "W7K_17310"; transcript_id "KOE97929"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 51965 53713 . + . gene_id "W7K_17315"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 51965 53713 . + . gene_id "W7K_17315"; transcript_id "KOE97930"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 51965 53713 . + . gene_id "W7K_17315"; transcript_id "KOE97930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97930-1"; +contig11 ena CDS 51965 53710 . + 0 gene_id "W7K_17315"; transcript_id "KOE97930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97930"; +contig11 ena start_codon 51965 51967 . + 0 gene_id "W7K_17315"; transcript_id "KOE97930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 53711 53713 . + 0 gene_id "W7K_17315"; transcript_id "KOE97930"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 53757 54410 . + . gene_id "W7K_17320"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 53757 54410 . + . gene_id "W7K_17320"; transcript_id "KOE97931"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 53757 54410 . + . gene_id "W7K_17320"; transcript_id "KOE97931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97931-1"; +contig11 ena CDS 53757 54407 . + 0 gene_id "W7K_17320"; transcript_id "KOE97931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97931"; +contig11 ena start_codon 53757 53759 . + 0 gene_id "W7K_17320"; transcript_id "KOE97931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 54408 54410 . + 0 gene_id "W7K_17320"; transcript_id "KOE97931"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 54461 55183 . + . gene_id "W7K_17325"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 54461 55183 . + . gene_id "W7K_17325"; transcript_id "KOE97932"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 54461 55183 . + . gene_id "W7K_17325"; transcript_id "KOE97932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97932-1"; +contig11 ena CDS 54461 55180 . + 0 gene_id "W7K_17325"; transcript_id "KOE97932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97932"; +contig11 ena start_codon 54461 54463 . + 0 gene_id "W7K_17325"; transcript_id "KOE97932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 55181 55183 . + 0 gene_id "W7K_17325"; transcript_id "KOE97932"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 55282 55842 . + . gene_id "W7K_17330"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 55282 55842 . + . gene_id "W7K_17330"; transcript_id "KOE97933"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 55282 55842 . + . gene_id "W7K_17330"; transcript_id "KOE97933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97933-1"; +contig11 ena CDS 55282 55839 . + 0 gene_id "W7K_17330"; transcript_id "KOE97933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97933"; +contig11 ena start_codon 55282 55284 . + 0 gene_id "W7K_17330"; transcript_id "KOE97933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 55840 55842 . + 0 gene_id "W7K_17330"; transcript_id "KOE97933"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 55826 56893 . + . gene_id "W7K_17335"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 55826 56893 . + . gene_id "W7K_17335"; transcript_id "KOE97934"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 55826 56893 . + . gene_id "W7K_17335"; transcript_id "KOE97934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97934-1"; +contig11 ena CDS 55826 56890 . + 0 gene_id "W7K_17335"; transcript_id "KOE97934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97934"; +contig11 ena start_codon 55826 55828 . + 0 gene_id "W7K_17335"; transcript_id "KOE97934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 56891 56893 . + 0 gene_id "W7K_17335"; transcript_id "KOE97934"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 56943 57338 . + . gene_id "W7K_17340"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 56943 57338 . + . gene_id "W7K_17340"; transcript_id "KOE97935"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 56943 57338 . + . gene_id "W7K_17340"; transcript_id "KOE97935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97935-1"; +contig11 ena CDS 56943 57335 . + 0 gene_id "W7K_17340"; transcript_id "KOE97935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97935"; +contig11 ena start_codon 56943 56945 . + 0 gene_id "W7K_17340"; transcript_id "KOE97935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 57336 57338 . + 0 gene_id "W7K_17340"; transcript_id "KOE97935"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 57446 58627 . - . gene_id "W7K_17345"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 57446 58627 . - . gene_id "W7K_17345"; transcript_id "KOE97936"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 57446 58627 . - . gene_id "W7K_17345"; transcript_id "KOE97936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97936-1"; +contig11 ena CDS 57449 58627 . - 0 gene_id "W7K_17345"; transcript_id "KOE97936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97936"; +contig11 ena start_codon 58625 58627 . - 0 gene_id "W7K_17345"; transcript_id "KOE97936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 57446 57448 . - 0 gene_id "W7K_17345"; transcript_id "KOE97936"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 58624 59832 . - . gene_id "W7K_17350"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 58624 59832 . - . gene_id "W7K_17350"; transcript_id "KOE97937"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 58624 59832 . - . gene_id "W7K_17350"; transcript_id "KOE97937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97937-1"; +contig11 ena CDS 58627 59832 . - 0 gene_id "W7K_17350"; transcript_id "KOE97937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97937"; +contig11 ena start_codon 59830 59832 . - 0 gene_id "W7K_17350"; transcript_id "KOE97937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 58624 58626 . - 0 gene_id "W7K_17350"; transcript_id "KOE97937"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 59939 60523 . + . gene_id "W7K_17355"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 59939 60523 . + . gene_id "W7K_17355"; transcript_id "KOE97938"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 59939 60523 . + . gene_id "W7K_17355"; transcript_id "KOE97938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97938-1"; +contig11 ena CDS 59939 60520 . + 0 gene_id "W7K_17355"; transcript_id "KOE97938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97938"; +contig11 ena start_codon 59939 59941 . + 0 gene_id "W7K_17355"; transcript_id "KOE97938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 60521 60523 . + 0 gene_id "W7K_17355"; transcript_id "KOE97938"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 60532 61086 . + . gene_id "W7K_17360"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 60532 61086 . + . gene_id "W7K_17360"; transcript_id "KOE97939"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 60532 61086 . + . gene_id "W7K_17360"; transcript_id "KOE97939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97939-1"; +contig11 ena CDS 60532 61083 . + 0 gene_id "W7K_17360"; transcript_id "KOE97939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97939"; +contig11 ena start_codon 60532 60534 . + 0 gene_id "W7K_17360"; transcript_id "KOE97939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 61084 61086 . + 0 gene_id "W7K_17360"; transcript_id "KOE97939"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 61096 62034 . + . gene_id "W7K_17365"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 61096 62034 . + . gene_id "W7K_17365"; transcript_id "KOE97940"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 61096 62034 . + . gene_id "W7K_17365"; transcript_id "KOE97940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97940-1"; +contig11 ena CDS 61096 62031 . + 0 gene_id "W7K_17365"; transcript_id "KOE97940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97940"; +contig11 ena start_codon 61096 61098 . + 0 gene_id "W7K_17365"; transcript_id "KOE97940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 62032 62034 . + 0 gene_id "W7K_17365"; transcript_id "KOE97940"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 62031 64625 . + . gene_id "W7K_17370"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 62031 64625 . + . gene_id "W7K_17370"; transcript_id "KOE97941"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 62031 64625 . + . gene_id "W7K_17370"; transcript_id "KOE97941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97941-1"; +contig11 ena CDS 62031 64622 . + 0 gene_id "W7K_17370"; transcript_id "KOE97941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97941"; +contig11 ena start_codon 62031 62033 . + 0 gene_id "W7K_17370"; transcript_id "KOE97941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 64623 64625 . + 0 gene_id "W7K_17370"; transcript_id "KOE97941"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 64622 65968 . + . gene_id "W7K_17375"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 64622 65968 . + . gene_id "W7K_17375"; transcript_id "KOE97942"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 64622 65968 . + . gene_id "W7K_17375"; transcript_id "KOE97942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97942-1"; +contig11 ena CDS 64622 65965 . + 0 gene_id "W7K_17375"; transcript_id "KOE97942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97942"; +contig11 ena start_codon 64622 64624 . + 0 gene_id "W7K_17375"; transcript_id "KOE97942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 65966 65968 . + 0 gene_id "W7K_17375"; transcript_id "KOE97942"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 65972 66952 . + . gene_id "W7K_17380"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 65972 66952 . + . gene_id "W7K_17380"; transcript_id "KOE97943"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 65972 66952 . + . gene_id "W7K_17380"; transcript_id "KOE97943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97943-1"; +contig11 ena CDS 65972 66949 . + 0 gene_id "W7K_17380"; transcript_id "KOE97943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97943"; +contig11 ena start_codon 65972 65974 . + 0 gene_id "W7K_17380"; transcript_id "KOE97943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 66950 66952 . + 0 gene_id "W7K_17380"; transcript_id "KOE97943"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 66949 67752 . + . gene_id "W7K_17385"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 66949 67752 . + . gene_id "W7K_17385"; transcript_id "KOE97944"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 66949 67752 . + . gene_id "W7K_17385"; transcript_id "KOE97944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97944-1"; +contig11 ena CDS 66949 67749 . + 0 gene_id "W7K_17385"; transcript_id "KOE97944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97944"; +contig11 ena start_codon 66949 66951 . + 0 gene_id "W7K_17385"; transcript_id "KOE97944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 67750 67752 . + 0 gene_id "W7K_17385"; transcript_id "KOE97944"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 67766 68149 . + . gene_id "W7K_17390"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 67766 68149 . + . gene_id "W7K_17390"; transcript_id "KOE97945"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 67766 68149 . + . gene_id "W7K_17390"; transcript_id "KOE97945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97945-1"; +contig11 ena CDS 67766 68146 . + 0 gene_id "W7K_17390"; transcript_id "KOE97945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97945"; +contig11 ena start_codon 67766 67768 . + 0 gene_id "W7K_17390"; transcript_id "KOE97945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 68147 68149 . + 0 gene_id "W7K_17390"; transcript_id "KOE97945"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 68165 69187 . + . gene_id "W7K_17395"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 68165 69187 . + . gene_id "W7K_17395"; transcript_id "KOE97946"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 68165 69187 . + . gene_id "W7K_17395"; transcript_id "KOE97946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97946-1"; +contig11 ena CDS 68165 69184 . + 0 gene_id "W7K_17395"; transcript_id "KOE97946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97946"; +contig11 ena start_codon 68165 68167 . + 0 gene_id "W7K_17395"; transcript_id "KOE97946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 69185 69187 . + 0 gene_id "W7K_17395"; transcript_id "KOE97946"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 69184 69828 . + . gene_id "W7K_17400"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 69184 69828 . + . gene_id "W7K_17400"; transcript_id "KOE97947"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 69184 69828 . + . gene_id "W7K_17400"; transcript_id "KOE97947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97947-1"; +contig11 ena CDS 69184 69825 . + 0 gene_id "W7K_17400"; transcript_id "KOE97947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97947"; +contig11 ena start_codon 69184 69186 . + 0 gene_id "W7K_17400"; transcript_id "KOE97947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 69826 69828 . + 0 gene_id "W7K_17400"; transcript_id "KOE97947"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 69917 70408 . - . gene_id "W7K_17405"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 69917 70408 . - . gene_id "W7K_17405"; transcript_id "KOE97948"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 69917 70408 . - . gene_id "W7K_17405"; transcript_id "KOE97948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97948-1"; +contig11 ena CDS 69920 70408 . - 0 gene_id "W7K_17405"; transcript_id "KOE97948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97948"; +contig11 ena start_codon 70406 70408 . - 0 gene_id "W7K_17405"; transcript_id "KOE97948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 69917 69919 . - 0 gene_id "W7K_17405"; transcript_id "KOE97948"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 70422 70973 . - . gene_id "W7K_17410"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 70422 70973 . - . gene_id "W7K_17410"; transcript_id "KOE97949"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 70422 70973 . - . gene_id "W7K_17410"; transcript_id "KOE97949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97949-1"; +contig11 ena CDS 70425 70973 . - 0 gene_id "W7K_17410"; transcript_id "KOE97949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97949"; +contig11 ena start_codon 70971 70973 . - 0 gene_id "W7K_17410"; transcript_id "KOE97949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 70422 70424 . - 0 gene_id "W7K_17410"; transcript_id "KOE97949"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 70982 71776 . - . gene_id "W7K_17415"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 70982 71776 . - . gene_id "W7K_17415"; transcript_id "KOE97950"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 70982 71776 . - . gene_id "W7K_17415"; transcript_id "KOE97950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97950-1"; +contig11 ena CDS 70985 71776 . - 0 gene_id "W7K_17415"; transcript_id "KOE97950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97950"; +contig11 ena start_codon 71774 71776 . - 0 gene_id "W7K_17415"; transcript_id "KOE97950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 70982 70984 . - 0 gene_id "W7K_17415"; transcript_id "KOE97950"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 71773 72660 . - . gene_id "W7K_17420"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 71773 72660 . - . gene_id "W7K_17420"; transcript_id "KOE97951"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 71773 72660 . - . gene_id "W7K_17420"; transcript_id "KOE97951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97951-1"; +contig11 ena CDS 71776 72660 . - 0 gene_id "W7K_17420"; transcript_id "KOE97951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97951"; +contig11 ena start_codon 72658 72660 . - 0 gene_id "W7K_17420"; transcript_id "KOE97951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 71773 71775 . - 0 gene_id "W7K_17420"; transcript_id "KOE97951"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 72712 73206 . - . gene_id "W7K_17425"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 72712 73206 . - . gene_id "W7K_17425"; transcript_id "KOE97952"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 72712 73206 . - . gene_id "W7K_17425"; transcript_id "KOE97952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97952-1"; +contig11 ena CDS 72715 73206 . - 0 gene_id "W7K_17425"; transcript_id "KOE97952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97952"; +contig11 ena start_codon 73204 73206 . - 0 gene_id "W7K_17425"; transcript_id "KOE97952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 72712 72714 . - 0 gene_id "W7K_17425"; transcript_id "KOE97952"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 73206 74093 . - . gene_id "W7K_17430"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 73206 74093 . - . gene_id "W7K_17430"; transcript_id "KOE97953"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 73206 74093 . - . gene_id "W7K_17430"; transcript_id "KOE97953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97953-1"; +contig11 ena CDS 73209 74093 . - 0 gene_id "W7K_17430"; transcript_id "KOE97953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97953"; +contig11 ena start_codon 74091 74093 . - 0 gene_id "W7K_17430"; transcript_id "KOE97953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 73206 73208 . - 0 gene_id "W7K_17430"; transcript_id "KOE97953"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 74097 74717 . - . gene_id "W7K_17435"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 74097 74717 . - . gene_id "W7K_17435"; transcript_id "KOE97954"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 74097 74717 . - . gene_id "W7K_17435"; transcript_id "KOE97954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97954-1"; +contig11 ena CDS 74100 74717 . - 0 gene_id "W7K_17435"; transcript_id "KOE97954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97954"; +contig11 ena start_codon 74715 74717 . - 0 gene_id "W7K_17435"; transcript_id "KOE97954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 74097 74099 . - 0 gene_id "W7K_17435"; transcript_id "KOE97954"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 75285 76445 . - . gene_id "W7K_17440"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 75285 76445 . - . gene_id "W7K_17440"; transcript_id "KOE97955"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 75285 76445 . - . gene_id "W7K_17440"; transcript_id "KOE97955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97955-1"; +contig11 ena CDS 75288 76445 . - 0 gene_id "W7K_17440"; transcript_id "KOE97955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97955"; +contig11 ena start_codon 76443 76445 . - 0 gene_id "W7K_17440"; transcript_id "KOE97955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 75285 75287 . - 0 gene_id "W7K_17440"; transcript_id "KOE97955"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 76671 77420 . - . gene_id "W7K_17445"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 76671 77420 . - . gene_id "W7K_17445"; transcript_id "KOE97956"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 76671 77420 . - . gene_id "W7K_17445"; transcript_id "KOE97956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97956-1"; +contig11 ena CDS 76674 77420 . - 0 gene_id "W7K_17445"; transcript_id "KOE97956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97956"; +contig11 ena start_codon 77418 77420 . - 0 gene_id "W7K_17445"; transcript_id "KOE97956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 76671 76673 . - 0 gene_id "W7K_17445"; transcript_id "KOE97956"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 77451 77846 . - . gene_id "W7K_17450"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 77451 77846 . - . gene_id "W7K_17450"; transcript_id "KOE97957"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 77451 77846 . - . gene_id "W7K_17450"; transcript_id "KOE97957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97957-1"; +contig11 ena CDS 77454 77846 . - 0 gene_id "W7K_17450"; transcript_id "KOE97957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97957"; +contig11 ena start_codon 77844 77846 . - 0 gene_id "W7K_17450"; transcript_id "KOE97957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 77451 77453 . - 0 gene_id "W7K_17450"; transcript_id "KOE97957"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 78060 78761 . + . gene_id "W7K_17455"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 78060 78761 . + . gene_id "W7K_17455"; transcript_id "KOE97958"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 78060 78761 . + . gene_id "W7K_17455"; transcript_id "KOE97958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97958-1"; +contig11 ena CDS 78060 78758 . + 0 gene_id "W7K_17455"; transcript_id "KOE97958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97958"; +contig11 ena start_codon 78060 78062 . + 0 gene_id "W7K_17455"; transcript_id "KOE97958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 78759 78761 . + 0 gene_id "W7K_17455"; transcript_id "KOE97958"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 78851 80122 . - . gene_id "W7K_17460"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 78851 80122 . - . gene_id "W7K_17460"; transcript_id "KOE97959"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 78851 80122 . - . gene_id "W7K_17460"; transcript_id "KOE97959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97959-1"; +contig11 ena CDS 78854 80122 . - 0 gene_id "W7K_17460"; transcript_id "KOE97959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97959"; +contig11 ena start_codon 80120 80122 . - 0 gene_id "W7K_17460"; transcript_id "KOE97959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 78851 78853 . - 0 gene_id "W7K_17460"; transcript_id "KOE97959"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 80278 80991 . - . gene_id "W7K_17465"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 80278 80991 . - . gene_id "W7K_17465"; transcript_id "KOE97960"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 80278 80991 . - . gene_id "W7K_17465"; transcript_id "KOE97960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97960-1"; +contig11 ena CDS 80281 80991 . - 0 gene_id "W7K_17465"; transcript_id "KOE97960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97960"; +contig11 ena start_codon 80989 80991 . - 0 gene_id "W7K_17465"; transcript_id "KOE97960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 80278 80280 . - 0 gene_id "W7K_17465"; transcript_id "KOE97960"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 81079 81723 . - . gene_id "W7K_17470"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 81079 81723 . - . gene_id "W7K_17470"; transcript_id "KOE97961"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 81079 81723 . - . gene_id "W7K_17470"; transcript_id "KOE97961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97961-1"; +contig11 ena CDS 81082 81723 . - 0 gene_id "W7K_17470"; transcript_id "KOE97961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97961"; +contig11 ena start_codon 81721 81723 . - 0 gene_id "W7K_17470"; transcript_id "KOE97961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 81079 81081 . - 0 gene_id "W7K_17470"; transcript_id "KOE97961"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 81799 82446 . + . gene_id "W7K_17475"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 81799 82446 . + . gene_id "W7K_17475"; transcript_id "KOE97962"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 81799 82446 . + . gene_id "W7K_17475"; transcript_id "KOE97962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97962-1"; +contig11 ena CDS 81799 82443 . + 0 gene_id "W7K_17475"; transcript_id "KOE97962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97962"; +contig11 ena start_codon 81799 81801 . + 0 gene_id "W7K_17475"; transcript_id "KOE97962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 82444 82446 . + 0 gene_id "W7K_17475"; transcript_id "KOE97962"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 82443 84956 . + . gene_id "W7K_17480"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 82443 84956 . + . gene_id "W7K_17480"; transcript_id "KOE97963"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 82443 84956 . + . gene_id "W7K_17480"; transcript_id "KOE97963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97963-1"; +contig11 ena CDS 82443 84953 . + 0 gene_id "W7K_17480"; transcript_id "KOE97963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97963"; +contig11 ena start_codon 82443 82445 . + 0 gene_id "W7K_17480"; transcript_id "KOE97963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 84954 84956 . + 0 gene_id "W7K_17480"; transcript_id "KOE97963"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 85064 85990 . - . gene_id "W7K_17485"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 85064 85990 . - . gene_id "W7K_17485"; transcript_id "KOE97964"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 85064 85990 . - . gene_id "W7K_17485"; transcript_id "KOE97964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97964-1"; +contig11 ena CDS 85067 85990 . - 0 gene_id "W7K_17485"; transcript_id "KOE97964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97964"; +contig11 ena start_codon 85988 85990 . - 0 gene_id "W7K_17485"; transcript_id "KOE97964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 85064 85066 . - 0 gene_id "W7K_17485"; transcript_id "KOE97964"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 86064 86663 . - . gene_id "W7K_17490"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 86064 86663 . - . gene_id "W7K_17490"; transcript_id "KOE97965"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 86064 86663 . - . gene_id "W7K_17490"; transcript_id "KOE97965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97965-1"; +contig11 ena CDS 86067 86663 . - 0 gene_id "W7K_17490"; transcript_id "KOE97965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97965"; +contig11 ena start_codon 86661 86663 . - 0 gene_id "W7K_17490"; transcript_id "KOE97965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 86064 86066 . - 0 gene_id "W7K_17490"; transcript_id "KOE97965"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 86668 88875 . - . gene_id "W7K_17495"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 86668 88875 . - . gene_id "W7K_17495"; transcript_id "KOE97966"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 86668 88875 . - . gene_id "W7K_17495"; transcript_id "KOE97966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97966-1"; +contig11 ena CDS 86671 88875 . - 0 gene_id "W7K_17495"; transcript_id "KOE97966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97966"; +contig11 ena start_codon 88873 88875 . - 0 gene_id "W7K_17495"; transcript_id "KOE97966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 86668 86670 . - 0 gene_id "W7K_17495"; transcript_id "KOE97966"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 89065 89259 . - . gene_id "W7K_17500"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 89065 89259 . - . gene_id "W7K_17500"; transcript_id "KOE97994"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 89065 89259 . - . gene_id "W7K_17500"; transcript_id "KOE97994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97994-1"; +contig11 ena CDS 89068 89259 . - 0 gene_id "W7K_17500"; transcript_id "KOE97994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97994"; +contig11 ena start_codon 89257 89259 . - 0 gene_id "W7K_17500"; transcript_id "KOE97994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 89065 89067 . - 0 gene_id "W7K_17500"; transcript_id "KOE97994"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 89552 90523 . - . gene_id "W7K_17505"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 89552 90523 . - . gene_id "W7K_17505"; transcript_id "KOE97995"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 89552 90523 . - . gene_id "W7K_17505"; transcript_id "KOE97995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97995-1"; +contig11 ena CDS 89555 90523 . - 0 gene_id "W7K_17505"; transcript_id "KOE97995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97995"; +contig11 ena start_codon 90521 90523 . - 0 gene_id "W7K_17505"; transcript_id "KOE97995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 89552 89554 . - 0 gene_id "W7K_17505"; transcript_id "KOE97995"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 90717 92015 . + . gene_id "W7K_17510"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 90717 92015 . + . gene_id "W7K_17510"; transcript_id "KOE97967"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 90717 92015 . + . gene_id "W7K_17510"; transcript_id "KOE97967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97967-1"; +contig11 ena CDS 90717 92012 . + 0 gene_id "W7K_17510"; transcript_id "KOE97967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97967"; +contig11 ena start_codon 90717 90719 . + 0 gene_id "W7K_17510"; transcript_id "KOE97967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 92013 92015 . + 0 gene_id "W7K_17510"; transcript_id "KOE97967"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 92041 93006 . + . gene_id "W7K_17515"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 92041 93006 . + . gene_id "W7K_17515"; transcript_id "KOE97968"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 92041 93006 . + . gene_id "W7K_17515"; transcript_id "KOE97968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97968-1"; +contig11 ena CDS 92041 93003 . + 0 gene_id "W7K_17515"; transcript_id "KOE97968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97968"; +contig11 ena start_codon 92041 92043 . + 0 gene_id "W7K_17515"; transcript_id "KOE97968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 93004 93006 . + 0 gene_id "W7K_17515"; transcript_id "KOE97968"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 93071 94279 . - . gene_id "W7K_17520"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 93071 94279 . - . gene_id "W7K_17520"; transcript_id "KOE97969"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 93071 94279 . - . gene_id "W7K_17520"; transcript_id "KOE97969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97969-1"; +contig11 ena CDS 93074 94279 . - 0 gene_id "W7K_17520"; transcript_id "KOE97969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97969"; +contig11 ena start_codon 94277 94279 . - 0 gene_id "W7K_17520"; transcript_id "KOE97969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 93071 93073 . - 0 gene_id "W7K_17520"; transcript_id "KOE97969"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 94374 95291 . + . gene_id "W7K_17525"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 94374 95291 . + . gene_id "W7K_17525"; transcript_id "KOE97970"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 94374 95291 . + . gene_id "W7K_17525"; transcript_id "KOE97970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97970-1"; +contig11 ena CDS 94374 95288 . + 0 gene_id "W7K_17525"; transcript_id "KOE97970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97970"; +contig11 ena start_codon 94374 94376 . + 0 gene_id "W7K_17525"; transcript_id "KOE97970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 95289 95291 . + 0 gene_id "W7K_17525"; transcript_id "KOE97970"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 95401 95832 . + . gene_id "W7K_17530"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 95401 95832 . + . gene_id "W7K_17530"; transcript_id "KOE97971"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 95401 95832 . + . gene_id "W7K_17530"; transcript_id "KOE97971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97971-1"; +contig11 ena CDS 95401 95829 . + 0 gene_id "W7K_17530"; transcript_id "KOE97971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97971"; +contig11 ena start_codon 95401 95403 . + 0 gene_id "W7K_17530"; transcript_id "KOE97971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 95830 95832 . + 0 gene_id "W7K_17530"; transcript_id "KOE97971"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 95980 96975 . + . gene_id "W7K_17535"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 95980 96975 . + . gene_id "W7K_17535"; transcript_id "KOE97996"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 95980 96975 . + . gene_id "W7K_17535"; transcript_id "KOE97996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97996-1"; +contig11 ena CDS 95980 96972 . + 0 gene_id "W7K_17535"; transcript_id "KOE97996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97996"; +contig11 ena start_codon 95980 95982 . + 0 gene_id "W7K_17535"; transcript_id "KOE97996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 96973 96975 . + 0 gene_id "W7K_17535"; transcript_id "KOE97996"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 97035 97862 . + . gene_id "W7K_17540"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 97035 97862 . + . gene_id "W7K_17540"; transcript_id "KOE97972"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 97035 97862 . + . gene_id "W7K_17540"; transcript_id "KOE97972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97972-1"; +contig11 ena CDS 97035 97859 . + 0 gene_id "W7K_17540"; transcript_id "KOE97972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97972"; +contig11 ena start_codon 97035 97037 . + 0 gene_id "W7K_17540"; transcript_id "KOE97972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 97860 97862 . + 0 gene_id "W7K_17540"; transcript_id "KOE97972"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 97907 98953 . - . gene_id "W7K_17545"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 97907 98953 . - . gene_id "W7K_17545"; transcript_id "KOE97973"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 97907 98953 . - . gene_id "W7K_17545"; transcript_id "KOE97973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97973-1"; +contig11 ena CDS 97910 98953 . - 0 gene_id "W7K_17545"; transcript_id "KOE97973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97973"; +contig11 ena start_codon 98951 98953 . - 0 gene_id "W7K_17545"; transcript_id "KOE97973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 97907 97909 . - 0 gene_id "W7K_17545"; transcript_id "KOE97973"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 99073 99873 . - . gene_id "W7K_17550"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 99073 99873 . - . gene_id "W7K_17550"; transcript_id "KOE97974"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 99073 99873 . - . gene_id "W7K_17550"; transcript_id "KOE97974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97974-1"; +contig11 ena CDS 99076 99873 . - 0 gene_id "W7K_17550"; transcript_id "KOE97974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97974"; +contig11 ena start_codon 99871 99873 . - 0 gene_id "W7K_17550"; transcript_id "KOE97974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 99073 99075 . - 0 gene_id "W7K_17550"; transcript_id "KOE97974"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 99870 101585 . - . gene_id "W7K_17555"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 99870 101585 . - . gene_id "W7K_17555"; transcript_id "KOE97975"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 99870 101585 . - . gene_id "W7K_17555"; transcript_id "KOE97975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97975-1"; +contig11 ena CDS 99873 101585 . - 0 gene_id "W7K_17555"; transcript_id "KOE97975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97975"; +contig11 ena start_codon 101583 101585 . - 0 gene_id "W7K_17555"; transcript_id "KOE97975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 99870 99872 . - 0 gene_id "W7K_17555"; transcript_id "KOE97975"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 101912 103123 . + . gene_id "W7K_17560"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 101912 103123 . + . gene_id "W7K_17560"; transcript_id "KOE97976"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 101912 103123 . + . gene_id "W7K_17560"; transcript_id "KOE97976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97976-1"; +contig11 ena CDS 101912 103120 . + 0 gene_id "W7K_17560"; transcript_id "KOE97976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97976"; +contig11 ena start_codon 101912 101914 . + 0 gene_id "W7K_17560"; transcript_id "KOE97976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 103121 103123 . + 0 gene_id "W7K_17560"; transcript_id "KOE97976"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 103264 103770 . + . gene_id "W7K_17565"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 103264 103770 . + . gene_id "W7K_17565"; transcript_id "KOE97977"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 103264 103770 . + . gene_id "W7K_17565"; transcript_id "KOE97977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97977-1"; +contig11 ena CDS 103264 103767 . + 0 gene_id "W7K_17565"; transcript_id "KOE97977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97977"; +contig11 ena start_codon 103264 103266 . + 0 gene_id "W7K_17565"; transcript_id "KOE97977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 103768 103770 . + 0 gene_id "W7K_17565"; transcript_id "KOE97977"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 103838 106549 . - . gene_id "W7K_17570"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 103838 106549 . - . gene_id "W7K_17570"; transcript_id "KOE97978"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 103838 106549 . - . gene_id "W7K_17570"; transcript_id "KOE97978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97978-1"; +contig11 ena CDS 103841 106549 . - 0 gene_id "W7K_17570"; transcript_id "KOE97978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97978"; +contig11 ena start_codon 106547 106549 . - 0 gene_id "W7K_17570"; transcript_id "KOE97978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 103838 103840 . - 0 gene_id "W7K_17570"; transcript_id "KOE97978"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 106784 109300 . - . gene_id "W7K_17575"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 106784 109300 . - . gene_id "W7K_17575"; transcript_id "KOE97979"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 106784 109300 . - . gene_id "W7K_17575"; transcript_id "KOE97979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97979-1"; +contig11 ena CDS 106787 109300 . - 0 gene_id "W7K_17575"; transcript_id "KOE97979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97979"; +contig11 ena start_codon 109298 109300 . - 0 gene_id "W7K_17575"; transcript_id "KOE97979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 106784 106786 . - 0 gene_id "W7K_17575"; transcript_id "KOE97979"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 109540 110985 . + . gene_id "W7K_17580"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 109540 110985 . + . gene_id "W7K_17580"; transcript_id "KOE97980"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 109540 110985 . + . gene_id "W7K_17580"; transcript_id "KOE97980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97980-1"; +contig11 ena CDS 109540 110982 . + 0 gene_id "W7K_17580"; transcript_id "KOE97980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97980"; +contig11 ena start_codon 109540 109542 . + 0 gene_id "W7K_17580"; transcript_id "KOE97980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 110983 110985 . + 0 gene_id "W7K_17580"; transcript_id "KOE97980"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 111143 111616 . + . gene_id "W7K_17585"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 111143 111616 . + . gene_id "W7K_17585"; transcript_id "KOE97981"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 111143 111616 . + . gene_id "W7K_17585"; transcript_id "KOE97981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97981-1"; +contig11 ena CDS 111143 111613 . + 0 gene_id "W7K_17585"; transcript_id "KOE97981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97981"; +contig11 ena start_codon 111143 111145 . + 0 gene_id "W7K_17585"; transcript_id "KOE97981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 111614 111616 . + 0 gene_id "W7K_17585"; transcript_id "KOE97981"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 111616 112098 . + . gene_id "W7K_17590"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 111616 112098 . + . gene_id "W7K_17590"; transcript_id "KOE97982"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 111616 112098 . + . gene_id "W7K_17590"; transcript_id "KOE97982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97982-1"; +contig11 ena CDS 111616 112095 . + 0 gene_id "W7K_17590"; transcript_id "KOE97982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97982"; +contig11 ena start_codon 111616 111618 . + 0 gene_id "W7K_17590"; transcript_id "KOE97982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 112096 112098 . + 0 gene_id "W7K_17590"; transcript_id "KOE97982"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 112174 112731 . - . gene_id "W7K_17595"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 112174 112731 . - . gene_id "W7K_17595"; transcript_id "KOE97983"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 112174 112731 . - . gene_id "W7K_17595"; transcript_id "KOE97983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97983-1"; +contig11 ena CDS 112177 112731 . - 0 gene_id "W7K_17595"; transcript_id "KOE97983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97983"; +contig11 ena start_codon 112729 112731 . - 0 gene_id "W7K_17595"; transcript_id "KOE97983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 112174 112176 . - 0 gene_id "W7K_17595"; transcript_id "KOE97983"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 112783 113514 . - . gene_id "W7K_17600"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 112783 113514 . - . gene_id "W7K_17600"; transcript_id "KOE97984"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 112783 113514 . - . gene_id "W7K_17600"; transcript_id "KOE97984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97984-1"; +contig11 ena CDS 112786 113514 . - 0 gene_id "W7K_17600"; transcript_id "KOE97984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97984"; +contig11 ena start_codon 113512 113514 . - 0 gene_id "W7K_17600"; transcript_id "KOE97984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 112783 112785 . - 0 gene_id "W7K_17600"; transcript_id "KOE97984"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 113511 114560 . - . gene_id "W7K_17605"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 113511 114560 . - . gene_id "W7K_17605"; transcript_id "KOE97985"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 113511 114560 . - . gene_id "W7K_17605"; transcript_id "KOE97985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97985-1"; +contig11 ena CDS 113514 114560 . - 0 gene_id "W7K_17605"; transcript_id "KOE97985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97985"; +contig11 ena start_codon 114558 114560 . - 0 gene_id "W7K_17605"; transcript_id "KOE97985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 113511 113513 . - 0 gene_id "W7K_17605"; transcript_id "KOE97985"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 114585 115511 . - . gene_id "W7K_17610"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 114585 115511 . - . gene_id "W7K_17610"; transcript_id "KOE97986"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 114585 115511 . - . gene_id "W7K_17610"; transcript_id "KOE97986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97986-1"; +contig11 ena CDS 114588 115511 . - 0 gene_id "W7K_17610"; transcript_id "KOE97986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97986"; +contig11 ena start_codon 115509 115511 . - 0 gene_id "W7K_17610"; transcript_id "KOE97986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena stop_codon 114585 114587 . - 0 gene_id "W7K_17610"; transcript_id "KOE97986"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena gene 115714 115990 . + . gene_id "W7K_17615"; gene_source "ena"; gene_biotype "protein_coding"; +contig11 ena transcript 115714 115990 . + . gene_id "W7K_17615"; transcript_id "KOE97987"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig11 ena exon 115714 115990 . + . gene_id "W7K_17615"; transcript_id "KOE97987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97987-1"; +contig11 ena CDS 115714 115990 . + 0 gene_id "W7K_17615"; transcript_id "KOE97987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97987"; +contig11 ena start_codon 115714 115716 . + 0 gene_id "W7K_17615"; transcript_id "KOE97987"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 1 552 . + . gene_id "W7K_16630"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 1 552 . + . gene_id "W7K_16630"; transcript_id "KOE97997"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 1 552 . + . gene_id "W7K_16630"; transcript_id "KOE97997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97997-1"; +contig12 ena CDS 1 549 . + 0 gene_id "W7K_16630"; transcript_id "KOE97997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97997"; +contig12 ena start_codon 1 3 . + 0 gene_id "W7K_16630"; transcript_id "KOE97997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 550 552 . + 0 gene_id "W7K_16630"; transcript_id "KOE97997"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 593 1177 . + . gene_id "W7K_16635"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 593 1177 . + . gene_id "W7K_16635"; transcript_id "KOE97998"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 593 1177 . + . gene_id "W7K_16635"; transcript_id "KOE97998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97998-1"; +contig12 ena CDS 593 1174 . + 0 gene_id "W7K_16635"; transcript_id "KOE97998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97998"; +contig12 ena start_codon 593 595 . + 0 gene_id "W7K_16635"; transcript_id "KOE97998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 1175 1177 . + 0 gene_id "W7K_16635"; transcript_id "KOE97998"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 1222 2178 . - . gene_id "W7K_16640"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 1222 2178 . - . gene_id "W7K_16640"; transcript_id "KOE97999"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 1222 2178 . - . gene_id "W7K_16640"; transcript_id "KOE97999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97999-1"; +contig12 ena CDS 1225 2178 . - 0 gene_id "W7K_16640"; transcript_id "KOE97999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97999"; +contig12 ena start_codon 2176 2178 . - 0 gene_id "W7K_16640"; transcript_id "KOE97999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 1222 1224 . - 0 gene_id "W7K_16640"; transcript_id "KOE97999"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 2292 5024 . - . gene_id "W7K_16645"; gene_name "secA"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 2292 5024 . - . gene_id "W7K_16645"; transcript_id "KOE98000"; gene_name "secA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 2292 5024 . - . gene_id "W7K_16645"; transcript_id "KOE98000"; exon_number "1"; gene_name "secA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98000-1"; +contig12 ena CDS 2295 5024 . - 0 gene_id "W7K_16645"; transcript_id "KOE98000"; exon_number "1"; gene_name "secA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98000"; +contig12 ena start_codon 5022 5024 . - 0 gene_id "W7K_16645"; transcript_id "KOE98000"; exon_number "1"; gene_name "secA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 2292 2294 . - 0 gene_id "W7K_16645"; transcript_id "KOE98000"; exon_number "1"; gene_name "secA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 5292 6248 . - . gene_id "W7K_16650"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 5292 6248 . - . gene_id "W7K_16650"; transcript_id "KOE98001"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 5292 6248 . - . gene_id "W7K_16650"; transcript_id "KOE98001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98001-1"; +contig12 ena CDS 5295 6248 . - 0 gene_id "W7K_16650"; transcript_id "KOE98001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98001"; +contig12 ena start_codon 6246 6248 . - 0 gene_id "W7K_16650"; transcript_id "KOE98001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 5292 5294 . - 0 gene_id "W7K_16650"; transcript_id "KOE98001"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 6261 6710 . + . gene_id "W7K_16655"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 6261 6710 . + . gene_id "W7K_16655"; transcript_id "KOE98002"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 6261 6710 . + . gene_id "W7K_16655"; transcript_id "KOE98002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98002-1"; +contig12 ena CDS 6261 6707 . + 0 gene_id "W7K_16655"; transcript_id "KOE98002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98002"; +contig12 ena start_codon 6261 6263 . + 0 gene_id "W7K_16655"; transcript_id "KOE98002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 6708 6710 . + 0 gene_id "W7K_16655"; transcript_id "KOE98002"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 6993 7904 . - . gene_id "W7K_16660"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 6993 7904 . - . gene_id "W7K_16660"; transcript_id "KOE98003"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 6993 7904 . - . gene_id "W7K_16660"; transcript_id "KOE98003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98003-1"; +contig12 ena CDS 6996 7904 . - 0 gene_id "W7K_16660"; transcript_id "KOE98003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98003"; +contig12 ena start_codon 7902 7904 . - 0 gene_id "W7K_16660"; transcript_id "KOE98003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 6993 6995 . - 0 gene_id "W7K_16660"; transcript_id "KOE98003"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 8096 9331 . - . gene_id "W7K_16665"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 8096 9331 . - . gene_id "W7K_16665"; transcript_id "KOE98004"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 8096 9331 . - . gene_id "W7K_16665"; transcript_id "KOE98004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98004-1"; +contig12 ena CDS 8099 9331 . - 0 gene_id "W7K_16665"; transcript_id "KOE98004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98004"; +contig12 ena start_codon 9329 9331 . - 0 gene_id "W7K_16665"; transcript_id "KOE98004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 8096 8098 . - 0 gene_id "W7K_16665"; transcript_id "KOE98004"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 9502 10737 . - . gene_id "W7K_16670"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 9502 10737 . - . gene_id "W7K_16670"; transcript_id "KOE98005"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 9502 10737 . - . gene_id "W7K_16670"; transcript_id "KOE98005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98005-1"; +contig12 ena CDS 9505 10737 . - 0 gene_id "W7K_16670"; transcript_id "KOE98005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98005"; +contig12 ena start_codon 10735 10737 . - 0 gene_id "W7K_16670"; transcript_id "KOE98005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 9502 9504 . - 0 gene_id "W7K_16670"; transcript_id "KOE98005"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 10734 11483 . - . gene_id "W7K_16675"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 10734 11483 . - . gene_id "W7K_16675"; transcript_id "KOE98006"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 10734 11483 . - . gene_id "W7K_16675"; transcript_id "KOE98006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98006-1"; +contig12 ena CDS 10737 11483 . - 0 gene_id "W7K_16675"; transcript_id "KOE98006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98006"; +contig12 ena start_codon 11481 11483 . - 0 gene_id "W7K_16675"; transcript_id "KOE98006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 10734 10736 . - 0 gene_id "W7K_16675"; transcript_id "KOE98006"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 11480 12442 . - . gene_id "W7K_16680"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 11480 12442 . - . gene_id "W7K_16680"; transcript_id "KOE98007"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 11480 12442 . - . gene_id "W7K_16680"; transcript_id "KOE98007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98007-1"; +contig12 ena CDS 11483 12442 . - 0 gene_id "W7K_16680"; transcript_id "KOE98007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98007"; +contig12 ena start_codon 12440 12442 . - 0 gene_id "W7K_16680"; transcript_id "KOE98007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 11480 11482 . - 0 gene_id "W7K_16680"; transcript_id "KOE98007"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 12439 13875 . - . gene_id "W7K_16685"; gene_name "murC"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 12439 13875 . - . gene_id "W7K_16685"; transcript_id "KOE98008"; gene_name "murC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 12439 13875 . - . gene_id "W7K_16685"; transcript_id "KOE98008"; exon_number "1"; gene_name "murC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98008-1"; +contig12 ena CDS 12442 13875 . - 0 gene_id "W7K_16685"; transcript_id "KOE98008"; exon_number "1"; gene_name "murC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98008"; +contig12 ena start_codon 13873 13875 . - 0 gene_id "W7K_16685"; transcript_id "KOE98008"; exon_number "1"; gene_name "murC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 12439 12441 . - 0 gene_id "W7K_16685"; transcript_id "KOE98008"; exon_number "1"; gene_name "murC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "murC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 13916 15001 . - . gene_id "W7K_16690"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 13916 15001 . - . gene_id "W7K_16690"; transcript_id "KOE98009"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 13916 15001 . - . gene_id "W7K_16690"; transcript_id "KOE98009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98009-1"; +contig12 ena CDS 13919 15001 . - 0 gene_id "W7K_16690"; transcript_id "KOE98009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98009"; +contig12 ena start_codon 14999 15001 . - 0 gene_id "W7K_16690"; transcript_id "KOE98009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 13916 13918 . - 0 gene_id "W7K_16690"; transcript_id "KOE98009"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 14998 16317 . - . gene_id "W7K_16695"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 14998 16317 . - . gene_id "W7K_16695"; transcript_id "KOE98010"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 14998 16317 . - . gene_id "W7K_16695"; transcript_id "KOE98010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98010-1"; +contig12 ena CDS 15001 16317 . - 0 gene_id "W7K_16695"; transcript_id "KOE98010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98010"; +contig12 ena start_codon 16315 16317 . - 0 gene_id "W7K_16695"; transcript_id "KOE98010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 14998 15000 . - 0 gene_id "W7K_16695"; transcript_id "KOE98010"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 16319 17404 . - . gene_id "W7K_16700"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 16319 17404 . - . gene_id "W7K_16700"; transcript_id "KOE98011"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 16319 17404 . - . gene_id "W7K_16700"; transcript_id "KOE98011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98011-1"; +contig12 ena CDS 16322 17404 . - 0 gene_id "W7K_16700"; transcript_id "KOE98011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98011"; +contig12 ena start_codon 17402 17404 . - 0 gene_id "W7K_16700"; transcript_id "KOE98011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 16319 16321 . - 0 gene_id "W7K_16700"; transcript_id "KOE98011"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 17394 18788 . - . gene_id "W7K_16705"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 17394 18788 . - . gene_id "W7K_16705"; transcript_id "KOE98012"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 17394 18788 . - . gene_id "W7K_16705"; transcript_id "KOE98012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98012-1"; +contig12 ena CDS 17397 18788 . - 0 gene_id "W7K_16705"; transcript_id "KOE98012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98012"; +contig12 ena start_codon 18786 18788 . - 0 gene_id "W7K_16705"; transcript_id "KOE98012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 17394 17396 . - 0 gene_id "W7K_16705"; transcript_id "KOE98012"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 18785 20293 . - . gene_id "W7K_16710"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 18785 20293 . - . gene_id "W7K_16710"; transcript_id "KOE98013"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 18785 20293 . - . gene_id "W7K_16710"; transcript_id "KOE98013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98013-1"; +contig12 ena CDS 18788 20293 . - 0 gene_id "W7K_16710"; transcript_id "KOE98013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98013"; +contig12 ena start_codon 20291 20293 . - 0 gene_id "W7K_16710"; transcript_id "KOE98013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 18785 18787 . - 0 gene_id "W7K_16710"; transcript_id "KOE98013"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 20290 22134 . - . gene_id "W7K_16715"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 20290 22134 . - . gene_id "W7K_16715"; transcript_id "KOE98014"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 20290 22134 . - . gene_id "W7K_16715"; transcript_id "KOE98014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98014-1"; +contig12 ena CDS 20293 22134 . - 0 gene_id "W7K_16715"; transcript_id "KOE98014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98014"; +contig12 ena start_codon 22132 22134 . - 0 gene_id "W7K_16715"; transcript_id "KOE98014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 20290 20292 . - 0 gene_id "W7K_16715"; transcript_id "KOE98014"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 22131 22394 . - . gene_id "W7K_16720"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 22131 22394 . - . gene_id "W7K_16720"; transcript_id "KOE98015"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 22131 22394 . - . gene_id "W7K_16720"; transcript_id "KOE98015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98015-1"; +contig12 ena CDS 22134 22394 . - 0 gene_id "W7K_16720"; transcript_id "KOE98015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98015"; +contig12 ena start_codon 22392 22394 . - 0 gene_id "W7K_16720"; transcript_id "KOE98015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 22131 22133 . - 0 gene_id "W7K_16720"; transcript_id "KOE98015"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 22391 23359 . - . gene_id "W7K_16725"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 22391 23359 . - . gene_id "W7K_16725"; transcript_id "KOE98016"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 22391 23359 . - . gene_id "W7K_16725"; transcript_id "KOE98016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98016-1"; +contig12 ena CDS 22394 23359 . - 0 gene_id "W7K_16725"; transcript_id "KOE98016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98016"; +contig12 ena start_codon 23357 23359 . - 0 gene_id "W7K_16725"; transcript_id "KOE98016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 22391 22393 . - 0 gene_id "W7K_16725"; transcript_id "KOE98016"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 23374 23820 . - . gene_id "W7K_16730"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 23374 23820 . - . gene_id "W7K_16730"; transcript_id "KOE98017"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 23374 23820 . - . gene_id "W7K_16730"; transcript_id "KOE98017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98017-1"; +contig12 ena CDS 23377 23820 . - 0 gene_id "W7K_16730"; transcript_id "KOE98017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98017"; +contig12 ena start_codon 23818 23820 . - 0 gene_id "W7K_16730"; transcript_id "KOE98017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 23374 23376 . - 0 gene_id "W7K_16730"; transcript_id "KOE98017"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 24144 24896 . + . gene_id "W7K_16735"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 24144 24896 . + . gene_id "W7K_16735"; transcript_id "KOE98018"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 24144 24896 . + . gene_id "W7K_16735"; transcript_id "KOE98018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98018-1"; +contig12 ena CDS 24144 24893 . + 0 gene_id "W7K_16735"; transcript_id "KOE98018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98018"; +contig12 ena start_codon 24144 24146 . + 0 gene_id "W7K_16735"; transcript_id "KOE98018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 24894 24896 . + 0 gene_id "W7K_16735"; transcript_id "KOE98018"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 24998 25477 . + . gene_id "W7K_16740"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 24998 25477 . + . gene_id "W7K_16740"; transcript_id "KOE98019"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 24998 25477 . + . gene_id "W7K_16740"; transcript_id "KOE98019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98019-1"; +contig12 ena CDS 24998 25474 . + 0 gene_id "W7K_16740"; transcript_id "KOE98019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98019"; +contig12 ena start_codon 24998 25000 . + 0 gene_id "W7K_16740"; transcript_id "KOE98019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 25475 25477 . + 0 gene_id "W7K_16740"; transcript_id "KOE98019"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 25567 25918 . - . gene_id "W7K_17035"; gene_source "ena"; gene_biotype "ncRNA"; +contig12 ena transcript 25567 25918 . - . gene_id "W7K_17035"; transcript_id "EBT00051077615"; gene_source "ena"; gene_biotype "ncRNA"; transcript_name "W7K_17035"; transcript_source "ena"; transcript_biotype "ncRNA"; +contig12 ena exon 25567 25918 . - . gene_id "W7K_17035"; transcript_id "EBT00051077615"; exon_number "1"; gene_source "ena"; gene_biotype "ncRNA"; transcript_name "W7K_17035"; transcript_source "ena"; transcript_biotype "ncRNA"; exon_id "W7K_17035-1"; +contig12 ena gene 26053 26871 . - . gene_id "W7K_16745"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 26053 26871 . - . gene_id "W7K_16745"; transcript_id "KOE98020"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 26053 26871 . - . gene_id "W7K_16745"; transcript_id "KOE98020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98020-1"; +contig12 ena CDS 26056 26871 . - 0 gene_id "W7K_16745"; transcript_id "KOE98020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98020"; +contig12 ena start_codon 26869 26871 . - 0 gene_id "W7K_16745"; transcript_id "KOE98020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 26053 26055 . - 0 gene_id "W7K_16745"; transcript_id "KOE98020"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 26953 28674 . + . gene_id "W7K_16750"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 26953 28674 . + . gene_id "W7K_16750"; transcript_id "KOE98073"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 26953 28674 . + . gene_id "W7K_16750"; transcript_id "KOE98073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98073-1"; +contig12 ena CDS 26953 28671 . + 0 gene_id "W7K_16750"; transcript_id "KOE98073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98073"; +contig12 ena start_codon 26953 26955 . + 0 gene_id "W7K_16750"; transcript_id "KOE98073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 28672 28674 . + 0 gene_id "W7K_16750"; transcript_id "KOE98073"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 28637 29032 . + . gene_id "W7K_16755"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 28637 29032 . + . gene_id "W7K_16755"; transcript_id "KOE98021"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 28637 29032 . + . gene_id "W7K_16755"; transcript_id "KOE98021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98021-1"; +contig12 ena CDS 28637 29029 . + 0 gene_id "W7K_16755"; transcript_id "KOE98021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98021"; +contig12 ena start_codon 28637 28639 . + 0 gene_id "W7K_16755"; transcript_id "KOE98021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 29030 29032 . + 0 gene_id "W7K_16755"; transcript_id "KOE98021"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 29143 29787 . + . gene_id "W7K_16760"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 29143 29787 . + . gene_id "W7K_16760"; transcript_id "KOE98022"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 29143 29787 . + . gene_id "W7K_16760"; transcript_id "KOE98022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98022-1"; +contig12 ena CDS 29143 29784 . + 0 gene_id "W7K_16760"; transcript_id "KOE98022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98022"; +contig12 ena start_codon 29143 29145 . + 0 gene_id "W7K_16760"; transcript_id "KOE98022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 29785 29787 . + 0 gene_id "W7K_16760"; transcript_id "KOE98022"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 29784 31169 . + . gene_id "W7K_16765"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 29784 31169 . + . gene_id "W7K_16765"; transcript_id "KOE98023"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 29784 31169 . + . gene_id "W7K_16765"; transcript_id "KOE98023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98023-1"; +contig12 ena CDS 29784 31166 . + 0 gene_id "W7K_16765"; transcript_id "KOE98023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98023"; +contig12 ena start_codon 29784 29786 . + 0 gene_id "W7K_16765"; transcript_id "KOE98023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 31167 31169 . + 0 gene_id "W7K_16765"; transcript_id "KOE98023"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 31332 34265 . - . gene_id "W7K_16770"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 31332 34265 . - . gene_id "W7K_16770"; transcript_id "KOE98024"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 31332 34265 . - . gene_id "W7K_16770"; transcript_id "KOE98024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98024-1"; +contig12 ena CDS 31335 34265 . - 0 gene_id "W7K_16770"; transcript_id "KOE98024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98024"; +contig12 ena start_codon 34263 34265 . - 0 gene_id "W7K_16770"; transcript_id "KOE98024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 31332 31334 . - 0 gene_id "W7K_16770"; transcript_id "KOE98024"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 34664 35233 . - . gene_id "W7K_16775"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 34664 35233 . - . gene_id "W7K_16775"; transcript_id "KOE98025"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 34664 35233 . - . gene_id "W7K_16775"; transcript_id "KOE98025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98025-1"; +contig12 ena CDS 34667 35233 . - 0 gene_id "W7K_16775"; transcript_id "KOE98025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98025"; +contig12 ena start_codon 35231 35233 . - 0 gene_id "W7K_16775"; transcript_id "KOE98025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 34664 34666 . - 0 gene_id "W7K_16775"; transcript_id "KOE98025"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 35476 36576 . - . gene_id "W7K_16780"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 35476 36576 . - . gene_id "W7K_16780"; transcript_id "KOE98026"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 35476 36576 . - . gene_id "W7K_16780"; transcript_id "KOE98026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98026-1"; +contig12 ena CDS 35479 36576 . - 0 gene_id "W7K_16780"; transcript_id "KOE98026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98026"; +contig12 ena start_codon 36574 36576 . - 0 gene_id "W7K_16780"; transcript_id "KOE98026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 35476 35478 . - 0 gene_id "W7K_16780"; transcript_id "KOE98026"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 36666 37004 . - . gene_id "W7K_16785"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 36666 37004 . - . gene_id "W7K_16785"; transcript_id "KOE98074"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 36666 37004 . - . gene_id "W7K_16785"; transcript_id "KOE98074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98074-1"; +contig12 ena CDS 36669 37004 . - 0 gene_id "W7K_16785"; transcript_id "KOE98074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98074"; +contig12 ena start_codon 37002 37004 . - 0 gene_id "W7K_16785"; transcript_id "KOE98074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 36666 36668 . - 0 gene_id "W7K_16785"; transcript_id "KOE98074"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 37730 38239 . - . gene_id "W7K_16795"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 37730 38239 . - . gene_id "W7K_16795"; transcript_id "KOE98027"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 37730 38239 . - . gene_id "W7K_16795"; transcript_id "KOE98027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98027-1"; +contig12 ena CDS 37733 38239 . - 0 gene_id "W7K_16795"; transcript_id "KOE98027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98027"; +contig12 ena start_codon 38237 38239 . - 0 gene_id "W7K_16795"; transcript_id "KOE98027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 37730 37732 . - 0 gene_id "W7K_16795"; transcript_id "KOE98027"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 38272 40812 . - . gene_id "W7K_16800"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 38272 40812 . - . gene_id "W7K_16800"; transcript_id "KOE98028"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 38272 40812 . - . gene_id "W7K_16800"; transcript_id "KOE98028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98028-1"; +contig12 ena CDS 38275 40812 . - 0 gene_id "W7K_16800"; transcript_id "KOE98028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98028"; +contig12 ena start_codon 40810 40812 . - 0 gene_id "W7K_16800"; transcript_id "KOE98028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 38272 38274 . - 0 gene_id "W7K_16800"; transcript_id "KOE98028"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 41225 41743 . + . gene_id "W7K_16805"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 41225 41743 . + . gene_id "W7K_16805"; transcript_id "KOE98029"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 41225 41743 . + . gene_id "W7K_16805"; transcript_id "KOE98029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98029-1"; +contig12 ena CDS 41225 41740 . + 0 gene_id "W7K_16805"; transcript_id "KOE98029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98029"; +contig12 ena start_codon 41225 41227 . + 0 gene_id "W7K_16805"; transcript_id "KOE98029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 41741 41743 . + 0 gene_id "W7K_16805"; transcript_id "KOE98029"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 41802 42524 . + . gene_id "W7K_16810"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 41802 42524 . + . gene_id "W7K_16810"; transcript_id "KOE98030"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 41802 42524 . + . gene_id "W7K_16810"; transcript_id "KOE98030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98030-1"; +contig12 ena CDS 41802 42521 . + 0 gene_id "W7K_16810"; transcript_id "KOE98030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98030"; +contig12 ena start_codon 41802 41804 . + 0 gene_id "W7K_16810"; transcript_id "KOE98030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 42522 42524 . + 0 gene_id "W7K_16810"; transcript_id "KOE98030"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 43035 43445 . + . gene_id "W7K_16815"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 43035 43445 . + . gene_id "W7K_16815"; transcript_id "KOE98031"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 43035 43445 . + . gene_id "W7K_16815"; transcript_id "KOE98031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98031-1"; +contig12 ena CDS 43035 43442 . + 0 gene_id "W7K_16815"; transcript_id "KOE98031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98031"; +contig12 ena start_codon 43035 43037 . + 0 gene_id "W7K_16815"; transcript_id "KOE98031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 43443 43445 . + 0 gene_id "W7K_16815"; transcript_id "KOE98031"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 43648 46641 . + . gene_id "W7K_16820"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 43648 46641 . + . gene_id "W7K_16820"; transcript_id "KOE98032"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 43648 46641 . + . gene_id "W7K_16820"; transcript_id "KOE98032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98032-1"; +contig12 ena CDS 43648 46638 . + 0 gene_id "W7K_16820"; transcript_id "KOE98032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98032"; +contig12 ena start_codon 43648 43650 . + 0 gene_id "W7K_16820"; transcript_id "KOE98032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 46639 46641 . + 0 gene_id "W7K_16820"; transcript_id "KOE98032"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 46651 47616 . - . gene_id "W7K_16825"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 46651 47616 . - . gene_id "W7K_16825"; transcript_id "KOE98033"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 46651 47616 . - . gene_id "W7K_16825"; transcript_id "KOE98033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98033-1"; +contig12 ena CDS 46654 47616 . - 0 gene_id "W7K_16825"; transcript_id "KOE98033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98033"; +contig12 ena start_codon 47614 47616 . - 0 gene_id "W7K_16825"; transcript_id "KOE98033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 46651 46653 . - 0 gene_id "W7K_16825"; transcript_id "KOE98033"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 47747 48226 . - . gene_id "W7K_16830"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 47747 48226 . - . gene_id "W7K_16830"; transcript_id "KOE98034"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 47747 48226 . - . gene_id "W7K_16830"; transcript_id "KOE98034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98034-1"; +contig12 ena CDS 47750 48226 . - 0 gene_id "W7K_16830"; transcript_id "KOE98034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98034"; +contig12 ena start_codon 48224 48226 . - 0 gene_id "W7K_16830"; transcript_id "KOE98034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 47747 47749 . - 0 gene_id "W7K_16830"; transcript_id "KOE98034"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 48223 48690 . - . gene_id "W7K_16835"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 48223 48690 . - . gene_id "W7K_16835"; transcript_id "KOE98035"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 48223 48690 . - . gene_id "W7K_16835"; transcript_id "KOE98035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98035-1"; +contig12 ena CDS 48226 48690 . - 0 gene_id "W7K_16835"; transcript_id "KOE98035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98035"; +contig12 ena start_codon 48688 48690 . - 0 gene_id "W7K_16835"; transcript_id "KOE98035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 48223 48225 . - 0 gene_id "W7K_16835"; transcript_id "KOE98035"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 48851 49951 . - . gene_id "W7K_16840"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 48851 49951 . - . gene_id "W7K_16840"; transcript_id "KOE98036"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 48851 49951 . - . gene_id "W7K_16840"; transcript_id "KOE98036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98036-1"; +contig12 ena CDS 48854 49951 . - 0 gene_id "W7K_16840"; transcript_id "KOE98036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98036"; +contig12 ena start_codon 49949 49951 . - 0 gene_id "W7K_16840"; transcript_id "KOE98036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 48851 48853 . - 0 gene_id "W7K_16840"; transcript_id "KOE98036"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 49948 50574 . - . gene_id "W7K_16845"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 49948 50574 . - . gene_id "W7K_16845"; transcript_id "KOE98037"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 49948 50574 . - . gene_id "W7K_16845"; transcript_id "KOE98037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98037-1"; +contig12 ena CDS 49951 50574 . - 0 gene_id "W7K_16845"; transcript_id "KOE98037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98037"; +contig12 ena start_codon 50572 50574 . - 0 gene_id "W7K_16845"; transcript_id "KOE98037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 49948 49950 . - 0 gene_id "W7K_16845"; transcript_id "KOE98037"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 50983 51603 . + . gene_id "W7K_16850"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 50983 51603 . + . gene_id "W7K_16850"; transcript_id "KOE98038"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 50983 51603 . + . gene_id "W7K_16850"; transcript_id "KOE98038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98038-1"; +contig12 ena CDS 50983 51600 . + 0 gene_id "W7K_16850"; transcript_id "KOE98038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98038"; +contig12 ena start_codon 50983 50985 . + 0 gene_id "W7K_16850"; transcript_id "KOE98038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 51601 51603 . + 0 gene_id "W7K_16850"; transcript_id "KOE98038"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 51756 52640 . + . gene_id "W7K_16855"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 51756 52640 . + . gene_id "W7K_16855"; transcript_id "KOE98039"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 51756 52640 . + . gene_id "W7K_16855"; transcript_id "KOE98039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98039-1"; +contig12 ena CDS 51756 52637 . + 0 gene_id "W7K_16855"; transcript_id "KOE98039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98039"; +contig12 ena start_codon 51756 51758 . + 0 gene_id "W7K_16855"; transcript_id "KOE98039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 52638 52640 . + 0 gene_id "W7K_16855"; transcript_id "KOE98039"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 52724 53809 . - . gene_id "W7K_16860"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 52724 53809 . - . gene_id "W7K_16860"; transcript_id "KOE98075"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 52724 53809 . - . gene_id "W7K_16860"; transcript_id "KOE98075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98075-1"; +contig12 ena CDS 52727 53809 . - 0 gene_id "W7K_16860"; transcript_id "KOE98075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98075"; +contig12 ena start_codon 53807 53809 . - 0 gene_id "W7K_16860"; transcript_id "KOE98075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 52724 52726 . - 0 gene_id "W7K_16860"; transcript_id "KOE98075"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 53930 54451 . - . gene_id "W7K_16865"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 53930 54451 . - . gene_id "W7K_16865"; transcript_id "KOE98040"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 53930 54451 . - . gene_id "W7K_16865"; transcript_id "KOE98040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98040-1"; +contig12 ena CDS 53933 54451 . - 0 gene_id "W7K_16865"; transcript_id "KOE98040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98040"; +contig12 ena start_codon 54449 54451 . - 0 gene_id "W7K_16865"; transcript_id "KOE98040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 53930 53932 . - 0 gene_id "W7K_16865"; transcript_id "KOE98040"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 54601 55050 . - . gene_id "W7K_16870"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 54601 55050 . - . gene_id "W7K_16870"; transcript_id "KOE98041"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 54601 55050 . - . gene_id "W7K_16870"; transcript_id "KOE98041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98041-1"; +contig12 ena CDS 54604 55050 . - 0 gene_id "W7K_16870"; transcript_id "KOE98041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98041"; +contig12 ena start_codon 55048 55050 . - 0 gene_id "W7K_16870"; transcript_id "KOE98041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 54601 54603 . - 0 gene_id "W7K_16870"; transcript_id "KOE98041"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 55078 55497 . - . gene_id "W7K_16875"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 55078 55497 . - . gene_id "W7K_16875"; transcript_id "KOE98042"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 55078 55497 . - . gene_id "W7K_16875"; transcript_id "KOE98042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98042-1"; +contig12 ena CDS 55081 55497 . - 0 gene_id "W7K_16875"; transcript_id "KOE98042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98042"; +contig12 ena start_codon 55495 55497 . - 0 gene_id "W7K_16875"; transcript_id "KOE98042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 55078 55080 . - 0 gene_id "W7K_16875"; transcript_id "KOE98042"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 55565 56818 . - . gene_id "W7K_16880"; gene_name "glyA"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 55565 56818 . - . gene_id "W7K_16880"; transcript_id "KOE98043"; gene_name "glyA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glyA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 55565 56818 . - . gene_id "W7K_16880"; transcript_id "KOE98043"; exon_number "1"; gene_name "glyA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glyA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98043-1"; +contig12 ena CDS 55568 56818 . - 0 gene_id "W7K_16880"; transcript_id "KOE98043"; exon_number "1"; gene_name "glyA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glyA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98043"; +contig12 ena start_codon 56816 56818 . - 0 gene_id "W7K_16880"; transcript_id "KOE98043"; exon_number "1"; gene_name "glyA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glyA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 55565 55567 . - 0 gene_id "W7K_16880"; transcript_id "KOE98043"; exon_number "1"; gene_name "glyA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glyA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 57004 57477 . - . gene_id "W7K_16885"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 57004 57477 . - . gene_id "W7K_16885"; transcript_id "KOE98044"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 57004 57477 . - . gene_id "W7K_16885"; transcript_id "KOE98044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98044-1"; +contig12 ena CDS 57007 57477 . - 0 gene_id "W7K_16885"; transcript_id "KOE98044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98044"; +contig12 ena start_codon 57475 57477 . - 0 gene_id "W7K_16885"; transcript_id "KOE98044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 57004 57006 . - 0 gene_id "W7K_16885"; transcript_id "KOE98044"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 57732 59396 . + . gene_id "W7K_16890"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 57732 59396 . + . gene_id "W7K_16890"; transcript_id "KOE98045"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 57732 59396 . + . gene_id "W7K_16890"; transcript_id "KOE98045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98045-1"; +contig12 ena CDS 57732 59393 . + 0 gene_id "W7K_16890"; transcript_id "KOE98045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98045"; +contig12 ena start_codon 57732 57734 . + 0 gene_id "W7K_16890"; transcript_id "KOE98045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 59394 59396 . + 0 gene_id "W7K_16890"; transcript_id "KOE98045"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 59521 60837 . + . gene_id "W7K_16895"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 59521 60837 . + . gene_id "W7K_16895"; transcript_id "KOE98046"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 59521 60837 . + . gene_id "W7K_16895"; transcript_id "KOE98046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98046-1"; +contig12 ena CDS 59521 60834 . + 0 gene_id "W7K_16895"; transcript_id "KOE98046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98046"; +contig12 ena start_codon 59521 59523 . + 0 gene_id "W7K_16895"; transcript_id "KOE98046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 60835 60837 . + 0 gene_id "W7K_16895"; transcript_id "KOE98046"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 60992 61957 . + . gene_id "W7K_16900"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 60992 61957 . + . gene_id "W7K_16900"; transcript_id "KOE98047"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 60992 61957 . + . gene_id "W7K_16900"; transcript_id "KOE98047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98047-1"; +contig12 ena CDS 60992 61954 . + 0 gene_id "W7K_16900"; transcript_id "KOE98047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98047"; +contig12 ena start_codon 60992 60994 . + 0 gene_id "W7K_16900"; transcript_id "KOE98047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 61955 61957 . + 0 gene_id "W7K_16900"; transcript_id "KOE98047"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 61951 64770 . - . gene_id "W7K_16905"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 61951 64770 . - . gene_id "W7K_16905"; transcript_id "KOE98048"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 61951 64770 . - . gene_id "W7K_16905"; transcript_id "KOE98048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98048-1"; +contig12 ena CDS 61954 64770 . - 0 gene_id "W7K_16905"; transcript_id "KOE98048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98048"; +contig12 ena start_codon 64768 64770 . - 0 gene_id "W7K_16905"; transcript_id "KOE98048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 61951 61953 . - 0 gene_id "W7K_16905"; transcript_id "KOE98048"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 64767 66914 . - . gene_id "W7K_16910"; gene_name "nfrB"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 64767 66914 . - . gene_id "W7K_16910"; transcript_id "KOE98049"; gene_name "nfrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nfrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 64767 66914 . - . gene_id "W7K_16910"; transcript_id "KOE98049"; exon_number "1"; gene_name "nfrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nfrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98049-1"; +contig12 ena CDS 64770 66914 . - 0 gene_id "W7K_16910"; transcript_id "KOE98049"; exon_number "1"; gene_name "nfrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nfrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98049"; +contig12 ena start_codon 66912 66914 . - 0 gene_id "W7K_16910"; transcript_id "KOE98049"; exon_number "1"; gene_name "nfrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nfrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 64767 64769 . - 0 gene_id "W7K_16910"; transcript_id "KOE98049"; exon_number "1"; gene_name "nfrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nfrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 66921 69122 . - . gene_id "W7K_16915"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 66921 69122 . - . gene_id "W7K_16915"; transcript_id "KOE98050"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 66921 69122 . - . gene_id "W7K_16915"; transcript_id "KOE98050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98050-1"; +contig12 ena CDS 66924 69122 . - 0 gene_id "W7K_16915"; transcript_id "KOE98050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98050"; +contig12 ena start_codon 69120 69122 . - 0 gene_id "W7K_16915"; transcript_id "KOE98050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 66921 66923 . - 0 gene_id "W7K_16915"; transcript_id "KOE98050"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 69119 70303 . - . gene_id "W7K_16920"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 69119 70303 . - . gene_id "W7K_16920"; transcript_id "KOE98051"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 69119 70303 . - . gene_id "W7K_16920"; transcript_id "KOE98051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98051-1"; +contig12 ena CDS 69122 70303 . - 0 gene_id "W7K_16920"; transcript_id "KOE98051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98051"; +contig12 ena start_codon 70301 70303 . - 0 gene_id "W7K_16920"; transcript_id "KOE98051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 69119 69121 . - 0 gene_id "W7K_16920"; transcript_id "KOE98051"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 70571 71605 . - . gene_id "W7K_16925"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 70571 71605 . - . gene_id "W7K_16925"; transcript_id "KOE98052"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 70571 71605 . - . gene_id "W7K_16925"; transcript_id "KOE98052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98052-1"; +contig12 ena CDS 70574 71605 . - 0 gene_id "W7K_16925"; transcript_id "KOE98052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98052"; +contig12 ena start_codon 71603 71605 . - 0 gene_id "W7K_16925"; transcript_id "KOE98052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 70571 70573 . - 0 gene_id "W7K_16925"; transcript_id "KOE98052"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 71596 74160 . - . gene_id "W7K_16930"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 71596 74160 . - . gene_id "W7K_16930"; transcript_id "KOE98053"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 71596 74160 . - . gene_id "W7K_16930"; transcript_id "KOE98053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98053-1"; +contig12 ena CDS 71599 74160 . - 0 gene_id "W7K_16930"; transcript_id "KOE98053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98053"; +contig12 ena start_codon 74158 74160 . - 0 gene_id "W7K_16930"; transcript_id "KOE98053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 71596 71598 . - 0 gene_id "W7K_16930"; transcript_id "KOE98053"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 74253 74981 . - . gene_id "W7K_16935"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 74253 74981 . - . gene_id "W7K_16935"; transcript_id "KOE98054"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 74253 74981 . - . gene_id "W7K_16935"; transcript_id "KOE98054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98054-1"; +contig12 ena CDS 74256 74981 . - 0 gene_id "W7K_16935"; transcript_id "KOE98054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98054"; +contig12 ena start_codon 74979 74981 . - 0 gene_id "W7K_16935"; transcript_id "KOE98054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 74253 74255 . - 0 gene_id "W7K_16935"; transcript_id "KOE98054"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 75067 75606 . - . gene_id "W7K_16940"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 75067 75606 . - . gene_id "W7K_16940"; transcript_id "KOE98055"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 75067 75606 . - . gene_id "W7K_16940"; transcript_id "KOE98055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98055-1"; +contig12 ena CDS 75070 75606 . - 0 gene_id "W7K_16940"; transcript_id "KOE98055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98055"; +contig12 ena start_codon 75604 75606 . - 0 gene_id "W7K_16940"; transcript_id "KOE98055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 75067 75069 . - 0 gene_id "W7K_16940"; transcript_id "KOE98055"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 76066 76431 . + . gene_id "W7K_16945"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 76066 76431 . + . gene_id "W7K_16945"; transcript_id "KOE98056"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 76066 76431 . + . gene_id "W7K_16945"; transcript_id "KOE98056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98056-1"; +contig12 ena CDS 76066 76428 . + 0 gene_id "W7K_16945"; transcript_id "KOE98056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98056"; +contig12 ena start_codon 76066 76068 . + 0 gene_id "W7K_16945"; transcript_id "KOE98056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 76429 76431 . + 0 gene_id "W7K_16945"; transcript_id "KOE98056"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 76457 77635 . - . gene_id "W7K_16950"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 76457 77635 . - . gene_id "W7K_16950"; transcript_id "KOE98057"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 76457 77635 . - . gene_id "W7K_16950"; transcript_id "KOE98057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98057-1"; +contig12 ena CDS 76460 77635 . - 0 gene_id "W7K_16950"; transcript_id "KOE98057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98057"; +contig12 ena start_codon 77633 77635 . - 0 gene_id "W7K_16950"; transcript_id "KOE98057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 76457 76459 . - 0 gene_id "W7K_16950"; transcript_id "KOE98057"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 77743 78582 . - . gene_id "W7K_16955"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 77743 78582 . - . gene_id "W7K_16955"; transcript_id "KOE98058"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 77743 78582 . - . gene_id "W7K_16955"; transcript_id "KOE98058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98058-1"; +contig12 ena CDS 77746 78582 . - 0 gene_id "W7K_16955"; transcript_id "KOE98058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98058"; +contig12 ena start_codon 78580 78582 . - 0 gene_id "W7K_16955"; transcript_id "KOE98058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 77743 77745 . - 0 gene_id "W7K_16955"; transcript_id "KOE98058"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 78579 79433 . - . gene_id "W7K_16960"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 78579 79433 . - . gene_id "W7K_16960"; transcript_id "KOE98059"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 78579 79433 . - . gene_id "W7K_16960"; transcript_id "KOE98059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98059-1"; +contig12 ena CDS 78582 79433 . - 0 gene_id "W7K_16960"; transcript_id "KOE98059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98059"; +contig12 ena start_codon 79431 79433 . - 0 gene_id "W7K_16960"; transcript_id "KOE98059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 78579 78581 . - 0 gene_id "W7K_16960"; transcript_id "KOE98059"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 79766 81967 . - . gene_id "W7K_16965"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 79766 81967 . - . gene_id "W7K_16965"; transcript_id "KOE98060"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 79766 81967 . - . gene_id "W7K_16965"; transcript_id "KOE98060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98060-1"; +contig12 ena CDS 79769 81967 . - 0 gene_id "W7K_16965"; transcript_id "KOE98060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98060"; +contig12 ena start_codon 81965 81967 . - 0 gene_id "W7K_16965"; transcript_id "KOE98060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 79766 79768 . - 0 gene_id "W7K_16965"; transcript_id "KOE98060"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 81977 82771 . - . gene_id "W7K_16970"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 81977 82771 . - . gene_id "W7K_16970"; transcript_id "KOE98061"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 81977 82771 . - . gene_id "W7K_16970"; transcript_id "KOE98061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98061-1"; +contig12 ena CDS 81980 82771 . - 0 gene_id "W7K_16970"; transcript_id "KOE98061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98061"; +contig12 ena start_codon 82769 82771 . - 0 gene_id "W7K_16970"; transcript_id "KOE98061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 81977 81979 . - 0 gene_id "W7K_16970"; transcript_id "KOE98061"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 82761 83468 . - . gene_id "W7K_16975"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 82761 83468 . - . gene_id "W7K_16975"; transcript_id "KOE98076"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 82761 83468 . - . gene_id "W7K_16975"; transcript_id "KOE98076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98076-1"; +contig12 ena CDS 82764 83468 . - 0 gene_id "W7K_16975"; transcript_id "KOE98076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98076"; +contig12 ena start_codon 83466 83468 . - 0 gene_id "W7K_16975"; transcript_id "KOE98076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 82761 82763 . - 0 gene_id "W7K_16975"; transcript_id "KOE98076"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 83449 84594 . - . gene_id "W7K_16980"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 83449 84594 . - . gene_id "W7K_16980"; transcript_id "KOE98062"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 83449 84594 . - . gene_id "W7K_16980"; transcript_id "KOE98062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98062-1"; +contig12 ena CDS 83452 84594 . - 0 gene_id "W7K_16980"; transcript_id "KOE98062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98062"; +contig12 ena start_codon 84592 84594 . - 0 gene_id "W7K_16980"; transcript_id "KOE98062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 83449 83451 . - 0 gene_id "W7K_16980"; transcript_id "KOE98062"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 84591 85454 . - . gene_id "W7K_16985"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 84591 85454 . - . gene_id "W7K_16985"; transcript_id "KOE98063"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 84591 85454 . - . gene_id "W7K_16985"; transcript_id "KOE98063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98063-1"; +contig12 ena CDS 84594 85454 . - 0 gene_id "W7K_16985"; transcript_id "KOE98063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98063"; +contig12 ena start_codon 85452 85454 . - 0 gene_id "W7K_16985"; transcript_id "KOE98063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 84591 84593 . - 0 gene_id "W7K_16985"; transcript_id "KOE98063"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 85451 86083 . - . gene_id "W7K_16990"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 85451 86083 . - . gene_id "W7K_16990"; transcript_id "KOE98064"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 85451 86083 . - . gene_id "W7K_16990"; transcript_id "KOE98064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98064-1"; +contig12 ena CDS 85454 86083 . - 0 gene_id "W7K_16990"; transcript_id "KOE98064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98064"; +contig12 ena start_codon 86081 86083 . - 0 gene_id "W7K_16990"; transcript_id "KOE98064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 85451 85453 . - 0 gene_id "W7K_16990"; transcript_id "KOE98064"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 86080 86499 . - . gene_id "W7K_16995"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 86080 86499 . - . gene_id "W7K_16995"; transcript_id "KOE98065"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 86080 86499 . - . gene_id "W7K_16995"; transcript_id "KOE98065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98065-1"; +contig12 ena CDS 86083 86499 . - 0 gene_id "W7K_16995"; transcript_id "KOE98065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98065"; +contig12 ena start_codon 86497 86499 . - 0 gene_id "W7K_16995"; transcript_id "KOE98065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 86080 86082 . - 0 gene_id "W7K_16995"; transcript_id "KOE98065"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 86496 86990 . - . gene_id "W7K_17000"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 86496 86990 . - . gene_id "W7K_17000"; transcript_id "KOE98066"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 86496 86990 . - . gene_id "W7K_17000"; transcript_id "KOE98066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98066-1"; +contig12 ena CDS 86499 86990 . - 0 gene_id "W7K_17000"; transcript_id "KOE98066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98066"; +contig12 ena start_codon 86988 86990 . - 0 gene_id "W7K_17000"; transcript_id "KOE98066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 86496 86498 . - 0 gene_id "W7K_17000"; transcript_id "KOE98066"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 86997 87440 . - . gene_id "W7K_17005"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 86997 87440 . - . gene_id "W7K_17005"; transcript_id "KOE98067"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 86997 87440 . - . gene_id "W7K_17005"; transcript_id "KOE98067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98067-1"; +contig12 ena CDS 87000 87440 . - 0 gene_id "W7K_17005"; transcript_id "KOE98067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98067"; +contig12 ena start_codon 87438 87440 . - 0 gene_id "W7K_17005"; transcript_id "KOE98067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 86997 86999 . - 0 gene_id "W7K_17005"; transcript_id "KOE98067"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 87490 88710 . - . gene_id "W7K_17010"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 87490 88710 . - . gene_id "W7K_17010"; transcript_id "KOE98068"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 87490 88710 . - . gene_id "W7K_17010"; transcript_id "KOE98068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98068-1"; +contig12 ena CDS 87493 88710 . - 0 gene_id "W7K_17010"; transcript_id "KOE98068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98068"; +contig12 ena start_codon 88708 88710 . - 0 gene_id "W7K_17010"; transcript_id "KOE98068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 87490 87492 . - 0 gene_id "W7K_17010"; transcript_id "KOE98068"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 88735 90459 . - . gene_id "W7K_17015"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 88735 90459 . - . gene_id "W7K_17015"; transcript_id "KOE98069"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 88735 90459 . - . gene_id "W7K_17015"; transcript_id "KOE98069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98069-1"; +contig12 ena CDS 88738 90459 . - 0 gene_id "W7K_17015"; transcript_id "KOE98069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98069"; +contig12 ena start_codon 90457 90459 . - 0 gene_id "W7K_17015"; transcript_id "KOE98069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 88735 88737 . - 0 gene_id "W7K_17015"; transcript_id "KOE98069"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 90596 92449 . - . gene_id "W7K_17020"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 90596 92449 . - . gene_id "W7K_17020"; transcript_id "KOE98070"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 90596 92449 . - . gene_id "W7K_17020"; transcript_id "KOE98070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98070-1"; +contig12 ena CDS 90599 92449 . - 0 gene_id "W7K_17020"; transcript_id "KOE98070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98070"; +contig12 ena start_codon 92447 92449 . - 0 gene_id "W7K_17020"; transcript_id "KOE98070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 90596 90598 . - 0 gene_id "W7K_17020"; transcript_id "KOE98070"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 92607 99788 . - . gene_id "W7K_17025"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 92607 99788 . - . gene_id "W7K_17025"; transcript_id "KOE98071"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 92607 99788 . - . gene_id "W7K_17025"; transcript_id "KOE98071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98071-1"; +contig12 ena CDS 92610 99788 . - 0 gene_id "W7K_17025"; transcript_id "KOE98071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98071"; +contig12 ena start_codon 99786 99788 . - 0 gene_id "W7K_17025"; transcript_id "KOE98071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 92607 92609 . - 0 gene_id "W7K_17025"; transcript_id "KOE98071"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena gene 100227 104147 . - . gene_id "W7K_17030"; gene_source "ena"; gene_biotype "protein_coding"; +contig12 ena transcript 100227 104147 . - . gene_id "W7K_17030"; transcript_id "KOE98072"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena exon 100227 104147 . - . gene_id "W7K_17030"; transcript_id "KOE98072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98072-1"; +contig12 ena CDS 100230 104147 . - 0 gene_id "W7K_17030"; transcript_id "KOE98072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98072"; +contig12 ena start_codon 104145 104147 . - 0 gene_id "W7K_17030"; transcript_id "KOE98072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig12 ena stop_codon 100227 100229 . - 0 gene_id "W7K_17030"; transcript_id "KOE98072"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 105 509 . - . gene_id "W7K_13160"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 105 509 . - . gene_id "W7K_13160"; transcript_id "KOE98676"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 105 509 . - . gene_id "W7K_13160"; transcript_id "KOE98676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98676-1"; +contig23 ena CDS 108 509 . - 0 gene_id "W7K_13160"; transcript_id "KOE98676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98676"; +contig23 ena start_codon 507 509 . - 0 gene_id "W7K_13160"; transcript_id "KOE98676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 105 107 . - 0 gene_id "W7K_13160"; transcript_id "KOE98676"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 506 1576 . - . gene_id "W7K_13165"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 506 1576 . - . gene_id "W7K_13165"; transcript_id "KOE98677"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 506 1576 . - . gene_id "W7K_13165"; transcript_id "KOE98677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98677-1"; +contig23 ena CDS 509 1576 . - 0 gene_id "W7K_13165"; transcript_id "KOE98677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98677"; +contig23 ena start_codon 1574 1576 . - 0 gene_id "W7K_13165"; transcript_id "KOE98677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 506 508 . - 0 gene_id "W7K_13165"; transcript_id "KOE98677"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 1594 3534 . - . gene_id "W7K_13170"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 1594 3534 . - . gene_id "W7K_13170"; transcript_id "KOE98678"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 1594 3534 . - . gene_id "W7K_13170"; transcript_id "KOE98678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98678-1"; +contig23 ena CDS 1597 3534 . - 0 gene_id "W7K_13170"; transcript_id "KOE98678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98678"; +contig23 ena start_codon 3532 3534 . - 0 gene_id "W7K_13170"; transcript_id "KOE98678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 1594 1596 . - 0 gene_id "W7K_13170"; transcript_id "KOE98678"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 3630 4415 . - . gene_id "W7K_13175"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 3630 4415 . - . gene_id "W7K_13175"; transcript_id "KOE98679"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 3630 4415 . - . gene_id "W7K_13175"; transcript_id "KOE98679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98679-1"; +contig23 ena CDS 3633 4415 . - 0 gene_id "W7K_13175"; transcript_id "KOE98679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98679"; +contig23 ena start_codon 4413 4415 . - 0 gene_id "W7K_13175"; transcript_id "KOE98679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 3630 3632 . - 0 gene_id "W7K_13175"; transcript_id "KOE98679"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 4412 5107 . - . gene_id "W7K_13180"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 4412 5107 . - . gene_id "W7K_13180"; transcript_id "KOE98680"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 4412 5107 . - . gene_id "W7K_13180"; transcript_id "KOE98680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98680-1"; +contig23 ena CDS 4415 5107 . - 0 gene_id "W7K_13180"; transcript_id "KOE98680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98680"; +contig23 ena start_codon 5105 5107 . - 0 gene_id "W7K_13180"; transcript_id "KOE98680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 4412 4414 . - 0 gene_id "W7K_13180"; transcript_id "KOE98680"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 5184 6500 . + . gene_id "W7K_13185"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 5184 6500 . + . gene_id "W7K_13185"; transcript_id "KOE98681"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 5184 6500 . + . gene_id "W7K_13185"; transcript_id "KOE98681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98681-1"; +contig23 ena CDS 5184 6497 . + 0 gene_id "W7K_13185"; transcript_id "KOE98681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98681"; +contig23 ena start_codon 5184 5186 . + 0 gene_id "W7K_13185"; transcript_id "KOE98681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 6498 6500 . + 0 gene_id "W7K_13185"; transcript_id "KOE98681"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 6509 7225 . - . gene_id "W7K_13190"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 6509 7225 . - . gene_id "W7K_13190"; transcript_id "KOE98682"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 6509 7225 . - . gene_id "W7K_13190"; transcript_id "KOE98682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98682-1"; +contig23 ena CDS 6512 7225 . - 0 gene_id "W7K_13190"; transcript_id "KOE98682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98682"; +contig23 ena start_codon 7223 7225 . - 0 gene_id "W7K_13190"; transcript_id "KOE98682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 6509 6511 . - 0 gene_id "W7K_13190"; transcript_id "KOE98682"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 7271 7723 . - . gene_id "W7K_13195"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 7271 7723 . - . gene_id "W7K_13195"; transcript_id "KOE98683"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 7271 7723 . - . gene_id "W7K_13195"; transcript_id "KOE98683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98683-1"; +contig23 ena CDS 7274 7723 . - 0 gene_id "W7K_13195"; transcript_id "KOE98683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98683"; +contig23 ena start_codon 7721 7723 . - 0 gene_id "W7K_13195"; transcript_id "KOE98683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 7271 7273 . - 0 gene_id "W7K_13195"; transcript_id "KOE98683"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 7799 9424 . - . gene_id "W7K_13200"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 7799 9424 . - . gene_id "W7K_13200"; transcript_id "KOE98684"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 7799 9424 . - . gene_id "W7K_13200"; transcript_id "KOE98684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98684-1"; +contig23 ena CDS 7802 9424 . - 0 gene_id "W7K_13200"; transcript_id "KOE98684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98684"; +contig23 ena start_codon 9422 9424 . - 0 gene_id "W7K_13200"; transcript_id "KOE98684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 7799 7801 . - 0 gene_id "W7K_13200"; transcript_id "KOE98684"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 9421 11121 . - . gene_id "W7K_13205"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 9421 11121 . - . gene_id "W7K_13205"; transcript_id "KOE98685"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 9421 11121 . - . gene_id "W7K_13205"; transcript_id "KOE98685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98685-1"; +contig23 ena CDS 9424 11121 . - 0 gene_id "W7K_13205"; transcript_id "KOE98685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98685"; +contig23 ena start_codon 11119 11121 . - 0 gene_id "W7K_13205"; transcript_id "KOE98685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 9421 9423 . - 0 gene_id "W7K_13205"; transcript_id "KOE98685"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 11229 12086 . - . gene_id "W7K_13210"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 11229 12086 . - . gene_id "W7K_13210"; transcript_id "KOE98686"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 11229 12086 . - . gene_id "W7K_13210"; transcript_id "KOE98686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98686-1"; +contig23 ena CDS 11232 12086 . - 0 gene_id "W7K_13210"; transcript_id "KOE98686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98686"; +contig23 ena start_codon 12084 12086 . - 0 gene_id "W7K_13210"; transcript_id "KOE98686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 11229 11231 . - 0 gene_id "W7K_13210"; transcript_id "KOE98686"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 12211 12822 . + . gene_id "W7K_13215"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 12211 12822 . + . gene_id "W7K_13215"; transcript_id "KOE98687"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 12211 12822 . + . gene_id "W7K_13215"; transcript_id "KOE98687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98687-1"; +contig23 ena CDS 12211 12819 . + 0 gene_id "W7K_13215"; transcript_id "KOE98687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98687"; +contig23 ena start_codon 12211 12213 . + 0 gene_id "W7K_13215"; transcript_id "KOE98687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 12820 12822 . + 0 gene_id "W7K_13215"; transcript_id "KOE98687"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 12928 15570 . + . gene_id "W7K_13220"; gene_name "leuS"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 12928 15570 . + . gene_id "W7K_13220"; transcript_id "KOE98751"; gene_name "leuS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "leuS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 12928 15570 . + . gene_id "W7K_13220"; transcript_id "KOE98751"; exon_number "1"; gene_name "leuS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "leuS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98751-1"; +contig23 ena CDS 12928 15567 . + 0 gene_id "W7K_13220"; transcript_id "KOE98751"; exon_number "1"; gene_name "leuS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "leuS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98751"; +contig23 ena start_codon 12928 12930 . + 0 gene_id "W7K_13220"; transcript_id "KOE98751"; exon_number "1"; gene_name "leuS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "leuS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 15568 15570 . + 0 gene_id "W7K_13220"; transcript_id "KOE98751"; exon_number "1"; gene_name "leuS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "leuS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 15707 16291 . + . gene_id "W7K_13225"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 15707 16291 . + . gene_id "W7K_13225"; transcript_id "KOE98688"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 15707 16291 . + . gene_id "W7K_13225"; transcript_id "KOE98688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98688-1"; +contig23 ena CDS 15707 16288 . + 0 gene_id "W7K_13225"; transcript_id "KOE98688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98688"; +contig23 ena start_codon 15707 15709 . + 0 gene_id "W7K_13225"; transcript_id "KOE98688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 16289 16291 . + 0 gene_id "W7K_13225"; transcript_id "KOE98688"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 16301 17338 . + . gene_id "W7K_13230"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 16301 17338 . + . gene_id "W7K_13230"; transcript_id "KOE98689"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 16301 17338 . + . gene_id "W7K_13230"; transcript_id "KOE98689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98689-1"; +contig23 ena CDS 16301 17335 . + 0 gene_id "W7K_13230"; transcript_id "KOE98689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98689"; +contig23 ena start_codon 16301 16303 . + 0 gene_id "W7K_13230"; transcript_id "KOE98689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 17336 17338 . + 0 gene_id "W7K_13230"; transcript_id "KOE98689"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 17342 18007 . + . gene_id "W7K_13235"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 17342 18007 . + . gene_id "W7K_13235"; transcript_id "KOE98690"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 17342 18007 . + . gene_id "W7K_13235"; transcript_id "KOE98690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98690-1"; +contig23 ena CDS 17342 18004 . + 0 gene_id "W7K_13235"; transcript_id "KOE98690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98690"; +contig23 ena start_codon 17342 17344 . + 0 gene_id "W7K_13235"; transcript_id "KOE98690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 18005 18007 . + 0 gene_id "W7K_13235"; transcript_id "KOE98690"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 18066 18476 . + . gene_id "W7K_13240"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 18066 18476 . + . gene_id "W7K_13240"; transcript_id "KOE98691"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 18066 18476 . + . gene_id "W7K_13240"; transcript_id "KOE98691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98691-1"; +contig23 ena CDS 18066 18473 . + 0 gene_id "W7K_13240"; transcript_id "KOE98691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98691"; +contig23 ena start_codon 18066 18068 . + 0 gene_id "W7K_13240"; transcript_id "KOE98691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 18474 18476 . + 0 gene_id "W7K_13240"; transcript_id "KOE98691"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 18541 19011 . + . gene_id "W7K_13245"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 18541 19011 . + . gene_id "W7K_13245"; transcript_id "KOE98692"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 18541 19011 . + . gene_id "W7K_13245"; transcript_id "KOE98692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98692-1"; +contig23 ena CDS 18541 19008 . + 0 gene_id "W7K_13245"; transcript_id "KOE98692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98692"; +contig23 ena start_codon 18541 18543 . + 0 gene_id "W7K_13245"; transcript_id "KOE98692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 19009 19011 . + 0 gene_id "W7K_13245"; transcript_id "KOE98692"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 19034 19110 . + . gene_id "W7K_13250"; gene_source "ena"; gene_biotype "tRNA"; +contig23 ena transcript 19034 19110 . + . gene_id "W7K_13250"; transcript_id "EBT00051077620"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_13250"; transcript_source "ena"; transcript_biotype "tRNA"; +contig23 ena exon 19034 19110 . + . gene_id "W7K_13250"; transcript_id "EBT00051077620"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_13250"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_13250-1"; +contig23 ena gene 19239 20660 . - . gene_id "W7K_13255"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 19239 20660 . - . gene_id "W7K_13255"; transcript_id "KOE98693"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 19239 20660 . - . gene_id "W7K_13255"; transcript_id "KOE98693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98693-1"; +contig23 ena CDS 19242 20660 . - 0 gene_id "W7K_13255"; transcript_id "KOE98693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98693"; +contig23 ena start_codon 20658 20660 . - 0 gene_id "W7K_13255"; transcript_id "KOE98693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 19239 19241 . - 0 gene_id "W7K_13255"; transcript_id "KOE98693"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 20799 23636 . - . gene_id "W7K_13260"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 20799 23636 . - . gene_id "W7K_13260"; transcript_id "KOE98694"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 20799 23636 . - . gene_id "W7K_13260"; transcript_id "KOE98694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98694-1"; +contig23 ena CDS 20802 23636 . - 0 gene_id "W7K_13260"; transcript_id "KOE98694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98694"; +contig23 ena start_codon 23634 23636 . - 0 gene_id "W7K_13260"; transcript_id "KOE98694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 20799 20801 . - 0 gene_id "W7K_13260"; transcript_id "KOE98694"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 23828 24478 . - . gene_id "W7K_13265"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 23828 24478 . - . gene_id "W7K_13265"; transcript_id "KOE98695"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 23828 24478 . - . gene_id "W7K_13265"; transcript_id "KOE98695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98695-1"; +contig23 ena CDS 23831 24478 . - 0 gene_id "W7K_13265"; transcript_id "KOE98695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98695"; +contig23 ena start_codon 24476 24478 . - 0 gene_id "W7K_13265"; transcript_id "KOE98695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 23828 23830 . - 0 gene_id "W7K_13265"; transcript_id "KOE98695"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 24696 25433 . - . gene_id "W7K_13270"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 24696 25433 . - . gene_id "W7K_13270"; transcript_id "KOE98696"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 24696 25433 . - . gene_id "W7K_13270"; transcript_id "KOE98696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98696-1"; +contig23 ena CDS 24699 25433 . - 0 gene_id "W7K_13270"; transcript_id "KOE98696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98696"; +contig23 ena start_codon 25431 25433 . - 0 gene_id "W7K_13270"; transcript_id "KOE98696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 24696 24698 . - 0 gene_id "W7K_13270"; transcript_id "KOE98696"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 25565 26173 . + . gene_id "W7K_13275"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 25565 26173 . + . gene_id "W7K_13275"; transcript_id "KOE98697"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 25565 26173 . + . gene_id "W7K_13275"; transcript_id "KOE98697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98697-1"; +contig23 ena CDS 25565 26170 . + 0 gene_id "W7K_13275"; transcript_id "KOE98697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98697"; +contig23 ena start_codon 25565 25567 . + 0 gene_id "W7K_13275"; transcript_id "KOE98697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 26171 26173 . + 0 gene_id "W7K_13275"; transcript_id "KOE98697"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 26166 27653 . + . gene_id "W7K_13280"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 26166 27653 . + . gene_id "W7K_13280"; transcript_id "KOE98698"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 26166 27653 . + . gene_id "W7K_13280"; transcript_id "KOE98698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98698-1"; +contig23 ena CDS 26166 27650 . + 0 gene_id "W7K_13280"; transcript_id "KOE98698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98698"; +contig23 ena start_codon 26166 26168 . + 0 gene_id "W7K_13280"; transcript_id "KOE98698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 27651 27653 . + 0 gene_id "W7K_13280"; transcript_id "KOE98698"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 27684 31538 . + . gene_id "W7K_13285"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 27684 31538 . + . gene_id "W7K_13285"; transcript_id "KOE98699"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 27684 31538 . + . gene_id "W7K_13285"; transcript_id "KOE98699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98699-1"; +contig23 ena CDS 27684 31535 . + 0 gene_id "W7K_13285"; transcript_id "KOE98699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98699"; +contig23 ena start_codon 27684 27686 . + 0 gene_id "W7K_13285"; transcript_id "KOE98699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 31536 31538 . + 0 gene_id "W7K_13285"; transcript_id "KOE98699"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 31599 33044 . + . gene_id "W7K_13290"; gene_name "tldD"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 31599 33044 . + . gene_id "W7K_13290"; transcript_id "KOE98700"; gene_name "tldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 31599 33044 . + . gene_id "W7K_13290"; transcript_id "KOE98700"; exon_number "1"; gene_name "tldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98700-1"; +contig23 ena CDS 31599 33041 . + 0 gene_id "W7K_13290"; transcript_id "KOE98700"; exon_number "1"; gene_name "tldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98700"; +contig23 ena start_codon 31599 31601 . + 0 gene_id "W7K_13290"; transcript_id "KOE98700"; exon_number "1"; gene_name "tldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 33042 33044 . + 0 gene_id "W7K_13290"; transcript_id "KOE98700"; exon_number "1"; gene_name "tldD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tldD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 33086 33673 . - . gene_id "W7K_13295"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 33086 33673 . - . gene_id "W7K_13295"; transcript_id "KOE98701"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 33086 33673 . - . gene_id "W7K_13295"; transcript_id "KOE98701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98701-1"; +contig23 ena CDS 33089 33673 . - 0 gene_id "W7K_13295"; transcript_id "KOE98701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98701"; +contig23 ena start_codon 33671 33673 . - 0 gene_id "W7K_13295"; transcript_id "KOE98701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 33086 33088 . - 0 gene_id "W7K_13295"; transcript_id "KOE98701"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 33742 35109 . + . gene_id "W7K_13300"; gene_name "pmbA"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 33742 35109 . + . gene_id "W7K_13300"; transcript_id "KOE98702"; gene_name "pmbA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pmbA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 33742 35109 . + . gene_id "W7K_13300"; transcript_id "KOE98702"; exon_number "1"; gene_name "pmbA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pmbA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98702-1"; +contig23 ena CDS 33742 35106 . + 0 gene_id "W7K_13300"; transcript_id "KOE98702"; exon_number "1"; gene_name "pmbA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pmbA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98702"; +contig23 ena start_codon 33742 33744 . + 0 gene_id "W7K_13300"; transcript_id "KOE98702"; exon_number "1"; gene_name "pmbA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pmbA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 35107 35109 . + 0 gene_id "W7K_13300"; transcript_id "KOE98702"; exon_number "1"; gene_name "pmbA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pmbA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 35197 35568 . + . gene_id "W7K_13305"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 35197 35568 . + . gene_id "W7K_13305"; transcript_id "KOE98703"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 35197 35568 . + . gene_id "W7K_13305"; transcript_id "KOE98703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98703-1"; +contig23 ena CDS 35197 35565 . + 0 gene_id "W7K_13305"; transcript_id "KOE98703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98703"; +contig23 ena start_codon 35197 35199 . + 0 gene_id "W7K_13305"; transcript_id "KOE98703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 35566 35568 . + 0 gene_id "W7K_13305"; transcript_id "KOE98703"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 35654 36532 . - . gene_id "W7K_13310"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 35654 36532 . - . gene_id "W7K_13310"; transcript_id "KOE98704"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 35654 36532 . - . gene_id "W7K_13310"; transcript_id "KOE98704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98704-1"; +contig23 ena CDS 35657 36532 . - 0 gene_id "W7K_13310"; transcript_id "KOE98704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98704"; +contig23 ena start_codon 36530 36532 . - 0 gene_id "W7K_13310"; transcript_id "KOE98704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 35654 35656 . - 0 gene_id "W7K_13310"; transcript_id "KOE98704"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 36522 36782 . - . gene_id "W7K_13315"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 36522 36782 . - . gene_id "W7K_13315"; transcript_id "KOE98705"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 36522 36782 . - . gene_id "W7K_13315"; transcript_id "KOE98705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98705-1"; +contig23 ena CDS 36525 36782 . - 0 gene_id "W7K_13315"; transcript_id "KOE98705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98705"; +contig23 ena start_codon 36780 36782 . - 0 gene_id "W7K_13315"; transcript_id "KOE98705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 36522 36524 . - 0 gene_id "W7K_13315"; transcript_id "KOE98705"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 36819 38147 . - . gene_id "W7K_13320"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 36819 38147 . - . gene_id "W7K_13320"; transcript_id "KOE98706"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 36819 38147 . - . gene_id "W7K_13320"; transcript_id "KOE98706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98706-1"; +contig23 ena CDS 36822 38147 . - 0 gene_id "W7K_13320"; transcript_id "KOE98706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98706"; +contig23 ena start_codon 38145 38147 . - 0 gene_id "W7K_13320"; transcript_id "KOE98706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 36819 36821 . - 0 gene_id "W7K_13320"; transcript_id "KOE98706"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 38647 39192 . - . gene_id "W7K_13325"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 38647 39192 . - . gene_id "W7K_13325"; transcript_id "KOE98707"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 38647 39192 . - . gene_id "W7K_13325"; transcript_id "KOE98707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98707-1"; +contig23 ena CDS 38650 39192 . - 0 gene_id "W7K_13325"; transcript_id "KOE98707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98707"; +contig23 ena start_codon 39190 39192 . - 0 gene_id "W7K_13325"; transcript_id "KOE98707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 38647 38649 . - 0 gene_id "W7K_13325"; transcript_id "KOE98707"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 39189 40895 . - . gene_id "W7K_13330"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 39189 40895 . - . gene_id "W7K_13330"; transcript_id "KOE98708"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 39189 40895 . - . gene_id "W7K_13330"; transcript_id "KOE98708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98708-1"; +contig23 ena CDS 39192 40895 . - 0 gene_id "W7K_13330"; transcript_id "KOE98708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98708"; +contig23 ena start_codon 40893 40895 . - 0 gene_id "W7K_13330"; transcript_id "KOE98708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 39189 39191 . - 0 gene_id "W7K_13330"; transcript_id "KOE98708"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 41050 42384 . + . gene_id "W7K_13335"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 41050 42384 . + . gene_id "W7K_13335"; transcript_id "KOE98709"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 41050 42384 . + . gene_id "W7K_13335"; transcript_id "KOE98709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98709-1"; +contig23 ena CDS 41050 42381 . + 0 gene_id "W7K_13335"; transcript_id "KOE98709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98709"; +contig23 ena start_codon 41050 41052 . + 0 gene_id "W7K_13335"; transcript_id "KOE98709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 42382 42384 . + 0 gene_id "W7K_13335"; transcript_id "KOE98709"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 42644 43402 . - . gene_id "W7K_13340"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 42644 43402 . - . gene_id "W7K_13340"; transcript_id "KOE98752"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 42644 43402 . - . gene_id "W7K_13340"; transcript_id "KOE98752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98752-1"; +contig23 ena CDS 42647 43402 . - 0 gene_id "W7K_13340"; transcript_id "KOE98752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98752"; +contig23 ena start_codon 43400 43402 . - 0 gene_id "W7K_13340"; transcript_id "KOE98752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 42644 42646 . - 0 gene_id "W7K_13340"; transcript_id "KOE98752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 43549 44127 . - . gene_id "W7K_13345"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 43549 44127 . - . gene_id "W7K_13345"; transcript_id "KOE98753"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 43549 44127 . - . gene_id "W7K_13345"; transcript_id "KOE98753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98753-1"; +contig23 ena CDS 43552 44127 . - 0 gene_id "W7K_13345"; transcript_id "KOE98753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98753"; +contig23 ena start_codon 44125 44127 . - 0 gene_id "W7K_13345"; transcript_id "KOE98753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 43549 43551 . - 0 gene_id "W7K_13345"; transcript_id "KOE98753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 44201 44683 . + . gene_id "W7K_13350"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 44201 44683 . + . gene_id "W7K_13350"; transcript_id "KOE98710"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 44201 44683 . + . gene_id "W7K_13350"; transcript_id "KOE98710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98710-1"; +contig23 ena CDS 44201 44680 . + 0 gene_id "W7K_13350"; transcript_id "KOE98710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98710"; +contig23 ena start_codon 44201 44203 . + 0 gene_id "W7K_13350"; transcript_id "KOE98710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 44681 44683 . + 0 gene_id "W7K_13350"; transcript_id "KOE98710"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 44783 46027 . + . gene_id "W7K_13355"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 44783 46027 . + . gene_id "W7K_13355"; transcript_id "KOE98711"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 44783 46027 . + . gene_id "W7K_13355"; transcript_id "KOE98711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98711-1"; +contig23 ena CDS 44783 46024 . + 0 gene_id "W7K_13355"; transcript_id "KOE98711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98711"; +contig23 ena start_codon 44783 44785 . + 0 gene_id "W7K_13355"; transcript_id "KOE98711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 46025 46027 . + 0 gene_id "W7K_13355"; transcript_id "KOE98711"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 46031 47281 . + . gene_id "W7K_13360"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 46031 47281 . + . gene_id "W7K_13360"; transcript_id "KOE98712"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 46031 47281 . + . gene_id "W7K_13360"; transcript_id "KOE98712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98712-1"; +contig23 ena CDS 46031 47278 . + 0 gene_id "W7K_13360"; transcript_id "KOE98712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98712"; +contig23 ena start_codon 46031 46033 . + 0 gene_id "W7K_13360"; transcript_id "KOE98712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 47279 47281 . + 0 gene_id "W7K_13360"; transcript_id "KOE98712"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 47278 48636 . + . gene_id "W7K_13365"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 47278 48636 . + . gene_id "W7K_13365"; transcript_id "KOE98713"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 47278 48636 . + . gene_id "W7K_13365"; transcript_id "KOE98713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98713-1"; +contig23 ena CDS 47278 48633 . + 0 gene_id "W7K_13365"; transcript_id "KOE98713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98713"; +contig23 ena start_codon 47278 47280 . + 0 gene_id "W7K_13365"; transcript_id "KOE98713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 48634 48636 . + 0 gene_id "W7K_13365"; transcript_id "KOE98713"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 48794 49714 . + . gene_id "W7K_13370"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 48794 49714 . + . gene_id "W7K_13370"; transcript_id "KOE98754"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 48794 49714 . + . gene_id "W7K_13370"; transcript_id "KOE98754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98754-1"; +contig23 ena CDS 48794 49711 . + 0 gene_id "W7K_13370"; transcript_id "KOE98754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98754"; +contig23 ena start_codon 48794 48796 . + 0 gene_id "W7K_13370"; transcript_id "KOE98754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 49712 49714 . + 0 gene_id "W7K_13370"; transcript_id "KOE98754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 49747 50049 . + . gene_id "W7K_13375"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 49747 50049 . + . gene_id "W7K_13375"; transcript_id "KOE98714"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 49747 50049 . + . gene_id "W7K_13375"; transcript_id "KOE98714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98714-1"; +contig23 ena CDS 49747 50046 . + 0 gene_id "W7K_13375"; transcript_id "KOE98714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98714"; +contig23 ena start_codon 49747 49749 . + 0 gene_id "W7K_13375"; transcript_id "KOE98714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 50047 50049 . + 0 gene_id "W7K_13375"; transcript_id "KOE98714"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 50143 50817 . + . gene_id "W7K_13380"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 50143 50817 . + . gene_id "W7K_13380"; transcript_id "KOE98715"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 50143 50817 . + . gene_id "W7K_13380"; transcript_id "KOE98715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98715-1"; +contig23 ena CDS 50143 50814 . + 0 gene_id "W7K_13380"; transcript_id "KOE98715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98715"; +contig23 ena start_codon 50143 50145 . + 0 gene_id "W7K_13380"; transcript_id "KOE98715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 50815 50817 . + 0 gene_id "W7K_13380"; transcript_id "KOE98715"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 50917 52500 . - . gene_id "W7K_13385"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 50917 52500 . - . gene_id "W7K_13385"; transcript_id "KOE98716"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 50917 52500 . - . gene_id "W7K_13385"; transcript_id "KOE98716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98716-1"; +contig23 ena CDS 50920 52500 . - 0 gene_id "W7K_13385"; transcript_id "KOE98716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98716"; +contig23 ena start_codon 52498 52500 . - 0 gene_id "W7K_13385"; transcript_id "KOE98716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 50917 50919 . - 0 gene_id "W7K_13385"; transcript_id "KOE98716"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 52577 53071 . - . gene_id "W7K_13390"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 52577 53071 . - . gene_id "W7K_13390"; transcript_id "KOE98717"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 52577 53071 . - . gene_id "W7K_13390"; transcript_id "KOE98717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98717-1"; +contig23 ena CDS 52580 53071 . - 0 gene_id "W7K_13390"; transcript_id "KOE98717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98717"; +contig23 ena start_codon 53069 53071 . - 0 gene_id "W7K_13390"; transcript_id "KOE98717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 52577 52579 . - 0 gene_id "W7K_13390"; transcript_id "KOE98717"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 53195 55201 . - . gene_id "W7K_13395"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 53195 55201 . - . gene_id "W7K_13395"; transcript_id "KOE98718"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 53195 55201 . - . gene_id "W7K_13395"; transcript_id "KOE98718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98718-1"; +contig23 ena CDS 53198 55201 . - 0 gene_id "W7K_13395"; transcript_id "KOE98718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98718"; +contig23 ena start_codon 55199 55201 . - 0 gene_id "W7K_13395"; transcript_id "KOE98718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 53195 53197 . - 0 gene_id "W7K_13395"; transcript_id "KOE98718"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 55424 57526 . - . gene_id "W7K_13400"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 55424 57526 . - . gene_id "W7K_13400"; transcript_id "KOE98755"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 55424 57526 . - . gene_id "W7K_13400"; transcript_id "KOE98755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98755-1"; +contig23 ena CDS 55427 57526 . - 0 gene_id "W7K_13400"; transcript_id "KOE98755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98755"; +contig23 ena start_codon 57524 57526 . - 0 gene_id "W7K_13400"; transcript_id "KOE98755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 55424 55426 . - 0 gene_id "W7K_13400"; transcript_id "KOE98755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 57717 60569 . - . gene_id "W7K_13405"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 57717 60569 . - . gene_id "W7K_13405"; transcript_id "KOE98719"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 57717 60569 . - . gene_id "W7K_13405"; transcript_id "KOE98719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98719-1"; +contig23 ena CDS 57720 60569 . - 0 gene_id "W7K_13405"; transcript_id "KOE98719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98719"; +contig23 ena start_codon 60567 60569 . - 0 gene_id "W7K_13405"; transcript_id "KOE98719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 57717 57719 . - 0 gene_id "W7K_13405"; transcript_id "KOE98719"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 60757 62784 . - . gene_id "W7K_13410"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 60757 62784 . - . gene_id "W7K_13410"; transcript_id "KOE98720"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 60757 62784 . - . gene_id "W7K_13410"; transcript_id "KOE98720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98720-1"; +contig23 ena CDS 60760 62784 . - 0 gene_id "W7K_13410"; transcript_id "KOE98720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98720"; +contig23 ena start_codon 62782 62784 . - 0 gene_id "W7K_13410"; transcript_id "KOE98720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 60757 60759 . - 0 gene_id "W7K_13410"; transcript_id "KOE98720"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 62952 65759 . - . gene_id "W7K_13415"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 62952 65759 . - . gene_id "W7K_13415"; transcript_id "KOE98721"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 62952 65759 . - . gene_id "W7K_13415"; transcript_id "KOE98721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98721-1"; +contig23 ena CDS 62955 65759 . - 0 gene_id "W7K_13415"; transcript_id "KOE98721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98721"; +contig23 ena start_codon 65757 65759 . - 0 gene_id "W7K_13415"; transcript_id "KOE98721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 62952 62954 . - 0 gene_id "W7K_13415"; transcript_id "KOE98721"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 66100 68889 . - . gene_id "W7K_13420"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 66100 68889 . - . gene_id "W7K_13420"; transcript_id "KOE98722"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 66100 68889 . - . gene_id "W7K_13420"; transcript_id "KOE98722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98722-1"; +contig23 ena CDS 66103 68889 . - 0 gene_id "W7K_13420"; transcript_id "KOE98722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98722"; +contig23 ena start_codon 68887 68889 . - 0 gene_id "W7K_13420"; transcript_id "KOE98722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 66100 66102 . - 0 gene_id "W7K_13420"; transcript_id "KOE98722"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 69104 69958 . + . gene_id "W7K_13425"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 69104 69958 . + . gene_id "W7K_13425"; transcript_id "KOE98756"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 69104 69958 . + . gene_id "W7K_13425"; transcript_id "KOE98756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98756-1"; +contig23 ena CDS 69104 69955 . + 0 gene_id "W7K_13425"; transcript_id "KOE98756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98756"; +contig23 ena start_codon 69104 69106 . + 0 gene_id "W7K_13425"; transcript_id "KOE98756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 69956 69958 . + 0 gene_id "W7K_13425"; transcript_id "KOE98756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 70036 70608 . + . gene_id "W7K_13430"; gene_name "dcd"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 70036 70608 . + . gene_id "W7K_13430"; transcript_id "KOE98723"; gene_name "dcd"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dcd-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 70036 70608 . + . gene_id "W7K_13430"; transcript_id "KOE98723"; exon_number "1"; gene_name "dcd"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dcd-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98723-1"; +contig23 ena CDS 70036 70605 . + 0 gene_id "W7K_13430"; transcript_id "KOE98723"; exon_number "1"; gene_name "dcd"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dcd-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98723"; +contig23 ena start_codon 70036 70038 . + 0 gene_id "W7K_13430"; transcript_id "KOE98723"; exon_number "1"; gene_name "dcd"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dcd-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 70606 70608 . + 0 gene_id "W7K_13430"; transcript_id "KOE98723"; exon_number "1"; gene_name "dcd"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dcd-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 70684 70851 . - . gene_id "W7K_13435"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 70684 70851 . - . gene_id "W7K_13435"; transcript_id "KOE98724"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 70684 70851 . - . gene_id "W7K_13435"; transcript_id "KOE98724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98724-1"; +contig23 ena CDS 70687 70851 . - 0 gene_id "W7K_13435"; transcript_id "KOE98724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98724"; +contig23 ena start_codon 70849 70851 . - 0 gene_id "W7K_13435"; transcript_id "KOE98724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 70684 70686 . - 0 gene_id "W7K_13435"; transcript_id "KOE98724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 70867 71289 . - . gene_id "W7K_13440"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 70867 71289 . - . gene_id "W7K_13440"; transcript_id "KOE98725"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 70867 71289 . - . gene_id "W7K_13440"; transcript_id "KOE98725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98725-1"; +contig23 ena CDS 70870 71289 . - 0 gene_id "W7K_13440"; transcript_id "KOE98725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98725"; +contig23 ena start_codon 71287 71289 . - 0 gene_id "W7K_13440"; transcript_id "KOE98725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 70867 70869 . - 0 gene_id "W7K_13440"; transcript_id "KOE98725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 71286 71957 . - . gene_id "W7K_13445"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 71286 71957 . - . gene_id "W7K_13445"; transcript_id "KOE98726"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 71286 71957 . - . gene_id "W7K_13445"; transcript_id "KOE98726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98726-1"; +contig23 ena CDS 71289 71957 . - 0 gene_id "W7K_13445"; transcript_id "KOE98726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98726"; +contig23 ena start_codon 71955 71957 . - 0 gene_id "W7K_13445"; transcript_id "KOE98726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 71286 71288 . - 0 gene_id "W7K_13445"; transcript_id "KOE98726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 72161 73522 . + . gene_id "W7K_13450"; gene_name "rimO"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 72161 73522 . + . gene_id "W7K_13450"; transcript_id "KOE98727"; gene_name "rimO"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rimO-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 72161 73522 . + . gene_id "W7K_13450"; transcript_id "KOE98727"; exon_number "1"; gene_name "rimO"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rimO-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98727-1"; +contig23 ena CDS 72161 73519 . + 0 gene_id "W7K_13450"; transcript_id "KOE98727"; exon_number "1"; gene_name "rimO"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rimO-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98727"; +contig23 ena start_codon 72161 72163 . + 0 gene_id "W7K_13450"; transcript_id "KOE98727"; exon_number "1"; gene_name "rimO"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rimO-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 73520 73522 . + 0 gene_id "W7K_13450"; transcript_id "KOE98727"; exon_number "1"; gene_name "rimO"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rimO-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 73519 74358 . + . gene_id "W7K_13455"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 73519 74358 . + . gene_id "W7K_13455"; transcript_id "KOE98728"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 73519 74358 . + . gene_id "W7K_13455"; transcript_id "KOE98728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98728-1"; +contig23 ena CDS 73519 74355 . + 0 gene_id "W7K_13455"; transcript_id "KOE98728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98728"; +contig23 ena start_codon 73519 73521 . + 0 gene_id "W7K_13455"; transcript_id "KOE98728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 74356 74358 . + 0 gene_id "W7K_13455"; transcript_id "KOE98728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 74469 74978 . - . gene_id "W7K_13460"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 74469 74978 . - . gene_id "W7K_13460"; transcript_id "KOE98729"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 74469 74978 . - . gene_id "W7K_13460"; transcript_id "KOE98729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98729-1"; +contig23 ena CDS 74472 74978 . - 0 gene_id "W7K_13460"; transcript_id "KOE98729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98729"; +contig23 ena start_codon 74976 74978 . - 0 gene_id "W7K_13460"; transcript_id "KOE98729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 74469 74471 . - 0 gene_id "W7K_13460"; transcript_id "KOE98729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 75060 76565 . - . gene_id "W7K_13465"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 75060 76565 . - . gene_id "W7K_13465"; transcript_id "KOE98730"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 75060 76565 . - . gene_id "W7K_13465"; transcript_id "KOE98730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98730-1"; +contig23 ena CDS 75063 76565 . - 0 gene_id "W7K_13465"; transcript_id "KOE98730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98730"; +contig23 ena start_codon 76563 76565 . - 0 gene_id "W7K_13465"; transcript_id "KOE98730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 75060 75062 . - 0 gene_id "W7K_13465"; transcript_id "KOE98730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 76688 78292 . + . gene_id "W7K_13470"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 76688 78292 . + . gene_id "W7K_13470"; transcript_id "KOE98731"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 76688 78292 . + . gene_id "W7K_13470"; transcript_id "KOE98731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98731-1"; +contig23 ena CDS 76688 78289 . + 0 gene_id "W7K_13470"; transcript_id "KOE98731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98731"; +contig23 ena start_codon 76688 76690 . + 0 gene_id "W7K_13470"; transcript_id "KOE98731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 78290 78292 . + 0 gene_id "W7K_13470"; transcript_id "KOE98731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 78316 78663 . + . gene_id "W7K_13475"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 78316 78663 . + . gene_id "W7K_13475"; transcript_id "KOE98732"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 78316 78663 . + . gene_id "W7K_13475"; transcript_id "KOE98732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98732-1"; +contig23 ena CDS 78316 78660 . + 0 gene_id "W7K_13475"; transcript_id "KOE98732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98732"; +contig23 ena start_codon 78316 78318 . + 0 gene_id "W7K_13475"; transcript_id "KOE98732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 78661 78663 . + 0 gene_id "W7K_13475"; transcript_id "KOE98732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 78771 79613 . - . gene_id "W7K_13480"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 78771 79613 . - . gene_id "W7K_13480"; transcript_id "KOE98733"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 78771 79613 . - . gene_id "W7K_13480"; transcript_id "KOE98733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98733-1"; +contig23 ena CDS 78774 79613 . - 0 gene_id "W7K_13480"; transcript_id "KOE98733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98733"; +contig23 ena start_codon 79611 79613 . - 0 gene_id "W7K_13480"; transcript_id "KOE98733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 78771 78773 . - 0 gene_id "W7K_13480"; transcript_id "KOE98733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 79610 80260 . - . gene_id "W7K_13485"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 79610 80260 . - . gene_id "W7K_13485"; transcript_id "KOE98734"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 79610 80260 . - . gene_id "W7K_13485"; transcript_id "KOE98734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98734-1"; +contig23 ena CDS 79613 80260 . - 0 gene_id "W7K_13485"; transcript_id "KOE98734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98734"; +contig23 ena start_codon 80258 80260 . - 0 gene_id "W7K_13485"; transcript_id "KOE98734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 79610 79612 . - 0 gene_id "W7K_13485"; transcript_id "KOE98734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 80383 81312 . + . gene_id "W7K_13490"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 80383 81312 . + . gene_id "W7K_13490"; transcript_id "KOE98735"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 80383 81312 . + . gene_id "W7K_13490"; transcript_id "KOE98735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98735-1"; +contig23 ena CDS 80383 81309 . + 0 gene_id "W7K_13490"; transcript_id "KOE98735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98735"; +contig23 ena start_codon 80383 80385 . + 0 gene_id "W7K_13490"; transcript_id "KOE98735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 81310 81312 . + 0 gene_id "W7K_13490"; transcript_id "KOE98735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 81309 82412 . + . gene_id "W7K_13495"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 81309 82412 . + . gene_id "W7K_13495"; transcript_id "KOE98736"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 81309 82412 . + . gene_id "W7K_13495"; transcript_id "KOE98736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98736-1"; +contig23 ena CDS 81309 82409 . + 0 gene_id "W7K_13495"; transcript_id "KOE98736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98736"; +contig23 ena start_codon 81309 81311 . + 0 gene_id "W7K_13495"; transcript_id "KOE98736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 82410 82412 . + 0 gene_id "W7K_13495"; transcript_id "KOE98736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 82405 83442 . + . gene_id "W7K_13500"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 82405 83442 . + . gene_id "W7K_13500"; transcript_id "KOE98737"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 82405 83442 . + . gene_id "W7K_13500"; transcript_id "KOE98737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98737-1"; +contig23 ena CDS 82405 83439 . + 0 gene_id "W7K_13500"; transcript_id "KOE98737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98737"; +contig23 ena start_codon 82405 82407 . + 0 gene_id "W7K_13500"; transcript_id "KOE98737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 83440 83442 . + 0 gene_id "W7K_13500"; transcript_id "KOE98737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 83535 84563 . + . gene_id "W7K_13505"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 83535 84563 . + . gene_id "W7K_13505"; transcript_id "KOE98738"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 83535 84563 . + . gene_id "W7K_13505"; transcript_id "KOE98738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98738-1"; +contig23 ena CDS 83535 84560 . + 0 gene_id "W7K_13505"; transcript_id "KOE98738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98738"; +contig23 ena start_codon 83535 83537 . + 0 gene_id "W7K_13505"; transcript_id "KOE98738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 84561 84563 . + 0 gene_id "W7K_13505"; transcript_id "KOE98738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 84694 86754 . + . gene_id "W7K_13510"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 84694 86754 . + . gene_id "W7K_13510"; transcript_id "KOE98739"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 84694 86754 . + . gene_id "W7K_13510"; transcript_id "KOE98739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98739-1"; +contig23 ena CDS 84694 86751 . + 0 gene_id "W7K_13510"; transcript_id "KOE98739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98739"; +contig23 ena start_codon 84694 84696 . + 0 gene_id "W7K_13510"; transcript_id "KOE98739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 86752 86754 . + 0 gene_id "W7K_13510"; transcript_id "KOE98739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 86781 87143 . + . gene_id "W7K_13515"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 86781 87143 . + . gene_id "W7K_13515"; transcript_id "KOE98757"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 86781 87143 . + . gene_id "W7K_13515"; transcript_id "KOE98757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98757-1"; +contig23 ena CDS 86781 87140 . + 0 gene_id "W7K_13515"; transcript_id "KOE98757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98757"; +contig23 ena start_codon 86781 86783 . + 0 gene_id "W7K_13515"; transcript_id "KOE98757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 87141 87143 . + 0 gene_id "W7K_13515"; transcript_id "KOE98757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 87176 87946 . + . gene_id "W7K_13520"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 87176 87946 . + . gene_id "W7K_13520"; transcript_id "KOE98740"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 87176 87946 . + . gene_id "W7K_13520"; transcript_id "KOE98740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98740-1"; +contig23 ena CDS 87176 87943 . + 0 gene_id "W7K_13520"; transcript_id "KOE98740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98740"; +contig23 ena start_codon 87176 87178 . + 0 gene_id "W7K_13520"; transcript_id "KOE98740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 87944 87946 . + 0 gene_id "W7K_13520"; transcript_id "KOE98740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 87943 88599 . + . gene_id "W7K_13525"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 87943 88599 . + . gene_id "W7K_13525"; transcript_id "KOE98741"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 87943 88599 . + . gene_id "W7K_13525"; transcript_id "KOE98741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98741-1"; +contig23 ena CDS 87943 88596 . + 0 gene_id "W7K_13525"; transcript_id "KOE98741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98741"; +contig23 ena start_codon 87943 87945 . + 0 gene_id "W7K_13525"; transcript_id "KOE98741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 88597 88599 . + 0 gene_id "W7K_13525"; transcript_id "KOE98741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 89147 89464 . + . gene_id "W7K_13535"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 89147 89464 . + . gene_id "W7K_13535"; transcript_id "KOE98758"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 89147 89464 . + . gene_id "W7K_13535"; transcript_id "KOE98758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98758-1"; +contig23 ena CDS 89147 89461 . + 0 gene_id "W7K_13535"; transcript_id "KOE98758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98758"; +contig23 ena start_codon 89147 89149 . + 0 gene_id "W7K_13535"; transcript_id "KOE98758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 89462 89464 . + 0 gene_id "W7K_13535"; transcript_id "KOE98758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 90308 91369 . + . gene_id "W7K_13540"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 90308 91369 . + . gene_id "W7K_13540"; transcript_id "KOE98759"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 90308 91369 . + . gene_id "W7K_13540"; transcript_id "KOE98759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98759-1"; +contig23 ena CDS 90308 91366 . + 0 gene_id "W7K_13540"; transcript_id "KOE98759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98759"; +contig23 ena start_codon 90308 90310 . + 0 gene_id "W7K_13540"; transcript_id "KOE98759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 91367 91369 . + 0 gene_id "W7K_13540"; transcript_id "KOE98759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 91418 92305 . - . gene_id "W7K_13545"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 91418 92305 . - . gene_id "W7K_13545"; transcript_id "KOE98742"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 91418 92305 . - . gene_id "W7K_13545"; transcript_id "KOE98742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98742-1"; +contig23 ena CDS 91421 92305 . - 0 gene_id "W7K_13545"; transcript_id "KOE98742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98742"; +contig23 ena start_codon 92303 92305 . - 0 gene_id "W7K_13545"; transcript_id "KOE98742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 91418 91420 . - 0 gene_id "W7K_13545"; transcript_id "KOE98742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 92402 93619 . + . gene_id "W7K_13550"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 92402 93619 . + . gene_id "W7K_13550"; transcript_id "KOE98743"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 92402 93619 . + . gene_id "W7K_13550"; transcript_id "KOE98743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98743-1"; +contig23 ena CDS 92402 93616 . + 0 gene_id "W7K_13550"; transcript_id "KOE98743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98743"; +contig23 ena start_codon 92402 92404 . + 0 gene_id "W7K_13550"; transcript_id "KOE98743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 93617 93619 . + 0 gene_id "W7K_13550"; transcript_id "KOE98743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 93616 94293 . + . gene_id "W7K_13555"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 93616 94293 . + . gene_id "W7K_13555"; transcript_id "KOE98744"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 93616 94293 . + . gene_id "W7K_13555"; transcript_id "KOE98744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98744-1"; +contig23 ena CDS 93616 94290 . + 0 gene_id "W7K_13555"; transcript_id "KOE98744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98744"; +contig23 ena start_codon 93616 93618 . + 0 gene_id "W7K_13555"; transcript_id "KOE98744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 94291 94293 . + 0 gene_id "W7K_13555"; transcript_id "KOE98744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 94295 95104 . + . gene_id "W7K_13560"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 94295 95104 . + . gene_id "W7K_13560"; transcript_id "KOE98745"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 94295 95104 . + . gene_id "W7K_13560"; transcript_id "KOE98745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98745-1"; +contig23 ena CDS 94295 95101 . + 0 gene_id "W7K_13560"; transcript_id "KOE98745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98745"; +contig23 ena start_codon 94295 94297 . + 0 gene_id "W7K_13560"; transcript_id "KOE98745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 95102 95104 . + 0 gene_id "W7K_13560"; transcript_id "KOE98745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 95320 96195 . + . gene_id "W7K_13565"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 95320 96195 . + . gene_id "W7K_13565"; transcript_id "KOE98746"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 95320 96195 . + . gene_id "W7K_13565"; transcript_id "KOE98746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98746-1"; +contig23 ena CDS 95320 96192 . + 0 gene_id "W7K_13565"; transcript_id "KOE98746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98746"; +contig23 ena start_codon 95320 95322 . + 0 gene_id "W7K_13565"; transcript_id "KOE98746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 96193 96195 . + 0 gene_id "W7K_13565"; transcript_id "KOE98746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 96195 97556 . + . gene_id "W7K_13570"; gene_name "glmM"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 96195 97556 . + . gene_id "W7K_13570"; transcript_id "KOE98747"; gene_name "glmM"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmM-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 96195 97556 . + . gene_id "W7K_13570"; transcript_id "KOE98747"; exon_number "1"; gene_name "glmM"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmM-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98747-1"; +contig23 ena CDS 96195 97553 . + 0 gene_id "W7K_13570"; transcript_id "KOE98747"; exon_number "1"; gene_name "glmM"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmM-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98747"; +contig23 ena start_codon 96195 96197 . + 0 gene_id "W7K_13570"; transcript_id "KOE98747"; exon_number "1"; gene_name "glmM"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmM-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 97554 97556 . + 0 gene_id "W7K_13570"; transcript_id "KOE98747"; exon_number "1"; gene_name "glmM"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "glmM-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 97635 98492 . - . gene_id "W7K_13575"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 97635 98492 . - . gene_id "W7K_13575"; transcript_id "KOE98748"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 97635 98492 . - . gene_id "W7K_13575"; transcript_id "KOE98748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98748-1"; +contig23 ena CDS 97638 98492 . - 0 gene_id "W7K_13575"; transcript_id "KOE98748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98748"; +contig23 ena start_codon 98490 98492 . - 0 gene_id "W7K_13575"; transcript_id "KOE98748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 97635 97637 . - 0 gene_id "W7K_13575"; transcript_id "KOE98748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 98485 99630 . - . gene_id "W7K_13580"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 98485 99630 . - . gene_id "W7K_13580"; transcript_id "KOE98760"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 98485 99630 . - . gene_id "W7K_13580"; transcript_id "KOE98760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98760-1"; +contig23 ena CDS 98488 99630 . - 0 gene_id "W7K_13580"; transcript_id "KOE98760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98760"; +contig23 ena start_codon 99628 99630 . - 0 gene_id "W7K_13580"; transcript_id "KOE98760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 98485 98487 . - 0 gene_id "W7K_13580"; transcript_id "KOE98760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 99651 101537 . - . gene_id "W7K_13585"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 99651 101537 . - . gene_id "W7K_13585"; transcript_id "KOE98749"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 99651 101537 . - . gene_id "W7K_13585"; transcript_id "KOE98749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98749-1"; +contig23 ena CDS 99654 101537 . - 0 gene_id "W7K_13585"; transcript_id "KOE98749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98749"; +contig23 ena start_codon 101535 101537 . - 0 gene_id "W7K_13585"; transcript_id "KOE98749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 99651 99653 . - 0 gene_id "W7K_13585"; transcript_id "KOE98749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena gene 101732 102667 . + . gene_id "W7K_13590"; gene_source "ena"; gene_biotype "protein_coding"; +contig23 ena transcript 101732 102667 . + . gene_id "W7K_13590"; transcript_id "KOE98750"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena exon 101732 102667 . + . gene_id "W7K_13590"; transcript_id "KOE98750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98750-1"; +contig23 ena CDS 101732 102664 . + 0 gene_id "W7K_13590"; transcript_id "KOE98750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98750"; +contig23 ena start_codon 101732 101734 . + 0 gene_id "W7K_13590"; transcript_id "KOE98750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig23 ena stop_codon 102665 102667 . + 0 gene_id "W7K_13590"; transcript_id "KOE98750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 18 3356 . - . gene_id "W7K_15450"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 18 3356 . - . gene_id "W7K_15450"; transcript_id "KOE98223"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 18 3356 . - . gene_id "W7K_15450"; transcript_id "KOE98223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98223-1"; +contig16 ena CDS 21 3356 . - 0 gene_id "W7K_15450"; transcript_id "KOE98223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98223"; +contig16 ena start_codon 3354 3356 . - 0 gene_id "W7K_15450"; transcript_id "KOE98223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 18 20 . - 0 gene_id "W7K_15450"; transcript_id "KOE98223"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 3349 3609 . - . gene_id "W7K_15455"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 3349 3609 . - . gene_id "W7K_15455"; transcript_id "KOE98224"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 3349 3609 . - . gene_id "W7K_15455"; transcript_id "KOE98224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98224-1"; +contig16 ena CDS 3352 3609 . - 0 gene_id "W7K_15455"; transcript_id "KOE98224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98224"; +contig16 ena start_codon 3607 3609 . - 0 gene_id "W7K_15455"; transcript_id "KOE98224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 3349 3351 . - 0 gene_id "W7K_15455"; transcript_id "KOE98224"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 3770 4210 . - . gene_id "W7K_15460"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 3770 4210 . - . gene_id "W7K_15460"; transcript_id "KOE98225"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 3770 4210 . - . gene_id "W7K_15460"; transcript_id "KOE98225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98225-1"; +contig16 ena CDS 3773 4210 . - 0 gene_id "W7K_15460"; transcript_id "KOE98225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98225"; +contig16 ena start_codon 4208 4210 . - 0 gene_id "W7K_15460"; transcript_id "KOE98225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 3770 3772 . - 0 gene_id "W7K_15460"; transcript_id "KOE98225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 4273 5511 . - . gene_id "W7K_15465"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 4273 5511 . - . gene_id "W7K_15465"; transcript_id "KOE98226"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 4273 5511 . - . gene_id "W7K_15465"; transcript_id "KOE98226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98226-1"; +contig16 ena CDS 4276 5511 . - 0 gene_id "W7K_15465"; transcript_id "KOE98226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98226"; +contig16 ena start_codon 5509 5511 . - 0 gene_id "W7K_15465"; transcript_id "KOE98226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 4273 4275 . - 0 gene_id "W7K_15465"; transcript_id "KOE98226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 5511 6242 . - . gene_id "W7K_15470"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 5511 6242 . - . gene_id "W7K_15470"; transcript_id "KOE98227"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 5511 6242 . - . gene_id "W7K_15470"; transcript_id "KOE98227"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98227-1"; +contig16 ena CDS 5514 6242 . - 0 gene_id "W7K_15470"; transcript_id "KOE98227"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98227"; +contig16 ena start_codon 6240 6242 . - 0 gene_id "W7K_15470"; transcript_id "KOE98227"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 5511 5513 . - 0 gene_id "W7K_15470"; transcript_id "KOE98227"; exon_number "1"; gene_name "fabG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fabG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 6239 6694 . - . gene_id "W7K_15475"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 6239 6694 . - . gene_id "W7K_15475"; transcript_id "KOE98228"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 6239 6694 . - . gene_id "W7K_15475"; transcript_id "KOE98228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98228-1"; +contig16 ena CDS 6242 6694 . - 0 gene_id "W7K_15475"; transcript_id "KOE98228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98228"; +contig16 ena start_codon 6692 6694 . - 0 gene_id "W7K_15475"; transcript_id "KOE98228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 6239 6241 . - 0 gene_id "W7K_15475"; transcript_id "KOE98228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 6691 7875 . - . gene_id "W7K_15480"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 6691 7875 . - . gene_id "W7K_15480"; transcript_id "KOE98229"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 6691 7875 . - . gene_id "W7K_15480"; transcript_id "KOE98229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98229-1"; +contig16 ena CDS 6694 7875 . - 0 gene_id "W7K_15480"; transcript_id "KOE98229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98229"; +contig16 ena start_codon 7873 7875 . - 0 gene_id "W7K_15480"; transcript_id "KOE98229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 6691 6693 . - 0 gene_id "W7K_15480"; transcript_id "KOE98229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 7872 8429 . - . gene_id "W7K_15485"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 7872 8429 . - . gene_id "W7K_15485"; transcript_id "KOE98230"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 7872 8429 . - . gene_id "W7K_15485"; transcript_id "KOE98230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98230-1"; +contig16 ena CDS 7875 8429 . - 0 gene_id "W7K_15485"; transcript_id "KOE98230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98230"; +contig16 ena start_codon 8427 8429 . - 0 gene_id "W7K_15485"; transcript_id "KOE98230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 7872 7874 . - 0 gene_id "W7K_15485"; transcript_id "KOE98230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 8417 9667 . - . gene_id "W7K_15490"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 8417 9667 . - . gene_id "W7K_15490"; transcript_id "KOE98231"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 8417 9667 . - . gene_id "W7K_15490"; transcript_id "KOE98231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98231-1"; +contig16 ena CDS 8420 9667 . - 0 gene_id "W7K_15490"; transcript_id "KOE98231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98231"; +contig16 ena start_codon 9665 9667 . - 0 gene_id "W7K_15490"; transcript_id "KOE98231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 8417 8419 . - 0 gene_id "W7K_15490"; transcript_id "KOE98231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 9721 12075 . - . gene_id "W7K_15495"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 9721 12075 . - . gene_id "W7K_15495"; transcript_id "KOE98232"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 9721 12075 . - . gene_id "W7K_15495"; transcript_id "KOE98232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98232-1"; +contig16 ena CDS 9724 12075 . - 0 gene_id "W7K_15495"; transcript_id "KOE98232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98232"; +contig16 ena start_codon 12073 12075 . - 0 gene_id "W7K_15495"; transcript_id "KOE98232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 9721 9723 . - 0 gene_id "W7K_15495"; transcript_id "KOE98232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 12068 12697 . - . gene_id "W7K_15500"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 12068 12697 . - . gene_id "W7K_15500"; transcript_id "KOE98233"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 12068 12697 . - . gene_id "W7K_15500"; transcript_id "KOE98233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98233-1"; +contig16 ena CDS 12071 12697 . - 0 gene_id "W7K_15500"; transcript_id "KOE98233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98233"; +contig16 ena start_codon 12695 12697 . - 0 gene_id "W7K_15500"; transcript_id "KOE98233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 12068 12070 . - 0 gene_id "W7K_15500"; transcript_id "KOE98233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 12694 13125 . - . gene_id "W7K_15505"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 12694 13125 . - . gene_id "W7K_15505"; transcript_id "KOE98234"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 12694 13125 . - . gene_id "W7K_15505"; transcript_id "KOE98234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98234-1"; +contig16 ena CDS 12697 13125 . - 0 gene_id "W7K_15505"; transcript_id "KOE98234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98234"; +contig16 ena start_codon 13123 13125 . - 0 gene_id "W7K_15505"; transcript_id "KOE98234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 12694 12696 . - 0 gene_id "W7K_15505"; transcript_id "KOE98234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 13112 14662 . - . gene_id "W7K_15510"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 13112 14662 . - . gene_id "W7K_15510"; transcript_id "KOE98235"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 13112 14662 . - . gene_id "W7K_15510"; transcript_id "KOE98235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98235-1"; +contig16 ena CDS 13115 14662 . - 0 gene_id "W7K_15510"; transcript_id "KOE98235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98235"; +contig16 ena start_codon 14660 14662 . - 0 gene_id "W7K_15510"; transcript_id "KOE98235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 13112 13114 . - 0 gene_id "W7K_15510"; transcript_id "KOE98235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 14652 15593 . - . gene_id "W7K_15515"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 14652 15593 . - . gene_id "W7K_15515"; transcript_id "KOE98236"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 14652 15593 . - . gene_id "W7K_15515"; transcript_id "KOE98236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98236-1"; +contig16 ena CDS 14655 15593 . - 0 gene_id "W7K_15515"; transcript_id "KOE98236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98236"; +contig16 ena start_codon 15591 15593 . - 0 gene_id "W7K_15515"; transcript_id "KOE98236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 14652 14654 . - 0 gene_id "W7K_15515"; transcript_id "KOE98236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 15595 16365 . - . gene_id "W7K_15520"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 15595 16365 . - . gene_id "W7K_15520"; transcript_id "KOE98237"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 15595 16365 . - . gene_id "W7K_15520"; transcript_id "KOE98237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98237-1"; +contig16 ena CDS 15598 16365 . - 0 gene_id "W7K_15520"; transcript_id "KOE98237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98237"; +contig16 ena start_codon 16363 16365 . - 0 gene_id "W7K_15520"; transcript_id "KOE98237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 15595 15597 . - 0 gene_id "W7K_15520"; transcript_id "KOE98237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 16355 18040 . - . gene_id "W7K_15525"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 16355 18040 . - . gene_id "W7K_15525"; transcript_id "KOE98238"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 16355 18040 . - . gene_id "W7K_15525"; transcript_id "KOE98238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98238-1"; +contig16 ena CDS 16358 18040 . - 0 gene_id "W7K_15525"; transcript_id "KOE98238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98238"; +contig16 ena start_codon 18038 18040 . - 0 gene_id "W7K_15525"; transcript_id "KOE98238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 16355 16357 . - 0 gene_id "W7K_15525"; transcript_id "KOE98238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 18033 18584 . - . gene_id "W7K_15530"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 18033 18584 . - . gene_id "W7K_15530"; transcript_id "KOE98239"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 18033 18584 . - . gene_id "W7K_15530"; transcript_id "KOE98239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98239-1"; +contig16 ena CDS 18036 18584 . - 0 gene_id "W7K_15530"; transcript_id "KOE98239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98239"; +contig16 ena start_codon 18582 18584 . - 0 gene_id "W7K_15530"; transcript_id "KOE98239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 18033 18035 . - 0 gene_id "W7K_15530"; transcript_id "KOE98239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 18607 18864 . - . gene_id "W7K_15535"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 18607 18864 . - . gene_id "W7K_15535"; transcript_id "KOE98240"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 18607 18864 . - . gene_id "W7K_15535"; transcript_id "KOE98240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98240-1"; +contig16 ena CDS 18610 18864 . - 0 gene_id "W7K_15535"; transcript_id "KOE98240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98240"; +contig16 ena start_codon 18862 18864 . - 0 gene_id "W7K_15535"; transcript_id "KOE98240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 18607 18609 . - 0 gene_id "W7K_15535"; transcript_id "KOE98240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 18882 19139 . - . gene_id "W7K_15540"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 18882 19139 . - . gene_id "W7K_15540"; transcript_id "KOE98241"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 18882 19139 . - . gene_id "W7K_15540"; transcript_id "KOE98241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98241-1"; +contig16 ena CDS 18885 19139 . - 0 gene_id "W7K_15540"; transcript_id "KOE98241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98241"; +contig16 ena start_codon 19137 19139 . - 0 gene_id "W7K_15540"; transcript_id "KOE98241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 18882 18884 . - 0 gene_id "W7K_15540"; transcript_id "KOE98241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 19126 19923 . - . gene_id "W7K_15545"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 19126 19923 . - . gene_id "W7K_15545"; transcript_id "KOE98242"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 19126 19923 . - . gene_id "W7K_15545"; transcript_id "KOE98242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98242-1"; +contig16 ena CDS 19129 19923 . - 0 gene_id "W7K_15545"; transcript_id "KOE98242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98242"; +contig16 ena start_codon 19921 19923 . - 0 gene_id "W7K_15545"; transcript_id "KOE98242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 19126 19128 . - 0 gene_id "W7K_15545"; transcript_id "KOE98242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 19916 20659 . - . gene_id "W7K_15550"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 19916 20659 . - . gene_id "W7K_15550"; transcript_id "KOE98243"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 19916 20659 . - . gene_id "W7K_15550"; transcript_id "KOE98243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98243-1"; +contig16 ena CDS 19919 20659 . - 0 gene_id "W7K_15550"; transcript_id "KOE98243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98243"; +contig16 ena start_codon 20657 20659 . - 0 gene_id "W7K_15550"; transcript_id "KOE98243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 19916 19918 . - 0 gene_id "W7K_15550"; transcript_id "KOE98243"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 20877 21890 . - . gene_id "W7K_15555"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 20877 21890 . - . gene_id "W7K_15555"; transcript_id "KOE98244"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 20877 21890 . - . gene_id "W7K_15555"; transcript_id "KOE98244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98244-1"; +contig16 ena CDS 20880 21890 . - 0 gene_id "W7K_15555"; transcript_id "KOE98244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98244"; +contig16 ena start_codon 21888 21890 . - 0 gene_id "W7K_15555"; transcript_id "KOE98244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 20877 20879 . - 0 gene_id "W7K_15555"; transcript_id "KOE98244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 21892 23289 . - . gene_id "W7K_15560"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 21892 23289 . - . gene_id "W7K_15560"; transcript_id "KOE98245"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 21892 23289 . - . gene_id "W7K_15560"; transcript_id "KOE98245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98245-1"; +contig16 ena CDS 21895 23289 . - 0 gene_id "W7K_15560"; transcript_id "KOE98245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98245"; +contig16 ena start_codon 23287 23289 . - 0 gene_id "W7K_15560"; transcript_id "KOE98245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 21892 21894 . - 0 gene_id "W7K_15560"; transcript_id "KOE98245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 23540 23755 . - . gene_id "W7K_15565"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 23540 23755 . - . gene_id "W7K_15565"; transcript_id "KOE98246"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 23540 23755 . - . gene_id "W7K_15565"; transcript_id "KOE98246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98246-1"; +contig16 ena CDS 23543 23755 . - 0 gene_id "W7K_15565"; transcript_id "KOE98246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98246"; +contig16 ena start_codon 23753 23755 . - 0 gene_id "W7K_15565"; transcript_id "KOE98246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 23540 23542 . - 0 gene_id "W7K_15565"; transcript_id "KOE98246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 23752 24405 . - . gene_id "W7K_15570"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 23752 24405 . - . gene_id "W7K_15570"; transcript_id "KOE98247"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 23752 24405 . - . gene_id "W7K_15570"; transcript_id "KOE98247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98247-1"; +contig16 ena CDS 23755 24405 . - 0 gene_id "W7K_15570"; transcript_id "KOE98247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98247"; +contig16 ena start_codon 24403 24405 . - 0 gene_id "W7K_15570"; transcript_id "KOE98247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 23752 23754 . - 0 gene_id "W7K_15570"; transcript_id "KOE98247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 24443 24772 . - . gene_id "W7K_15575"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 24443 24772 . - . gene_id "W7K_15575"; transcript_id "KOE98248"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 24443 24772 . - . gene_id "W7K_15575"; transcript_id "KOE98248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98248-1"; +contig16 ena CDS 24446 24772 . - 0 gene_id "W7K_15575"; transcript_id "KOE98248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98248"; +contig16 ena start_codon 24770 24772 . - 0 gene_id "W7K_15575"; transcript_id "KOE98248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 24443 24445 . - 0 gene_id "W7K_15575"; transcript_id "KOE98248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 24940 27309 . + . gene_id "W7K_15580"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 24940 27309 . + . gene_id "W7K_15580"; transcript_id "KOE98249"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 24940 27309 . + . gene_id "W7K_15580"; transcript_id "KOE98249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98249-1"; +contig16 ena CDS 24940 27306 . + 0 gene_id "W7K_15580"; transcript_id "KOE98249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98249"; +contig16 ena start_codon 24940 24942 . + 0 gene_id "W7K_15580"; transcript_id "KOE98249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 27307 27309 . + 0 gene_id "W7K_15580"; transcript_id "KOE98249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 27306 27725 . + . gene_id "W7K_15585"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 27306 27725 . + . gene_id "W7K_15585"; transcript_id "KOE98250"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 27306 27725 . + . gene_id "W7K_15585"; transcript_id "KOE98250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98250-1"; +contig16 ena CDS 27306 27722 . + 0 gene_id "W7K_15585"; transcript_id "KOE98250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98250"; +contig16 ena start_codon 27306 27308 . + 0 gene_id "W7K_15585"; transcript_id "KOE98250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 27723 27725 . + 0 gene_id "W7K_15585"; transcript_id "KOE98250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 27756 28316 . + . gene_id "W7K_15590"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 27756 28316 . + . gene_id "W7K_15590"; transcript_id "KOE98251"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 27756 28316 . + . gene_id "W7K_15590"; transcript_id "KOE98251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98251-1"; +contig16 ena CDS 27756 28313 . + 0 gene_id "W7K_15590"; transcript_id "KOE98251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98251"; +contig16 ena start_codon 27756 27758 . + 0 gene_id "W7K_15590"; transcript_id "KOE98251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 28314 28316 . + 0 gene_id "W7K_15590"; transcript_id "KOE98251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 28349 29467 . + . gene_id "W7K_15595"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 28349 29467 . + . gene_id "W7K_15595"; transcript_id "KOE98252"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 28349 29467 . + . gene_id "W7K_15595"; transcript_id "KOE98252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98252-1"; +contig16 ena CDS 28349 29464 . + 0 gene_id "W7K_15595"; transcript_id "KOE98252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98252"; +contig16 ena start_codon 28349 28351 . + 0 gene_id "W7K_15595"; transcript_id "KOE98252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 29465 29467 . + 0 gene_id "W7K_15595"; transcript_id "KOE98252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 29505 31121 . + . gene_id "W7K_15600"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 29505 31121 . + . gene_id "W7K_15600"; transcript_id "KOE98253"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 29505 31121 . + . gene_id "W7K_15600"; transcript_id "KOE98253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98253-1"; +contig16 ena CDS 29505 31118 . + 0 gene_id "W7K_15600"; transcript_id "KOE98253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98253"; +contig16 ena start_codon 29505 29507 . + 0 gene_id "W7K_15600"; transcript_id "KOE98253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 31119 31121 . + 0 gene_id "W7K_15600"; transcript_id "KOE98253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 31176 32072 . + . gene_id "W7K_15605"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 31176 32072 . + . gene_id "W7K_15605"; transcript_id "KOE98254"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 31176 32072 . + . gene_id "W7K_15605"; transcript_id "KOE98254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98254-1"; +contig16 ena CDS 31176 32069 . + 0 gene_id "W7K_15605"; transcript_id "KOE98254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98254"; +contig16 ena start_codon 31176 31178 . + 0 gene_id "W7K_15605"; transcript_id "KOE98254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 32070 32072 . + 0 gene_id "W7K_15605"; transcript_id "KOE98254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 32168 33688 . + . gene_id "W7K_15610"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 32168 33688 . + . gene_id "W7K_15610"; transcript_id "KOE98255"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 32168 33688 . + . gene_id "W7K_15610"; transcript_id "KOE98255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98255-1"; +contig16 ena CDS 32168 33685 . + 0 gene_id "W7K_15610"; transcript_id "KOE98255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98255"; +contig16 ena start_codon 32168 32170 . + 0 gene_id "W7K_15610"; transcript_id "KOE98255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 33686 33688 . + 0 gene_id "W7K_15610"; transcript_id "KOE98255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 33767 34246 . - . gene_id "W7K_15615"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 33767 34246 . - . gene_id "W7K_15615"; transcript_id "KOE98256"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 33767 34246 . - . gene_id "W7K_15615"; transcript_id "KOE98256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98256-1"; +contig16 ena CDS 33770 34246 . - 0 gene_id "W7K_15615"; transcript_id "KOE98256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98256"; +contig16 ena start_codon 34244 34246 . - 0 gene_id "W7K_15615"; transcript_id "KOE98256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 33767 33769 . - 0 gene_id "W7K_15615"; transcript_id "KOE98256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 34575 37349 . - . gene_id "W7K_15620"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 34575 37349 . - . gene_id "W7K_15620"; transcript_id "KOE98257"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 34575 37349 . - . gene_id "W7K_15620"; transcript_id "KOE98257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98257-1"; +contig16 ena CDS 34578 37349 . - 0 gene_id "W7K_15620"; transcript_id "KOE98257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98257"; +contig16 ena start_codon 37347 37349 . - 0 gene_id "W7K_15620"; transcript_id "KOE98257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 34575 34577 . - 0 gene_id "W7K_15620"; transcript_id "KOE98257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 37448 37732 . + . gene_id "W7K_15625"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 37448 37732 . + . gene_id "W7K_15625"; transcript_id "KOE98258"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 37448 37732 . + . gene_id "W7K_15625"; transcript_id "KOE98258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98258-1"; +contig16 ena CDS 37448 37729 . + 0 gene_id "W7K_15625"; transcript_id "KOE98258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98258"; +contig16 ena start_codon 37448 37450 . + 0 gene_id "W7K_15625"; transcript_id "KOE98258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 37730 37732 . + 0 gene_id "W7K_15625"; transcript_id "KOE98258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 37866 38312 . - . gene_id "W7K_15630"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 37866 38312 . - . gene_id "W7K_15630"; transcript_id "KOE98259"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 37866 38312 . - . gene_id "W7K_15630"; transcript_id "KOE98259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98259-1"; +contig16 ena CDS 37869 38312 . - 0 gene_id "W7K_15630"; transcript_id "KOE98259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98259"; +contig16 ena start_codon 38310 38312 . - 0 gene_id "W7K_15630"; transcript_id "KOE98259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 37866 37868 . - 0 gene_id "W7K_15630"; transcript_id "KOE98259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 38726 39280 . - . gene_id "W7K_15635"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 38726 39280 . - . gene_id "W7K_15635"; transcript_id "KOE98260"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 38726 39280 . - . gene_id "W7K_15635"; transcript_id "KOE98260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98260-1"; +contig16 ena CDS 38729 39280 . - 0 gene_id "W7K_15635"; transcript_id "KOE98260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98260"; +contig16 ena start_codon 39278 39280 . - 0 gene_id "W7K_15635"; transcript_id "KOE98260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 38726 38728 . - 0 gene_id "W7K_15635"; transcript_id "KOE98260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 39387 39713 . - . gene_id "W7K_15640"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 39387 39713 . - . gene_id "W7K_15640"; transcript_id "KOE98261"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 39387 39713 . - . gene_id "W7K_15640"; transcript_id "KOE98261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98261-1"; +contig16 ena CDS 39390 39713 . - 0 gene_id "W7K_15640"; transcript_id "KOE98261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98261"; +contig16 ena start_codon 39711 39713 . - 0 gene_id "W7K_15640"; transcript_id "KOE98261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 39387 39389 . - 0 gene_id "W7K_15640"; transcript_id "KOE98261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 39818 42010 . - . gene_id "W7K_15645"; gene_name "uvrD"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 39818 42010 . - . gene_id "W7K_15645"; transcript_id "KOE98307"; gene_name "uvrD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 39818 42010 . - . gene_id "W7K_15645"; transcript_id "KOE98307"; exon_number "1"; gene_name "uvrD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98307-1"; +contig16 ena CDS 39821 42010 . - 0 gene_id "W7K_15645"; transcript_id "KOE98307"; exon_number "1"; gene_name "uvrD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98307"; +contig16 ena start_codon 42008 42010 . - 0 gene_id "W7K_15645"; transcript_id "KOE98307"; exon_number "1"; gene_name "uvrD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 39818 39820 . - 0 gene_id "W7K_15645"; transcript_id "KOE98307"; exon_number "1"; gene_name "uvrD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 42021 43445 . - . gene_id "W7K_15650"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 42021 43445 . - . gene_id "W7K_15650"; transcript_id "KOE98262"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 42021 43445 . - . gene_id "W7K_15650"; transcript_id "KOE98262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98262-1"; +contig16 ena CDS 42024 43445 . - 0 gene_id "W7K_15650"; transcript_id "KOE98262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98262"; +contig16 ena start_codon 43443 43445 . - 0 gene_id "W7K_15650"; transcript_id "KOE98262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 42021 42023 . - 0 gene_id "W7K_15650"; transcript_id "KOE98262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 43491 44909 . - . gene_id "W7K_15655"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 43491 44909 . - . gene_id "W7K_15655"; transcript_id "KOE98263"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 43491 44909 . - . gene_id "W7K_15655"; transcript_id "KOE98263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98263-1"; +contig16 ena CDS 43494 44909 . - 0 gene_id "W7K_15655"; transcript_id "KOE98263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98263"; +contig16 ena start_codon 44907 44909 . - 0 gene_id "W7K_15655"; transcript_id "KOE98263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 43491 43493 . - 0 gene_id "W7K_15655"; transcript_id "KOE98263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 45184 45348 . - . gene_id "W7K_15660"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 45184 45348 . - . gene_id "W7K_15660"; transcript_id "KOE98264"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 45184 45348 . - . gene_id "W7K_15660"; transcript_id "KOE98264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98264-1"; +contig16 ena CDS 45187 45348 . - 0 gene_id "W7K_15660"; transcript_id "KOE98264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98264"; +contig16 ena start_codon 45346 45348 . - 0 gene_id "W7K_15660"; transcript_id "KOE98264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 45184 45186 . - 0 gene_id "W7K_15660"; transcript_id "KOE98264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 45362 45598 . - . gene_id "W7K_15665"; gene_name "rpmB"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 45362 45598 . - . gene_id "W7K_15665"; transcript_id "KOE98265"; gene_name "rpmB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 45362 45598 . - . gene_id "W7K_15665"; transcript_id "KOE98265"; exon_number "1"; gene_name "rpmB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98265-1"; +contig16 ena CDS 45365 45598 . - 0 gene_id "W7K_15665"; transcript_id "KOE98265"; exon_number "1"; gene_name "rpmB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98265"; +contig16 ena start_codon 45596 45598 . - 0 gene_id "W7K_15665"; transcript_id "KOE98265"; exon_number "1"; gene_name "rpmB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 45362 45364 . - 0 gene_id "W7K_15665"; transcript_id "KOE98265"; exon_number "1"; gene_name "rpmB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpmB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 45886 47100 . + . gene_id "W7K_15670"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 45886 47100 . + . gene_id "W7K_15670"; transcript_id "KOE98266"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 45886 47100 . + . gene_id "W7K_15670"; transcript_id "KOE98266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98266-1"; +contig16 ena CDS 45886 47097 . + 0 gene_id "W7K_15670"; transcript_id "KOE98266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98266"; +contig16 ena start_codon 45886 45888 . + 0 gene_id "W7K_15670"; transcript_id "KOE98266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 47098 47100 . + 0 gene_id "W7K_15670"; transcript_id "KOE98266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 47114 47623 . - . gene_id "W7K_15675"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 47114 47623 . - . gene_id "W7K_15675"; transcript_id "KOE98267"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 47114 47623 . - . gene_id "W7K_15675"; transcript_id "KOE98267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98267-1"; +contig16 ena CDS 47117 47623 . - 0 gene_id "W7K_15675"; transcript_id "KOE98267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98267"; +contig16 ena start_codon 47621 47623 . - 0 gene_id "W7K_15675"; transcript_id "KOE98267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 47114 47116 . - 0 gene_id "W7K_15675"; transcript_id "KOE98267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 47790 48683 . - . gene_id "W7K_15680"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 47790 48683 . - . gene_id "W7K_15680"; transcript_id "KOE98268"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 47790 48683 . - . gene_id "W7K_15680"; transcript_id "KOE98268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98268-1"; +contig16 ena CDS 47793 48683 . - 0 gene_id "W7K_15680"; transcript_id "KOE98268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98268"; +contig16 ena start_codon 48681 48683 . - 0 gene_id "W7K_15680"; transcript_id "KOE98268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 47790 47792 . - 0 gene_id "W7K_15680"; transcript_id "KOE98268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 48792 49181 . + . gene_id "W7K_15685"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 48792 49181 . + . gene_id "W7K_15685"; transcript_id "KOE98269"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 48792 49181 . + . gene_id "W7K_15685"; transcript_id "KOE98269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98269-1"; +contig16 ena CDS 48792 49178 . + 0 gene_id "W7K_15685"; transcript_id "KOE98269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98269"; +contig16 ena start_codon 48792 48794 . + 0 gene_id "W7K_15685"; transcript_id "KOE98269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 49179 49181 . + 0 gene_id "W7K_15685"; transcript_id "KOE98269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 49409 49741 . + . gene_id "W7K_15690"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 49409 49741 . + . gene_id "W7K_15690"; transcript_id "KOE98270"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 49409 49741 . + . gene_id "W7K_15690"; transcript_id "KOE98270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98270-1"; +contig16 ena CDS 49409 49738 . + 0 gene_id "W7K_15690"; transcript_id "KOE98270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98270"; +contig16 ena start_codon 49409 49411 . + 0 gene_id "W7K_15690"; transcript_id "KOE98270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 49739 49741 . + 0 gene_id "W7K_15690"; transcript_id "KOE98270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 49798 51051 . + . gene_id "W7K_15695"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 49798 51051 . + . gene_id "W7K_15695"; transcript_id "KOE98271"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 49798 51051 . + . gene_id "W7K_15695"; transcript_id "KOE98271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98271-1"; +contig16 ena CDS 49798 51048 . + 0 gene_id "W7K_15695"; transcript_id "KOE98271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98271"; +contig16 ena start_codon 49798 49800 . + 0 gene_id "W7K_15695"; transcript_id "KOE98271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 51049 51051 . + 0 gene_id "W7K_15695"; transcript_id "KOE98271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 51048 52253 . + . gene_id "W7K_15700"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 51048 52253 . + . gene_id "W7K_15700"; transcript_id "KOE98272"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 51048 52253 . + . gene_id "W7K_15700"; transcript_id "KOE98272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98272-1"; +contig16 ena CDS 51048 52250 . + 0 gene_id "W7K_15700"; transcript_id "KOE98272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98272"; +contig16 ena start_codon 51048 51050 . + 0 gene_id "W7K_15700"; transcript_id "KOE98272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 52251 52253 . + 0 gene_id "W7K_15700"; transcript_id "KOE98272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 52264 55473 . + . gene_id "W7K_15705"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 52264 55473 . + . gene_id "W7K_15705"; transcript_id "KOE98273"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 52264 55473 . + . gene_id "W7K_15705"; transcript_id "KOE98273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98273-1"; +contig16 ena CDS 52264 55470 . + 0 gene_id "W7K_15705"; transcript_id "KOE98273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98273"; +contig16 ena start_codon 52264 52266 . + 0 gene_id "W7K_15705"; transcript_id "KOE98273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 55471 55473 . + 0 gene_id "W7K_15705"; transcript_id "KOE98273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 55574 57346 . - . gene_id "W7K_15710"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 55574 57346 . - . gene_id "W7K_15710"; transcript_id "KOE98274"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 55574 57346 . - . gene_id "W7K_15710"; transcript_id "KOE98274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98274-1"; +contig16 ena CDS 55577 57346 . - 0 gene_id "W7K_15710"; transcript_id "KOE98274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98274"; +contig16 ena start_codon 57344 57346 . - 0 gene_id "W7K_15710"; transcript_id "KOE98274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 55574 55576 . - 0 gene_id "W7K_15710"; transcript_id "KOE98274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 57510 57857 . - . gene_id "W7K_15715"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 57510 57857 . - . gene_id "W7K_15715"; transcript_id "KOE98275"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 57510 57857 . - . gene_id "W7K_15715"; transcript_id "KOE98275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98275-1"; +contig16 ena CDS 57513 57857 . - 0 gene_id "W7K_15715"; transcript_id "KOE98275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98275"; +contig16 ena start_codon 57855 57857 . - 0 gene_id "W7K_15715"; transcript_id "KOE98275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 57510 57512 . - 0 gene_id "W7K_15715"; transcript_id "KOE98275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 57857 58579 . - . gene_id "W7K_15720"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 57857 58579 . - . gene_id "W7K_15720"; transcript_id "KOE98276"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 57857 58579 . - . gene_id "W7K_15720"; transcript_id "KOE98276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98276-1"; +contig16 ena CDS 57860 58579 . - 0 gene_id "W7K_15720"; transcript_id "KOE98276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98276"; +contig16 ena start_codon 58577 58579 . - 0 gene_id "W7K_15720"; transcript_id "KOE98276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 57857 57859 . - 0 gene_id "W7K_15720"; transcript_id "KOE98276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 58669 59634 . - . gene_id "W7K_15725"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 58669 59634 . - . gene_id "W7K_15725"; transcript_id "KOE98277"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 58669 59634 . - . gene_id "W7K_15725"; transcript_id "KOE98277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98277-1"; +contig16 ena CDS 58672 59634 . - 0 gene_id "W7K_15725"; transcript_id "KOE98277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98277"; +contig16 ena start_codon 59632 59634 . - 0 gene_id "W7K_15725"; transcript_id "KOE98277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 58669 58671 . - 0 gene_id "W7K_15725"; transcript_id "KOE98277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 59686 60417 . - . gene_id "W7K_15730"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 59686 60417 . - . gene_id "W7K_15730"; transcript_id "KOE98278"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 59686 60417 . - . gene_id "W7K_15730"; transcript_id "KOE98278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98278-1"; +contig16 ena CDS 59689 60417 . - 0 gene_id "W7K_15730"; transcript_id "KOE98278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98278"; +contig16 ena start_codon 60415 60417 . - 0 gene_id "W7K_15730"; transcript_id "KOE98278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 59686 59688 . - 0 gene_id "W7K_15730"; transcript_id "KOE98278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 60544 61467 . - . gene_id "W7K_15735"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 60544 61467 . - . gene_id "W7K_15735"; transcript_id "KOE98279"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 60544 61467 . - . gene_id "W7K_15735"; transcript_id "KOE98279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98279-1"; +contig16 ena CDS 60547 61467 . - 0 gene_id "W7K_15735"; transcript_id "KOE98279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98279"; +contig16 ena start_codon 61465 61467 . - 0 gene_id "W7K_15735"; transcript_id "KOE98279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 60544 60546 . - 0 gene_id "W7K_15735"; transcript_id "KOE98279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 61467 62264 . - . gene_id "W7K_15740"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 61467 62264 . - . gene_id "W7K_15740"; transcript_id "KOE98280"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 61467 62264 . - . gene_id "W7K_15740"; transcript_id "KOE98280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98280-1"; +contig16 ena CDS 61470 62264 . - 0 gene_id "W7K_15740"; transcript_id "KOE98280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98280"; +contig16 ena start_codon 62262 62264 . - 0 gene_id "W7K_15740"; transcript_id "KOE98280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 61467 61469 . - 0 gene_id "W7K_15740"; transcript_id "KOE98280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 62377 63015 . - . gene_id "W7K_15745"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 62377 63015 . - . gene_id "W7K_15745"; transcript_id "KOE98281"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 62377 63015 . - . gene_id "W7K_15745"; transcript_id "KOE98281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98281-1"; +contig16 ena CDS 62380 63015 . - 0 gene_id "W7K_15745"; transcript_id "KOE98281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98281"; +contig16 ena start_codon 63013 63015 . - 0 gene_id "W7K_15745"; transcript_id "KOE98281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 62377 62379 . - 0 gene_id "W7K_15745"; transcript_id "KOE98281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 63055 63654 . - . gene_id "W7K_15750"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 63055 63654 . - . gene_id "W7K_15750"; transcript_id "KOE98282"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 63055 63654 . - . gene_id "W7K_15750"; transcript_id "KOE98282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98282-1"; +contig16 ena CDS 63058 63654 . - 0 gene_id "W7K_15750"; transcript_id "KOE98282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98282"; +contig16 ena start_codon 63652 63654 . - 0 gene_id "W7K_15750"; transcript_id "KOE98282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 63055 63057 . - 0 gene_id "W7K_15750"; transcript_id "KOE98282"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 63739 63990 . + . gene_id "W7K_15755"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 63739 63990 . + . gene_id "W7K_15755"; transcript_id "KOE98283"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 63739 63990 . + . gene_id "W7K_15755"; transcript_id "KOE98283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98283-1"; +contig16 ena CDS 63739 63987 . + 0 gene_id "W7K_15755"; transcript_id "KOE98283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98283"; +contig16 ena start_codon 63739 63741 . + 0 gene_id "W7K_15755"; transcript_id "KOE98283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 63988 63990 . + 0 gene_id "W7K_15755"; transcript_id "KOE98283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 64063 64830 . - . gene_id "W7K_15760"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 64063 64830 . - . gene_id "W7K_15760"; transcript_id "KOE98284"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 64063 64830 . - . gene_id "W7K_15760"; transcript_id "KOE98284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98284-1"; +contig16 ena CDS 64066 64830 . - 0 gene_id "W7K_15760"; transcript_id "KOE98284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98284"; +contig16 ena start_codon 64828 64830 . - 0 gene_id "W7K_15760"; transcript_id "KOE98284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 64063 64065 . - 0 gene_id "W7K_15760"; transcript_id "KOE98284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 65001 66410 . - . gene_id "W7K_15765"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 65001 66410 . - . gene_id "W7K_15765"; transcript_id "KOE98285"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 65001 66410 . - . gene_id "W7K_15765"; transcript_id "KOE98285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98285-1"; +contig16 ena CDS 65004 66410 . - 0 gene_id "W7K_15765"; transcript_id "KOE98285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98285"; +contig16 ena start_codon 66408 66410 . - 0 gene_id "W7K_15765"; transcript_id "KOE98285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 65001 65003 . - 0 gene_id "W7K_15765"; transcript_id "KOE98285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 66686 68347 . - . gene_id "W7K_15770"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 66686 68347 . - . gene_id "W7K_15770"; transcript_id "KOE98286"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 66686 68347 . - . gene_id "W7K_15770"; transcript_id "KOE98286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98286-1"; +contig16 ena CDS 66689 68347 . - 0 gene_id "W7K_15770"; transcript_id "KOE98286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98286"; +contig16 ena start_codon 68345 68347 . - 0 gene_id "W7K_15770"; transcript_id "KOE98286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 66686 66688 . - 0 gene_id "W7K_15770"; transcript_id "KOE98286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 68458 69885 . - . gene_id "W7K_15775"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 68458 69885 . - . gene_id "W7K_15775"; transcript_id "KOE98287"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 68458 69885 . - . gene_id "W7K_15775"; transcript_id "KOE98287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98287-1"; +contig16 ena CDS 68461 69885 . - 0 gene_id "W7K_15775"; transcript_id "KOE98287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98287"; +contig16 ena start_codon 69883 69885 . - 0 gene_id "W7K_15775"; transcript_id "KOE98287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 68458 68460 . - 0 gene_id "W7K_15775"; transcript_id "KOE98287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 70131 72074 . + . gene_id "W7K_15780"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 70131 72074 . + . gene_id "W7K_15780"; transcript_id "KOE98288"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 70131 72074 . + . gene_id "W7K_15780"; transcript_id "KOE98288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98288-1"; +contig16 ena CDS 70131 72071 . + 0 gene_id "W7K_15780"; transcript_id "KOE98288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98288"; +contig16 ena start_codon 70131 70133 . + 0 gene_id "W7K_15780"; transcript_id "KOE98288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 72072 72074 . + 0 gene_id "W7K_15780"; transcript_id "KOE98288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 72196 72861 . + . gene_id "W7K_15785"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 72196 72861 . + . gene_id "W7K_15785"; transcript_id "KOE98289"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 72196 72861 . + . gene_id "W7K_15785"; transcript_id "KOE98289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98289-1"; +contig16 ena CDS 72196 72858 . + 0 gene_id "W7K_15785"; transcript_id "KOE98289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98289"; +contig16 ena start_codon 72196 72198 . + 0 gene_id "W7K_15785"; transcript_id "KOE98289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 72859 72861 . + 0 gene_id "W7K_15785"; transcript_id "KOE98289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 72964 73419 . - . gene_id "W7K_15790"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 72964 73419 . - . gene_id "W7K_15790"; transcript_id "KOE98290"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 72964 73419 . - . gene_id "W7K_15790"; transcript_id "KOE98290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98290-1"; +contig16 ena CDS 72967 73419 . - 0 gene_id "W7K_15790"; transcript_id "KOE98290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98290"; +contig16 ena start_codon 73417 73419 . - 0 gene_id "W7K_15790"; transcript_id "KOE98290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 72964 72966 . - 0 gene_id "W7K_15790"; transcript_id "KOE98290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 73566 74141 . - . gene_id "W7K_15795"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 73566 74141 . - . gene_id "W7K_15795"; transcript_id "KOE98291"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 73566 74141 . - . gene_id "W7K_15795"; transcript_id "KOE98291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98291-1"; +contig16 ena CDS 73569 74141 . - 0 gene_id "W7K_15795"; transcript_id "KOE98291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98291"; +contig16 ena start_codon 74139 74141 . - 0 gene_id "W7K_15795"; transcript_id "KOE98291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 73566 73568 . - 0 gene_id "W7K_15795"; transcript_id "KOE98291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 74460 77918 . - . gene_id "W7K_15800"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 74460 77918 . - . gene_id "W7K_15800"; transcript_id "KOE98292"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 74460 77918 . - . gene_id "W7K_15800"; transcript_id "KOE98292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98292-1"; +contig16 ena CDS 74463 77918 . - 0 gene_id "W7K_15800"; transcript_id "KOE98292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98292"; +contig16 ena start_codon 77916 77918 . - 0 gene_id "W7K_15800"; transcript_id "KOE98292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 74460 74462 . - 0 gene_id "W7K_15800"; transcript_id "KOE98292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 78054 80201 . - . gene_id "W7K_15805"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 78054 80201 . - . gene_id "W7K_15805"; transcript_id "KOE98293"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 78054 80201 . - . gene_id "W7K_15805"; transcript_id "KOE98293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98293-1"; +contig16 ena CDS 78057 80201 . - 0 gene_id "W7K_15805"; transcript_id "KOE98293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98293"; +contig16 ena start_codon 80199 80201 . - 0 gene_id "W7K_15805"; transcript_id "KOE98293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 78054 78056 . - 0 gene_id "W7K_15805"; transcript_id "KOE98293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 80381 84241 . - . gene_id "W7K_15810"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 80381 84241 . - . gene_id "W7K_15810"; transcript_id "KOE98294"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 80381 84241 . - . gene_id "W7K_15810"; transcript_id "KOE98294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98294-1"; +contig16 ena CDS 80384 84241 . - 0 gene_id "W7K_15810"; transcript_id "KOE98294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98294"; +contig16 ena start_codon 84239 84241 . - 0 gene_id "W7K_15810"; transcript_id "KOE98294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 80381 80383 . - 0 gene_id "W7K_15810"; transcript_id "KOE98294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 84238 86022 . - . gene_id "W7K_15815"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 84238 86022 . - . gene_id "W7K_15815"; transcript_id "KOE98308"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 84238 86022 . - . gene_id "W7K_15815"; transcript_id "KOE98308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98308-1"; +contig16 ena CDS 84241 86022 . - 0 gene_id "W7K_15815"; transcript_id "KOE98308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98308"; +contig16 ena start_codon 86020 86022 . - 0 gene_id "W7K_15815"; transcript_id "KOE98308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 84238 84240 . - 0 gene_id "W7K_15815"; transcript_id "KOE98308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 86291 88366 . - . gene_id "W7K_15820"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 86291 88366 . - . gene_id "W7K_15820"; transcript_id "KOE98295"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 86291 88366 . - . gene_id "W7K_15820"; transcript_id "KOE98295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98295-1"; +contig16 ena CDS 86294 88366 . - 0 gene_id "W7K_15820"; transcript_id "KOE98295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98295"; +contig16 ena start_codon 88364 88366 . - 0 gene_id "W7K_15820"; transcript_id "KOE98295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 86291 86293 . - 0 gene_id "W7K_15820"; transcript_id "KOE98295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 88454 89365 . - . gene_id "W7K_15825"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 88454 89365 . - . gene_id "W7K_15825"; transcript_id "KOE98296"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 88454 89365 . - . gene_id "W7K_15825"; transcript_id "KOE98296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98296-1"; +contig16 ena CDS 88457 89365 . - 0 gene_id "W7K_15825"; transcript_id "KOE98296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98296"; +contig16 ena start_codon 89363 89365 . - 0 gene_id "W7K_15825"; transcript_id "KOE98296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 88454 88456 . - 0 gene_id "W7K_15825"; transcript_id "KOE98296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 89449 91284 . + . gene_id "W7K_15830"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 89449 91284 . + . gene_id "W7K_15830"; transcript_id "KOE98297"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 89449 91284 . + . gene_id "W7K_15830"; transcript_id "KOE98297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98297-1"; +contig16 ena CDS 89449 91281 . + 0 gene_id "W7K_15830"; transcript_id "KOE98297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98297"; +contig16 ena start_codon 89449 89451 . + 0 gene_id "W7K_15830"; transcript_id "KOE98297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 91282 91284 . + 0 gene_id "W7K_15830"; transcript_id "KOE98297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 91256 92002 . + . gene_id "W7K_15835"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 91256 92002 . + . gene_id "W7K_15835"; transcript_id "KOE98298"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 91256 92002 . + . gene_id "W7K_15835"; transcript_id "KOE98298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98298-1"; +contig16 ena CDS 91256 91999 . + 0 gene_id "W7K_15835"; transcript_id "KOE98298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98298"; +contig16 ena start_codon 91256 91258 . + 0 gene_id "W7K_15835"; transcript_id "KOE98298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 92000 92002 . + 0 gene_id "W7K_15835"; transcript_id "KOE98298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 92053 92964 . + . gene_id "W7K_15840"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 92053 92964 . + . gene_id "W7K_15840"; transcript_id "KOE98299"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 92053 92964 . + . gene_id "W7K_15840"; transcript_id "KOE98299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98299-1"; +contig16 ena CDS 92053 92961 . + 0 gene_id "W7K_15840"; transcript_id "KOE98299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98299"; +contig16 ena start_codon 92053 92055 . + 0 gene_id "W7K_15840"; transcript_id "KOE98299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 92962 92964 . + 0 gene_id "W7K_15840"; transcript_id "KOE98299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 93050 93799 . - . gene_id "W7K_15845"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 93050 93799 . - . gene_id "W7K_15845"; transcript_id "KOE98300"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 93050 93799 . - . gene_id "W7K_15845"; transcript_id "KOE98300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98300-1"; +contig16 ena CDS 93053 93799 . - 0 gene_id "W7K_15845"; transcript_id "KOE98300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98300"; +contig16 ena start_codon 93797 93799 . - 0 gene_id "W7K_15845"; transcript_id "KOE98300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 93050 93052 . - 0 gene_id "W7K_15845"; transcript_id "KOE98300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 93796 94254 . - . gene_id "W7K_15850"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 93796 94254 . - . gene_id "W7K_15850"; transcript_id "KOE98301"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 93796 94254 . - . gene_id "W7K_15850"; transcript_id "KOE98301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98301-1"; +contig16 ena CDS 93799 94254 . - 0 gene_id "W7K_15850"; transcript_id "KOE98301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98301"; +contig16 ena start_codon 94252 94254 . - 0 gene_id "W7K_15850"; transcript_id "KOE98301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 93796 93798 . - 0 gene_id "W7K_15850"; transcript_id "KOE98301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 94270 94497 . - . gene_id "W7K_15855"; gene_name "tatA"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 94270 94497 . - . gene_id "W7K_15855"; transcript_id "KOE98302"; gene_name "tatA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tatA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 94270 94497 . - . gene_id "W7K_15855"; transcript_id "KOE98302"; exon_number "1"; gene_name "tatA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tatA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98302-1"; +contig16 ena CDS 94273 94497 . - 0 gene_id "W7K_15855"; transcript_id "KOE98302"; exon_number "1"; gene_name "tatA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tatA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98302"; +contig16 ena start_codon 94495 94497 . - 0 gene_id "W7K_15855"; transcript_id "KOE98302"; exon_number "1"; gene_name "tatA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tatA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 94270 94272 . - 0 gene_id "W7K_15855"; transcript_id "KOE98302"; exon_number "1"; gene_name "tatA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tatA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 94573 95466 . - . gene_id "W7K_15860"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 94573 95466 . - . gene_id "W7K_15860"; transcript_id "KOE98303"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 94573 95466 . - . gene_id "W7K_15860"; transcript_id "KOE98303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98303-1"; +contig16 ena CDS 94576 95466 . - 0 gene_id "W7K_15860"; transcript_id "KOE98303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98303"; +contig16 ena start_codon 95464 95466 . - 0 gene_id "W7K_15860"; transcript_id "KOE98303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 94573 94575 . - 0 gene_id "W7K_15860"; transcript_id "KOE98303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 95632 96594 . + . gene_id "W7K_15865"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 95632 96594 . + . gene_id "W7K_15865"; transcript_id "KOE98304"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 95632 96594 . + . gene_id "W7K_15865"; transcript_id "KOE98304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98304-1"; +contig16 ena CDS 95632 96591 . + 0 gene_id "W7K_15865"; transcript_id "KOE98304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98304"; +contig16 ena start_codon 95632 95634 . + 0 gene_id "W7K_15865"; transcript_id "KOE98304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 96592 96594 . + 0 gene_id "W7K_15865"; transcript_id "KOE98304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 96591 97445 . + . gene_id "W7K_15870"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 96591 97445 . + . gene_id "W7K_15870"; transcript_id "KOE98305"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 96591 97445 . + . gene_id "W7K_15870"; transcript_id "KOE98305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98305-1"; +contig16 ena CDS 96591 97442 . + 0 gene_id "W7K_15870"; transcript_id "KOE98305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98305"; +contig16 ena start_codon 96591 96593 . + 0 gene_id "W7K_15870"; transcript_id "KOE98305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 97443 97445 . + 0 gene_id "W7K_15870"; transcript_id "KOE98305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena gene 97736 99841 . + . gene_id "W7K_15875"; gene_source "ena"; gene_biotype "protein_coding"; +contig16 ena transcript 97736 99841 . + . gene_id "W7K_15875"; transcript_id "KOE98306"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena exon 97736 99841 . + . gene_id "W7K_15875"; transcript_id "KOE98306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98306-1"; +contig16 ena CDS 97736 99838 . + 0 gene_id "W7K_15875"; transcript_id "KOE98306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98306"; +contig16 ena start_codon 97736 97738 . + 0 gene_id "W7K_15875"; transcript_id "KOE98306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig16 ena stop_codon 99839 99841 . + 0 gene_id "W7K_15875"; transcript_id "KOE98306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 1 247 . - . gene_id "W7K_08510"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 1 247 . - . gene_id "W7K_08510"; transcript_id "KOE99583"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 1 247 . - . gene_id "W7K_08510"; transcript_id "KOE99583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99583-1"; +contig32 ena CDS 1 247 . - 0 gene_id "W7K_08510"; transcript_id "KOE99583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99583"; +contig32 ena start_codon 245 247 . - 0 gene_id "W7K_08510"; transcript_id "KOE99583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 253 1377 . - . gene_id "W7K_08515"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 253 1377 . - . gene_id "W7K_08515"; transcript_id "KOE99584"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 253 1377 . - . gene_id "W7K_08515"; transcript_id "KOE99584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99584-1"; +contig32 ena CDS 256 1377 . - 0 gene_id "W7K_08515"; transcript_id "KOE99584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99584"; +contig32 ena start_codon 1375 1377 . - 0 gene_id "W7K_08515"; transcript_id "KOE99584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 253 255 . - 0 gene_id "W7K_08515"; transcript_id "KOE99584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 1469 2791 . - . gene_id "W7K_08520"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 1469 2791 . - . gene_id "W7K_08520"; transcript_id "KOE99585"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 1469 2791 . - . gene_id "W7K_08520"; transcript_id "KOE99585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99585-1"; +contig32 ena CDS 1472 2791 . - 0 gene_id "W7K_08520"; transcript_id "KOE99585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99585"; +contig32 ena start_codon 2789 2791 . - 0 gene_id "W7K_08520"; transcript_id "KOE99585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 1469 1471 . - 0 gene_id "W7K_08520"; transcript_id "KOE99585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 2921 3226 . + . gene_id "W7K_08525"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 2921 3226 . + . gene_id "W7K_08525"; transcript_id "KOE99586"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 2921 3226 . + . gene_id "W7K_08525"; transcript_id "KOE99586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99586-1"; +contig32 ena CDS 2921 3223 . + 0 gene_id "W7K_08525"; transcript_id "KOE99586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99586"; +contig32 ena start_codon 2921 2923 . + 0 gene_id "W7K_08525"; transcript_id "KOE99586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 3224 3226 . + 0 gene_id "W7K_08525"; transcript_id "KOE99586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 3395 5287 . - . gene_id "W7K_08530"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 3395 5287 . - . gene_id "W7K_08530"; transcript_id "KOE99587"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 3395 5287 . - . gene_id "W7K_08530"; transcript_id "KOE99587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99587-1"; +contig32 ena CDS 3398 5287 . - 0 gene_id "W7K_08530"; transcript_id "KOE99587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99587"; +contig32 ena start_codon 5285 5287 . - 0 gene_id "W7K_08530"; transcript_id "KOE99587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 3395 3397 . - 0 gene_id "W7K_08530"; transcript_id "KOE99587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 5934 6512 . + . gene_id "W7K_08535"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 5934 6512 . + . gene_id "W7K_08535"; transcript_id "KOE99588"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 5934 6512 . + . gene_id "W7K_08535"; transcript_id "KOE99588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99588-1"; +contig32 ena CDS 5934 6509 . + 0 gene_id "W7K_08535"; transcript_id "KOE99588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99588"; +contig32 ena start_codon 5934 5936 . + 0 gene_id "W7K_08535"; transcript_id "KOE99588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 6510 6512 . + 0 gene_id "W7K_08535"; transcript_id "KOE99588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 6539 7048 . + . gene_id "W7K_08540"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 6539 7048 . + . gene_id "W7K_08540"; transcript_id "KOE99589"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 6539 7048 . + . gene_id "W7K_08540"; transcript_id "KOE99589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99589-1"; +contig32 ena CDS 6539 7045 . + 0 gene_id "W7K_08540"; transcript_id "KOE99589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99589"; +contig32 ena start_codon 6539 6541 . + 0 gene_id "W7K_08540"; transcript_id "KOE99589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 7046 7048 . + 0 gene_id "W7K_08540"; transcript_id "KOE99589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 7109 7600 . + . gene_id "W7K_08545"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 7109 7600 . + . gene_id "W7K_08545"; transcript_id "KOE99590"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 7109 7600 . + . gene_id "W7K_08545"; transcript_id "KOE99590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99590-1"; +contig32 ena CDS 7109 7597 . + 0 gene_id "W7K_08545"; transcript_id "KOE99590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99590"; +contig32 ena start_codon 7109 7111 . + 0 gene_id "W7K_08545"; transcript_id "KOE99590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 7598 7600 . + 0 gene_id "W7K_08545"; transcript_id "KOE99590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 7733 8014 . + . gene_id "W7K_08550"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 7733 8014 . + . gene_id "W7K_08550"; transcript_id "KOE99591"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 7733 8014 . + . gene_id "W7K_08550"; transcript_id "KOE99591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99591-1"; +contig32 ena CDS 7733 8011 . + 0 gene_id "W7K_08550"; transcript_id "KOE99591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99591"; +contig32 ena start_codon 7733 7735 . + 0 gene_id "W7K_08550"; transcript_id "KOE99591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 8012 8014 . + 0 gene_id "W7K_08550"; transcript_id "KOE99591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 8011 9741 . + . gene_id "W7K_08555"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 8011 9741 . + . gene_id "W7K_08555"; transcript_id "KOE99592"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 8011 9741 . + . gene_id "W7K_08555"; transcript_id "KOE99592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99592-1"; +contig32 ena CDS 8011 9738 . + 0 gene_id "W7K_08555"; transcript_id "KOE99592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99592"; +contig32 ena start_codon 8011 8013 . + 0 gene_id "W7K_08555"; transcript_id "KOE99592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 9739 9741 . + 0 gene_id "W7K_08555"; transcript_id "KOE99592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 9862 10749 . + . gene_id "W7K_08560"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 9862 10749 . + . gene_id "W7K_08560"; transcript_id "KOE99593"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 9862 10749 . + . gene_id "W7K_08560"; transcript_id "KOE99593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99593-1"; +contig32 ena CDS 9862 10746 . + 0 gene_id "W7K_08560"; transcript_id "KOE99593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99593"; +contig32 ena start_codon 9862 9864 . + 0 gene_id "W7K_08560"; transcript_id "KOE99593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 10747 10749 . + 0 gene_id "W7K_08560"; transcript_id "KOE99593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 10834 11127 . - . gene_id "W7K_08565"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 10834 11127 . - . gene_id "W7K_08565"; transcript_id "KOE99594"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 10834 11127 . - . gene_id "W7K_08565"; transcript_id "KOE99594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99594-1"; +contig32 ena CDS 10837 11127 . - 0 gene_id "W7K_08565"; transcript_id "KOE99594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99594"; +contig32 ena start_codon 11125 11127 . - 0 gene_id "W7K_08565"; transcript_id "KOE99594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 10834 10836 . - 0 gene_id "W7K_08565"; transcript_id "KOE99594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 11251 11619 . + . gene_id "W7K_08570"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 11251 11619 . + . gene_id "W7K_08570"; transcript_id "KOE99661"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 11251 11619 . + . gene_id "W7K_08570"; transcript_id "KOE99661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99661-1"; +contig32 ena CDS 11251 11616 . + 0 gene_id "W7K_08570"; transcript_id "KOE99661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99661"; +contig32 ena start_codon 11251 11253 . + 0 gene_id "W7K_08570"; transcript_id "KOE99661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 11617 11619 . + 0 gene_id "W7K_08570"; transcript_id "KOE99661"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 11591 12070 . + . gene_id "W7K_08575"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 11591 12070 . + . gene_id "W7K_08575"; transcript_id "KOE99595"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 11591 12070 . + . gene_id "W7K_08575"; transcript_id "KOE99595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99595-1"; +contig32 ena CDS 11591 12067 . + 0 gene_id "W7K_08575"; transcript_id "KOE99595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99595"; +contig32 ena start_codon 11591 11593 . + 0 gene_id "W7K_08575"; transcript_id "KOE99595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 12068 12070 . + 0 gene_id "W7K_08575"; transcript_id "KOE99595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 12130 12762 . - . gene_id "W7K_08580"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 12130 12762 . - . gene_id "W7K_08580"; transcript_id "KOE99596"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 12130 12762 . - . gene_id "W7K_08580"; transcript_id "KOE99596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99596-1"; +contig32 ena CDS 12133 12762 . - 0 gene_id "W7K_08580"; transcript_id "KOE99596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99596"; +contig32 ena start_codon 12760 12762 . - 0 gene_id "W7K_08580"; transcript_id "KOE99596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 12130 12132 . - 0 gene_id "W7K_08580"; transcript_id "KOE99596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 12930 15491 . + . gene_id "W7K_08585"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 12930 15491 . + . gene_id "W7K_08585"; transcript_id "KOE99597"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 12930 15491 . + . gene_id "W7K_08585"; transcript_id "KOE99597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99597-1"; +contig32 ena CDS 12930 15488 . + 0 gene_id "W7K_08585"; transcript_id "KOE99597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99597"; +contig32 ena start_codon 12930 12932 . + 0 gene_id "W7K_08585"; transcript_id "KOE99597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 15489 15491 . + 0 gene_id "W7K_08585"; transcript_id "KOE99597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 15491 16606 . + . gene_id "W7K_08590"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 15491 16606 . + . gene_id "W7K_08590"; transcript_id "KOE99598"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 15491 16606 . + . gene_id "W7K_08590"; transcript_id "KOE99598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99598-1"; +contig32 ena CDS 15491 16603 . + 0 gene_id "W7K_08590"; transcript_id "KOE99598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99598"; +contig32 ena start_codon 15491 15493 . + 0 gene_id "W7K_08590"; transcript_id "KOE99598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 16604 16606 . + 0 gene_id "W7K_08590"; transcript_id "KOE99598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 16603 17970 . + . gene_id "W7K_08595"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 16603 17970 . + . gene_id "W7K_08595"; transcript_id "KOE99599"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 16603 17970 . + . gene_id "W7K_08595"; transcript_id "KOE99599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99599-1"; +contig32 ena CDS 16603 17967 . + 0 gene_id "W7K_08595"; transcript_id "KOE99599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99599"; +contig32 ena start_codon 16603 16605 . + 0 gene_id "W7K_08595"; transcript_id "KOE99599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 17968 17970 . + 0 gene_id "W7K_08595"; transcript_id "KOE99599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 17981 18595 . + . gene_id "W7K_08600"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 17981 18595 . + . gene_id "W7K_08600"; transcript_id "KOE99600"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 17981 18595 . + . gene_id "W7K_08600"; transcript_id "KOE99600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99600-1"; +contig32 ena CDS 17981 18592 . + 0 gene_id "W7K_08600"; transcript_id "KOE99600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99600"; +contig32 ena start_codon 17981 17983 . + 0 gene_id "W7K_08600"; transcript_id "KOE99600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 18593 18595 . + 0 gene_id "W7K_08600"; transcript_id "KOE99600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 18685 20100 . + . gene_id "W7K_08605"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 18685 20100 . + . gene_id "W7K_08605"; transcript_id "KOE99601"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 18685 20100 . + . gene_id "W7K_08605"; transcript_id "KOE99601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99601-1"; +contig32 ena CDS 18685 20097 . + 0 gene_id "W7K_08605"; transcript_id "KOE99601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99601"; +contig32 ena start_codon 18685 18687 . + 0 gene_id "W7K_08605"; transcript_id "KOE99601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 20098 20100 . + 0 gene_id "W7K_08605"; transcript_id "KOE99601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 20240 20935 . + . gene_id "W7K_08610"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 20240 20935 . + . gene_id "W7K_08610"; transcript_id "KOE99602"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 20240 20935 . + . gene_id "W7K_08610"; transcript_id "KOE99602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99602-1"; +contig32 ena CDS 20240 20932 . + 0 gene_id "W7K_08610"; transcript_id "KOE99602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99602"; +contig32 ena start_codon 20240 20242 . + 0 gene_id "W7K_08610"; transcript_id "KOE99602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 20933 20935 . + 0 gene_id "W7K_08610"; transcript_id "KOE99602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 21266 22297 . - . gene_id "W7K_08615"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 21266 22297 . - . gene_id "W7K_08615"; transcript_id "KOE99603"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 21266 22297 . - . gene_id "W7K_08615"; transcript_id "KOE99603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99603-1"; +contig32 ena CDS 21269 22297 . - 0 gene_id "W7K_08615"; transcript_id "KOE99603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99603"; +contig32 ena start_codon 22295 22297 . - 0 gene_id "W7K_08615"; transcript_id "KOE99603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 21266 21268 . - 0 gene_id "W7K_08615"; transcript_id "KOE99603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 22445 22672 . + . gene_id "W7K_08620"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 22445 22672 . + . gene_id "W7K_08620"; transcript_id "KOE99604"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 22445 22672 . + . gene_id "W7K_08620"; transcript_id "KOE99604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99604-1"; +contig32 ena CDS 22445 22669 . + 0 gene_id "W7K_08620"; transcript_id "KOE99604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99604"; +contig32 ena start_codon 22445 22447 . + 0 gene_id "W7K_08620"; transcript_id "KOE99604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 22670 22672 . + 0 gene_id "W7K_08620"; transcript_id "KOE99604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 22669 23439 . + . gene_id "W7K_08625"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 22669 23439 . + . gene_id "W7K_08625"; transcript_id "KOE99605"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 22669 23439 . + . gene_id "W7K_08625"; transcript_id "KOE99605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99605-1"; +contig32 ena CDS 22669 23436 . + 0 gene_id "W7K_08625"; transcript_id "KOE99605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99605"; +contig32 ena start_codon 22669 22671 . + 0 gene_id "W7K_08625"; transcript_id "KOE99605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 23437 23439 . + 0 gene_id "W7K_08625"; transcript_id "KOE99605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 23531 24754 . + . gene_id "W7K_08630"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 23531 24754 . + . gene_id "W7K_08630"; transcript_id "KOE99606"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 23531 24754 . + . gene_id "W7K_08630"; transcript_id "KOE99606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99606-1"; +contig32 ena CDS 23531 24751 . + 0 gene_id "W7K_08630"; transcript_id "KOE99606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99606"; +contig32 ena start_codon 23531 23533 . + 0 gene_id "W7K_08630"; transcript_id "KOE99606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 24752 24754 . + 0 gene_id "W7K_08630"; transcript_id "KOE99606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 24882 28052 . + . gene_id "W7K_08635"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 24882 28052 . + . gene_id "W7K_08635"; transcript_id "KOE99607"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 24882 28052 . + . gene_id "W7K_08635"; transcript_id "KOE99607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99607-1"; +contig32 ena CDS 24882 28049 . + 0 gene_id "W7K_08635"; transcript_id "KOE99607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99607"; +contig32 ena start_codon 24882 24884 . + 0 gene_id "W7K_08635"; transcript_id "KOE99607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 28050 28052 . + 0 gene_id "W7K_08635"; transcript_id "KOE99607"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 28117 28854 . + . gene_id "W7K_08640"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 28117 28854 . + . gene_id "W7K_08640"; transcript_id "KOE99608"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 28117 28854 . + . gene_id "W7K_08640"; transcript_id "KOE99608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99608-1"; +contig32 ena CDS 28117 28851 . + 0 gene_id "W7K_08640"; transcript_id "KOE99608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99608"; +contig32 ena start_codon 28117 28119 . + 0 gene_id "W7K_08640"; transcript_id "KOE99608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 28852 28854 . + 0 gene_id "W7K_08640"; transcript_id "KOE99608"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 28848 30269 . + . gene_id "W7K_08645"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 28848 30269 . + . gene_id "W7K_08645"; transcript_id "KOE99609"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 28848 30269 . + . gene_id "W7K_08645"; transcript_id "KOE99609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99609-1"; +contig32 ena CDS 28848 30266 . + 0 gene_id "W7K_08645"; transcript_id "KOE99609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99609"; +contig32 ena start_codon 28848 28850 . + 0 gene_id "W7K_08645"; transcript_id "KOE99609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 30267 30269 . + 0 gene_id "W7K_08645"; transcript_id "KOE99609"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 30311 30688 . - . gene_id "W7K_08650"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 30311 30688 . - . gene_id "W7K_08650"; transcript_id "KOE99610"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 30311 30688 . - . gene_id "W7K_08650"; transcript_id "KOE99610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99610-1"; +contig32 ena CDS 30314 30688 . - 0 gene_id "W7K_08650"; transcript_id "KOE99610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99610"; +contig32 ena start_codon 30686 30688 . - 0 gene_id "W7K_08650"; transcript_id "KOE99610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 30311 30313 . - 0 gene_id "W7K_08650"; transcript_id "KOE99610"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 30828 31091 . + . gene_id "W7K_08655"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 30828 31091 . + . gene_id "W7K_08655"; transcript_id "KOE99611"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 30828 31091 . + . gene_id "W7K_08655"; transcript_id "KOE99611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99611-1"; +contig32 ena CDS 30828 31088 . + 0 gene_id "W7K_08655"; transcript_id "KOE99611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99611"; +contig32 ena start_codon 30828 30830 . + 0 gene_id "W7K_08655"; transcript_id "KOE99611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 31089 31091 . + 0 gene_id "W7K_08655"; transcript_id "KOE99611"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 31111 31965 . - . gene_id "W7K_08660"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 31111 31965 . - . gene_id "W7K_08660"; transcript_id "KOE99612"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 31111 31965 . - . gene_id "W7K_08660"; transcript_id "KOE99612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99612-1"; +contig32 ena CDS 31114 31965 . - 0 gene_id "W7K_08660"; transcript_id "KOE99612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99612"; +contig32 ena start_codon 31963 31965 . - 0 gene_id "W7K_08660"; transcript_id "KOE99612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 31111 31113 . - 0 gene_id "W7K_08660"; transcript_id "KOE99612"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 32104 32349 . - . gene_id "W7K_08665"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 32104 32349 . - . gene_id "W7K_08665"; transcript_id "KOE99613"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 32104 32349 . - . gene_id "W7K_08665"; transcript_id "KOE99613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99613-1"; +contig32 ena CDS 32107 32349 . - 0 gene_id "W7K_08665"; transcript_id "KOE99613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99613"; +contig32 ena start_codon 32347 32349 . - 0 gene_id "W7K_08665"; transcript_id "KOE99613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 32104 32106 . - 0 gene_id "W7K_08665"; transcript_id "KOE99613"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 32376 32624 . - . gene_id "W7K_08670"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 32376 32624 . - . gene_id "W7K_08670"; transcript_id "KOE99614"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 32376 32624 . - . gene_id "W7K_08670"; transcript_id "KOE99614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99614-1"; +contig32 ena CDS 32379 32624 . - 0 gene_id "W7K_08670"; transcript_id "KOE99614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99614"; +contig32 ena start_codon 32622 32624 . - 0 gene_id "W7K_08670"; transcript_id "KOE99614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 32376 32378 . - 0 gene_id "W7K_08670"; transcript_id "KOE99614"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 32703 33407 . - . gene_id "W7K_08675"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 32703 33407 . - . gene_id "W7K_08675"; transcript_id "KOE99615"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 32703 33407 . - . gene_id "W7K_08675"; transcript_id "KOE99615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99615-1"; +contig32 ena CDS 32706 33407 . - 0 gene_id "W7K_08675"; transcript_id "KOE99615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99615"; +contig32 ena start_codon 33405 33407 . - 0 gene_id "W7K_08675"; transcript_id "KOE99615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 32703 32705 . - 0 gene_id "W7K_08675"; transcript_id "KOE99615"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 33413 34285 . - . gene_id "W7K_08680"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 33413 34285 . - . gene_id "W7K_08680"; transcript_id "KOE99616"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 33413 34285 . - . gene_id "W7K_08680"; transcript_id "KOE99616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99616-1"; +contig32 ena CDS 33416 34285 . - 0 gene_id "W7K_08680"; transcript_id "KOE99616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99616"; +contig32 ena start_codon 34283 34285 . - 0 gene_id "W7K_08680"; transcript_id "KOE99616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 33413 33415 . - 0 gene_id "W7K_08680"; transcript_id "KOE99616"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 34356 35267 . - . gene_id "W7K_08685"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 34356 35267 . - . gene_id "W7K_08685"; transcript_id "KOE99617"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 34356 35267 . - . gene_id "W7K_08685"; transcript_id "KOE99617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99617-1"; +contig32 ena CDS 34359 35267 . - 0 gene_id "W7K_08685"; transcript_id "KOE99617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99617"; +contig32 ena start_codon 35265 35267 . - 0 gene_id "W7K_08685"; transcript_id "KOE99617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 34356 34358 . - 0 gene_id "W7K_08685"; transcript_id "KOE99617"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 35387 36079 . + . gene_id "W7K_08690"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 35387 36079 . + . gene_id "W7K_08690"; transcript_id "KOE99618"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 35387 36079 . + . gene_id "W7K_08690"; transcript_id "KOE99618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99618-1"; +contig32 ena CDS 35387 36076 . + 0 gene_id "W7K_08690"; transcript_id "KOE99618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99618"; +contig32 ena start_codon 35387 35389 . + 0 gene_id "W7K_08690"; transcript_id "KOE99618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 36077 36079 . + 0 gene_id "W7K_08690"; transcript_id "KOE99618"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 36155 38176 . - . gene_id "W7K_08695"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 36155 38176 . - . gene_id "W7K_08695"; transcript_id "KOE99619"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 36155 38176 . - . gene_id "W7K_08695"; transcript_id "KOE99619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99619-1"; +contig32 ena CDS 36158 38176 . - 0 gene_id "W7K_08695"; transcript_id "KOE99619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99619"; +contig32 ena start_codon 38174 38176 . - 0 gene_id "W7K_08695"; transcript_id "KOE99619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 36155 36157 . - 0 gene_id "W7K_08695"; transcript_id "KOE99619"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 38330 38791 . + . gene_id "W7K_08700"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 38330 38791 . + . gene_id "W7K_08700"; transcript_id "KOE99620"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 38330 38791 . + . gene_id "W7K_08700"; transcript_id "KOE99620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99620-1"; +contig32 ena CDS 38330 38788 . + 0 gene_id "W7K_08700"; transcript_id "KOE99620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99620"; +contig32 ena start_codon 38330 38332 . + 0 gene_id "W7K_08700"; transcript_id "KOE99620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 38789 38791 . + 0 gene_id "W7K_08700"; transcript_id "KOE99620"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 38962 41088 . + . gene_id "W7K_08705"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 38962 41088 . + . gene_id "W7K_08705"; transcript_id "KOE99621"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 38962 41088 . + . gene_id "W7K_08705"; transcript_id "KOE99621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99621-1"; +contig32 ena CDS 38962 41085 . + 0 gene_id "W7K_08705"; transcript_id "KOE99621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99621"; +contig32 ena start_codon 38962 38964 . + 0 gene_id "W7K_08705"; transcript_id "KOE99621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 41086 41088 . + 0 gene_id "W7K_08705"; transcript_id "KOE99621"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 41189 41674 . - . gene_id "W7K_08710"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 41189 41674 . - . gene_id "W7K_08710"; transcript_id "KOE99622"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 41189 41674 . - . gene_id "W7K_08710"; transcript_id "KOE99622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99622-1"; +contig32 ena CDS 41192 41674 . - 0 gene_id "W7K_08710"; transcript_id "KOE99622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99622"; +contig32 ena start_codon 41672 41674 . - 0 gene_id "W7K_08710"; transcript_id "KOE99622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 41189 41191 . - 0 gene_id "W7K_08710"; transcript_id "KOE99622"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 41818 43215 . - . gene_id "W7K_08715"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 41818 43215 . - . gene_id "W7K_08715"; transcript_id "KOE99623"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 41818 43215 . - . gene_id "W7K_08715"; transcript_id "KOE99623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99623-1"; +contig32 ena CDS 41821 43215 . - 0 gene_id "W7K_08715"; transcript_id "KOE99623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99623"; +contig32 ena start_codon 43213 43215 . - 0 gene_id "W7K_08715"; transcript_id "KOE99623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 41818 41820 . - 0 gene_id "W7K_08715"; transcript_id "KOE99623"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 44250 45341 . + . gene_id "W7K_08720"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 44250 45341 . + . gene_id "W7K_08720"; transcript_id "KOE99624"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 44250 45341 . + . gene_id "W7K_08720"; transcript_id "KOE99624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99624-1"; +contig32 ena CDS 44250 45338 . + 0 gene_id "W7K_08720"; transcript_id "KOE99624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99624"; +contig32 ena start_codon 44250 44252 . + 0 gene_id "W7K_08720"; transcript_id "KOE99624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 45339 45341 . + 0 gene_id "W7K_08720"; transcript_id "KOE99624"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 46001 46573 . + . gene_id "W7K_08730"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 46001 46573 . + . gene_id "W7K_08730"; transcript_id "KOE99625"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 46001 46573 . + . gene_id "W7K_08730"; transcript_id "KOE99625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99625-1"; +contig32 ena CDS 46001 46570 . + 0 gene_id "W7K_08730"; transcript_id "KOE99625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99625"; +contig32 ena start_codon 46001 46003 . + 0 gene_id "W7K_08730"; transcript_id "KOE99625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 46571 46573 . + 0 gene_id "W7K_08730"; transcript_id "KOE99625"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 46700 47203 . - . gene_id "W7K_08735"; gene_name "smpB"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 46700 47203 . - . gene_id "W7K_08735"; transcript_id "KOE99626"; gene_name "smpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "smpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 46700 47203 . - . gene_id "W7K_08735"; transcript_id "KOE99626"; exon_number "1"; gene_name "smpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "smpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99626-1"; +contig32 ena CDS 46703 47203 . - 0 gene_id "W7K_08735"; transcript_id "KOE99626"; exon_number "1"; gene_name "smpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "smpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99626"; +contig32 ena start_codon 47201 47203 . - 0 gene_id "W7K_08735"; transcript_id "KOE99626"; exon_number "1"; gene_name "smpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "smpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 46700 46702 . - 0 gene_id "W7K_08735"; transcript_id "KOE99626"; exon_number "1"; gene_name "smpB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "smpB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 47261 47686 . + . gene_id "W7K_08740"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 47261 47686 . + . gene_id "W7K_08740"; transcript_id "KOE99627"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 47261 47686 . + . gene_id "W7K_08740"; transcript_id "KOE99627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99627-1"; +contig32 ena CDS 47261 47683 . + 0 gene_id "W7K_08740"; transcript_id "KOE99627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99627"; +contig32 ena start_codon 47261 47263 . + 0 gene_id "W7K_08740"; transcript_id "KOE99627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 47684 47686 . + 0 gene_id "W7K_08740"; transcript_id "KOE99627"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 47690 47947 . + . gene_id "W7K_08745"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 47690 47947 . + . gene_id "W7K_08745"; transcript_id "KOE99628"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 47690 47947 . + . gene_id "W7K_08745"; transcript_id "KOE99628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99628-1"; +contig32 ena CDS 47690 47944 . + 0 gene_id "W7K_08745"; transcript_id "KOE99628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99628"; +contig32 ena start_codon 47690 47692 . + 0 gene_id "W7K_08745"; transcript_id "KOE99628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 47945 47947 . + 0 gene_id "W7K_08745"; transcript_id "KOE99628"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 47984 48376 . - . gene_id "W7K_08750"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 47984 48376 . - . gene_id "W7K_08750"; transcript_id "KOE99629"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 47984 48376 . - . gene_id "W7K_08750"; transcript_id "KOE99629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99629-1"; +contig32 ena CDS 47987 48376 . - 0 gene_id "W7K_08750"; transcript_id "KOE99629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99629"; +contig32 ena start_codon 48374 48376 . - 0 gene_id "W7K_08750"; transcript_id "KOE99629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 47984 47986 . - 0 gene_id "W7K_08750"; transcript_id "KOE99629"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 48480 48887 . + . gene_id "W7K_08755"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 48480 48887 . + . gene_id "W7K_08755"; transcript_id "KOE99630"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 48480 48887 . + . gene_id "W7K_08755"; transcript_id "KOE99630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99630-1"; +contig32 ena CDS 48480 48884 . + 0 gene_id "W7K_08755"; transcript_id "KOE99630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99630"; +contig32 ena start_codon 48480 48482 . + 0 gene_id "W7K_08755"; transcript_id "KOE99630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 48885 48887 . + 0 gene_id "W7K_08755"; transcript_id "KOE99630"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 48947 50191 . - . gene_id "W7K_08760"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 48947 50191 . - . gene_id "W7K_08760"; transcript_id "KOE99631"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 48947 50191 . - . gene_id "W7K_08760"; transcript_id "KOE99631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99631-1"; +contig32 ena CDS 48950 50191 . - 0 gene_id "W7K_08760"; transcript_id "KOE99631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99631"; +contig32 ena start_codon 50189 50191 . - 0 gene_id "W7K_08760"; transcript_id "KOE99631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 48947 48949 . - 0 gene_id "W7K_08760"; transcript_id "KOE99631"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 50289 51206 . + . gene_id "W7K_08765"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 50289 51206 . + . gene_id "W7K_08765"; transcript_id "KOE99632"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 50289 51206 . + . gene_id "W7K_08765"; transcript_id "KOE99632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99632-1"; +contig32 ena CDS 50289 51203 . + 0 gene_id "W7K_08765"; transcript_id "KOE99632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99632"; +contig32 ena start_codon 50289 50291 . + 0 gene_id "W7K_08765"; transcript_id "KOE99632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 51204 51206 . + 0 gene_id "W7K_08765"; transcript_id "KOE99632"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 51307 52968 . - . gene_id "W7K_08770"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 51307 52968 . - . gene_id "W7K_08770"; transcript_id "KOE99633"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 51307 52968 . - . gene_id "W7K_08770"; transcript_id "KOE99633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99633-1"; +contig32 ena CDS 51310 52968 . - 0 gene_id "W7K_08770"; transcript_id "KOE99633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99633"; +contig32 ena start_codon 52966 52968 . - 0 gene_id "W7K_08770"; transcript_id "KOE99633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 51307 51309 . - 0 gene_id "W7K_08770"; transcript_id "KOE99633"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 53084 54148 . + . gene_id "W7K_08775"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 53084 54148 . + . gene_id "W7K_08775"; transcript_id "KOE99634"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 53084 54148 . + . gene_id "W7K_08775"; transcript_id "KOE99634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99634-1"; +contig32 ena CDS 53084 54145 . + 0 gene_id "W7K_08775"; transcript_id "KOE99634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99634"; +contig32 ena start_codon 53084 53086 . + 0 gene_id "W7K_08775"; transcript_id "KOE99634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 54146 54148 . + 0 gene_id "W7K_08775"; transcript_id "KOE99634"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 54212 54727 . + . gene_id "W7K_08780"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 54212 54727 . + . gene_id "W7K_08780"; transcript_id "KOE99635"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 54212 54727 . + . gene_id "W7K_08780"; transcript_id "KOE99635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99635-1"; +contig32 ena CDS 54212 54724 . + 0 gene_id "W7K_08780"; transcript_id "KOE99635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99635"; +contig32 ena start_codon 54212 54214 . + 0 gene_id "W7K_08780"; transcript_id "KOE99635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 54725 54727 . + 0 gene_id "W7K_08780"; transcript_id "KOE99635"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 54910 56835 . + . gene_id "W7K_08785"; gene_name "dnaK"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 54910 56835 . + . gene_id "W7K_08785"; transcript_id "KOE99636"; gene_name "dnaK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 54910 56835 . + . gene_id "W7K_08785"; transcript_id "KOE99636"; exon_number "1"; gene_name "dnaK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99636-1"; +contig32 ena CDS 54910 56832 . + 0 gene_id "W7K_08785"; transcript_id "KOE99636"; exon_number "1"; gene_name "dnaK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99636"; +contig32 ena start_codon 54910 54912 . + 0 gene_id "W7K_08785"; transcript_id "KOE99636"; exon_number "1"; gene_name "dnaK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 56833 56835 . + 0 gene_id "W7K_08785"; transcript_id "KOE99636"; exon_number "1"; gene_name "dnaK"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "dnaK-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 56990 58111 . + . gene_id "W7K_08790"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 56990 58111 . + . gene_id "W7K_08790"; transcript_id "KOE99637"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 56990 58111 . + . gene_id "W7K_08790"; transcript_id "KOE99637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99637-1"; +contig32 ena CDS 56990 58108 . + 0 gene_id "W7K_08790"; transcript_id "KOE99637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99637"; +contig32 ena start_codon 56990 56992 . + 0 gene_id "W7K_08790"; transcript_id "KOE99637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 58109 58111 . + 0 gene_id "W7K_08790"; transcript_id "KOE99637"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 58171 58968 . - . gene_id "W7K_08795"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 58171 58968 . - . gene_id "W7K_08795"; transcript_id "KOE99638"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 58171 58968 . - . gene_id "W7K_08795"; transcript_id "KOE99638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99638-1"; +contig32 ena CDS 58174 58968 . - 0 gene_id "W7K_08795"; transcript_id "KOE99638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99638"; +contig32 ena start_codon 58966 58968 . - 0 gene_id "W7K_08795"; transcript_id "KOE99638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 58171 58173 . - 0 gene_id "W7K_08795"; transcript_id "KOE99638"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 59041 60240 . + . gene_id "W7K_08800"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 59041 60240 . + . gene_id "W7K_08800"; transcript_id "KOE99639"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 59041 60240 . + . gene_id "W7K_08800"; transcript_id "KOE99639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99639-1"; +contig32 ena CDS 59041 60237 . + 0 gene_id "W7K_08800"; transcript_id "KOE99639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99639"; +contig32 ena start_codon 59041 59043 . + 0 gene_id "W7K_08800"; transcript_id "KOE99639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 60238 60240 . + 0 gene_id "W7K_08800"; transcript_id "KOE99639"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 60823 61731 . + . gene_id "W7K_08805"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 60823 61731 . + . gene_id "W7K_08805"; transcript_id "KOE99640"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 60823 61731 . + . gene_id "W7K_08805"; transcript_id "KOE99640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99640-1"; +contig32 ena CDS 60823 61728 . + 0 gene_id "W7K_08805"; transcript_id "KOE99640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99640"; +contig32 ena start_codon 60823 60825 . + 0 gene_id "W7K_08805"; transcript_id "KOE99640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 61729 61731 . + 0 gene_id "W7K_08805"; transcript_id "KOE99640"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 61728 62852 . + . gene_id "W7K_08810"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 61728 62852 . + . gene_id "W7K_08810"; transcript_id "KOE99641"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 61728 62852 . + . gene_id "W7K_08810"; transcript_id "KOE99641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99641-1"; +contig32 ena CDS 61728 62849 . + 0 gene_id "W7K_08810"; transcript_id "KOE99641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99641"; +contig32 ena start_codon 61728 61730 . + 0 gene_id "W7K_08810"; transcript_id "KOE99641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 62850 62852 . + 0 gene_id "W7K_08810"; transcript_id "KOE99641"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 63079 63273 . - . gene_id "W7K_08815"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 63079 63273 . - . gene_id "W7K_08815"; transcript_id "KOE99642"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 63079 63273 . - . gene_id "W7K_08815"; transcript_id "KOE99642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99642-1"; +contig32 ena CDS 63082 63273 . - 0 gene_id "W7K_08815"; transcript_id "KOE99642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99642"; +contig32 ena start_codon 63271 63273 . - 0 gene_id "W7K_08815"; transcript_id "KOE99642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 63079 63081 . - 0 gene_id "W7K_08815"; transcript_id "KOE99642"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 63344 65116 . - . gene_id "W7K_08820"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 63344 65116 . - . gene_id "W7K_08820"; transcript_id "KOE99643"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 63344 65116 . - . gene_id "W7K_08820"; transcript_id "KOE99643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99643-1"; +contig32 ena CDS 63347 65116 . - 0 gene_id "W7K_08820"; transcript_id "KOE99643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99643"; +contig32 ena start_codon 65114 65116 . - 0 gene_id "W7K_08820"; transcript_id "KOE99643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 63344 63346 . - 0 gene_id "W7K_08820"; transcript_id "KOE99643"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 65109 65705 . - . gene_id "W7K_08825"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 65109 65705 . - . gene_id "W7K_08825"; transcript_id "KOE99662"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 65109 65705 . - . gene_id "W7K_08825"; transcript_id "KOE99662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99662-1"; +contig32 ena CDS 65112 65705 . - 0 gene_id "W7K_08825"; transcript_id "KOE99662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99662"; +contig32 ena start_codon 65703 65705 . - 0 gene_id "W7K_08825"; transcript_id "KOE99662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 65109 65111 . - 0 gene_id "W7K_08825"; transcript_id "KOE99662"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 65746 66759 . - . gene_id "W7K_08830"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 65746 66759 . - . gene_id "W7K_08830"; transcript_id "KOE99644"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 65746 66759 . - . gene_id "W7K_08830"; transcript_id "KOE99644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99644-1"; +contig32 ena CDS 65749 66759 . - 0 gene_id "W7K_08830"; transcript_id "KOE99644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99644"; +contig32 ena start_codon 66757 66759 . - 0 gene_id "W7K_08830"; transcript_id "KOE99644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 65746 65748 . - 0 gene_id "W7K_08830"; transcript_id "KOE99644"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 66756 67310 . - . gene_id "W7K_08835"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 66756 67310 . - . gene_id "W7K_08835"; transcript_id "KOE99663"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 66756 67310 . - . gene_id "W7K_08835"; transcript_id "KOE99663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99663-1"; +contig32 ena CDS 66759 67310 . - 0 gene_id "W7K_08835"; transcript_id "KOE99663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99663"; +contig32 ena start_codon 67308 67310 . - 0 gene_id "W7K_08835"; transcript_id "KOE99663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 66756 66758 . - 0 gene_id "W7K_08835"; transcript_id "KOE99663"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 67522 70362 . + . gene_id "W7K_08840"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 67522 70362 . + . gene_id "W7K_08840"; transcript_id "KOE99645"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 67522 70362 . + . gene_id "W7K_08840"; transcript_id "KOE99645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99645-1"; +contig32 ena CDS 67522 70359 . + 0 gene_id "W7K_08840"; transcript_id "KOE99645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99645"; +contig32 ena start_codon 67522 67524 . + 0 gene_id "W7K_08840"; transcript_id "KOE99645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 70360 70362 . + 0 gene_id "W7K_08840"; transcript_id "KOE99645"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 70382 70975 . - . gene_id "W7K_08845"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 70382 70975 . - . gene_id "W7K_08845"; transcript_id "KOE99646"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 70382 70975 . - . gene_id "W7K_08845"; transcript_id "KOE99646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99646-1"; +contig32 ena CDS 70385 70975 . - 0 gene_id "W7K_08845"; transcript_id "KOE99646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99646"; +contig32 ena start_codon 70973 70975 . - 0 gene_id "W7K_08845"; transcript_id "KOE99646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 70382 70384 . - 0 gene_id "W7K_08845"; transcript_id "KOE99646"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 71240 72736 . - . gene_id "W7K_08850"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 71240 72736 . - . gene_id "W7K_08850"; transcript_id "KOE99647"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 71240 72736 . - . gene_id "W7K_08850"; transcript_id "KOE99647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99647-1"; +contig32 ena CDS 71243 72736 . - 0 gene_id "W7K_08850"; transcript_id "KOE99647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99647"; +contig32 ena start_codon 72734 72736 . - 0 gene_id "W7K_08850"; transcript_id "KOE99647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 71240 71242 . - 0 gene_id "W7K_08850"; transcript_id "KOE99647"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 72948 74015 . + . gene_id "W7K_08855"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 72948 74015 . + . gene_id "W7K_08855"; transcript_id "KOE99648"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 72948 74015 . + . gene_id "W7K_08855"; transcript_id "KOE99648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99648-1"; +contig32 ena CDS 72948 74012 . + 0 gene_id "W7K_08855"; transcript_id "KOE99648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99648"; +contig32 ena start_codon 72948 72950 . + 0 gene_id "W7K_08855"; transcript_id "KOE99648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 74013 74015 . + 0 gene_id "W7K_08855"; transcript_id "KOE99648"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 74193 75323 . + . gene_id "W7K_08860"; gene_name "tgt"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 74193 75323 . + . gene_id "W7K_08860"; transcript_id "KOE99649"; gene_name "tgt"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tgt-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 74193 75323 . + . gene_id "W7K_08860"; transcript_id "KOE99649"; exon_number "1"; gene_name "tgt"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tgt-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99649-1"; +contig32 ena CDS 74193 75320 . + 0 gene_id "W7K_08860"; transcript_id "KOE99649"; exon_number "1"; gene_name "tgt"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tgt-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99649"; +contig32 ena start_codon 74193 74195 . + 0 gene_id "W7K_08860"; transcript_id "KOE99649"; exon_number "1"; gene_name "tgt"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tgt-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 75321 75323 . + 0 gene_id "W7K_08860"; transcript_id "KOE99649"; exon_number "1"; gene_name "tgt"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tgt-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 75457 75801 . + . gene_id "W7K_08865"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 75457 75801 . + . gene_id "W7K_08865"; transcript_id "KOE99650"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 75457 75801 . + . gene_id "W7K_08865"; transcript_id "KOE99650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99650-1"; +contig32 ena CDS 75457 75798 . + 0 gene_id "W7K_08865"; transcript_id "KOE99650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99650"; +contig32 ena start_codon 75457 75459 . + 0 gene_id "W7K_08865"; transcript_id "KOE99650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 75799 75801 . + 0 gene_id "W7K_08865"; transcript_id "KOE99650"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 75863 77719 . + . gene_id "W7K_08870"; gene_name "secD"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 75863 77719 . + . gene_id "W7K_08870"; transcript_id "KOE99651"; gene_name "secD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 75863 77719 . + . gene_id "W7K_08870"; transcript_id "KOE99651"; exon_number "1"; gene_name "secD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99651-1"; +contig32 ena CDS 75863 77716 . + 0 gene_id "W7K_08870"; transcript_id "KOE99651"; exon_number "1"; gene_name "secD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99651"; +contig32 ena start_codon 75863 75865 . + 0 gene_id "W7K_08870"; transcript_id "KOE99651"; exon_number "1"; gene_name "secD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 77717 77719 . + 0 gene_id "W7K_08870"; transcript_id "KOE99651"; exon_number "1"; gene_name "secD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "secD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 77736 78716 . + . gene_id "W7K_08875"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 77736 78716 . + . gene_id "W7K_08875"; transcript_id "KOE99652"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 77736 78716 . + . gene_id "W7K_08875"; transcript_id "KOE99652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99652-1"; +contig32 ena CDS 77736 78713 . + 0 gene_id "W7K_08875"; transcript_id "KOE99652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99652"; +contig32 ena start_codon 77736 77738 . + 0 gene_id "W7K_08875"; transcript_id "KOE99652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 78714 78716 . + 0 gene_id "W7K_08875"; transcript_id "KOE99652"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 79388 80647 . + . gene_id "W7K_08880"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 79388 80647 . + . gene_id "W7K_08880"; transcript_id "KOE99653"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 79388 80647 . + . gene_id "W7K_08880"; transcript_id "KOE99653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99653-1"; +contig32 ena CDS 79388 80644 . + 0 gene_id "W7K_08880"; transcript_id "KOE99653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99653"; +contig32 ena start_codon 79388 79390 . + 0 gene_id "W7K_08880"; transcript_id "KOE99653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 80645 80647 . + 0 gene_id "W7K_08880"; transcript_id "KOE99653"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 80761 82830 . - . gene_id "W7K_08885"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 80761 82830 . - . gene_id "W7K_08885"; transcript_id "KOE99664"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 80761 82830 . - . gene_id "W7K_08885"; transcript_id "KOE99664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99664-1"; +contig32 ena CDS 80764 82830 . - 0 gene_id "W7K_08885"; transcript_id "KOE99664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99664"; +contig32 ena start_codon 82828 82830 . - 0 gene_id "W7K_08885"; transcript_id "KOE99664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 80761 80763 . - 0 gene_id "W7K_08885"; transcript_id "KOE99664"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 82922 84106 . - . gene_id "W7K_08890"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 82922 84106 . - . gene_id "W7K_08890"; transcript_id "KOE99654"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 82922 84106 . - . gene_id "W7K_08890"; transcript_id "KOE99654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99654-1"; +contig32 ena CDS 82925 84106 . - 0 gene_id "W7K_08890"; transcript_id "KOE99654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99654"; +contig32 ena start_codon 84104 84106 . - 0 gene_id "W7K_08890"; transcript_id "KOE99654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 82922 82924 . - 0 gene_id "W7K_08890"; transcript_id "KOE99654"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 84103 84651 . - . gene_id "W7K_08895"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 84103 84651 . - . gene_id "W7K_08895"; transcript_id "KOE99655"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 84103 84651 . - . gene_id "W7K_08895"; transcript_id "KOE99655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99655-1"; +contig32 ena CDS 84106 84651 . - 0 gene_id "W7K_08895"; transcript_id "KOE99655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99655"; +contig32 ena start_codon 84649 84651 . - 0 gene_id "W7K_08895"; transcript_id "KOE99655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 84103 84105 . - 0 gene_id "W7K_08895"; transcript_id "KOE99655"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 84775 85653 . + . gene_id "W7K_08900"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 84775 85653 . + . gene_id "W7K_08900"; transcript_id "KOE99656"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 84775 85653 . + . gene_id "W7K_08900"; transcript_id "KOE99656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99656-1"; +contig32 ena CDS 84775 85650 . + 0 gene_id "W7K_08900"; transcript_id "KOE99656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99656"; +contig32 ena start_codon 84775 84777 . + 0 gene_id "W7K_08900"; transcript_id "KOE99656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 85651 85653 . + 0 gene_id "W7K_08900"; transcript_id "KOE99656"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 85660 86148 . - . gene_id "W7K_08905"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 85660 86148 . - . gene_id "W7K_08905"; transcript_id "KOE99657"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 85660 86148 . - . gene_id "W7K_08905"; transcript_id "KOE99657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99657-1"; +contig32 ena CDS 85663 86148 . - 0 gene_id "W7K_08905"; transcript_id "KOE99657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99657"; +contig32 ena start_codon 86146 86148 . - 0 gene_id "W7K_08905"; transcript_id "KOE99657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 85660 85662 . - 0 gene_id "W7K_08905"; transcript_id "KOE99657"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 86451 86660 . + . gene_id "W7K_08910"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 86451 86660 . + . gene_id "W7K_08910"; transcript_id "KOE99658"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 86451 86660 . + . gene_id "W7K_08910"; transcript_id "KOE99658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99658-1"; +contig32 ena CDS 86451 86657 . + 0 gene_id "W7K_08910"; transcript_id "KOE99658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99658"; +contig32 ena start_codon 86451 86453 . + 0 gene_id "W7K_08910"; transcript_id "KOE99658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 86658 86660 . + 0 gene_id "W7K_08910"; transcript_id "KOE99658"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 86846 87535 . + . gene_id "W7K_08915"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 86846 87535 . + . gene_id "W7K_08915"; transcript_id "KOE99659"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 86846 87535 . + . gene_id "W7K_08915"; transcript_id "KOE99659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99659-1"; +contig32 ena CDS 86846 87532 . + 0 gene_id "W7K_08915"; transcript_id "KOE99659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99659"; +contig32 ena start_codon 86846 86848 . + 0 gene_id "W7K_08915"; transcript_id "KOE99659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 87533 87535 . + 0 gene_id "W7K_08915"; transcript_id "KOE99659"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena gene 87568 89133 . + . gene_id "W7K_08920"; gene_source "ena"; gene_biotype "protein_coding"; +contig32 ena transcript 87568 89133 . + . gene_id "W7K_08920"; transcript_id "KOE99660"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena exon 87568 89133 . + . gene_id "W7K_08920"; transcript_id "KOE99660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99660-1"; +contig32 ena CDS 87568 89130 . + 0 gene_id "W7K_08920"; transcript_id "KOE99660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99660"; +contig32 ena start_codon 87568 87570 . + 0 gene_id "W7K_08920"; transcript_id "KOE99660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig32 ena stop_codon 89131 89133 . + 0 gene_id "W7K_08920"; transcript_id "KOE99660"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 107 301 . + . gene_id "W7K_04340"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 107 301 . + . gene_id "W7K_04340"; transcript_id "KOF00394"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 107 301 . + . gene_id "W7K_04340"; transcript_id "KOF00394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00394-1"; +contig38 ena CDS 107 298 . + 0 gene_id "W7K_04340"; transcript_id "KOF00394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00394"; +contig38 ena start_codon 107 109 . + 0 gene_id "W7K_04340"; transcript_id "KOF00394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 299 301 . + 0 gene_id "W7K_04340"; transcript_id "KOF00394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 359 820 . - . gene_id "W7K_04345"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 359 820 . - . gene_id "W7K_04345"; transcript_id "KOF00395"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 359 820 . - . gene_id "W7K_04345"; transcript_id "KOF00395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00395-1"; +contig38 ena CDS 362 820 . - 0 gene_id "W7K_04345"; transcript_id "KOF00395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00395"; +contig38 ena start_codon 818 820 . - 0 gene_id "W7K_04345"; transcript_id "KOF00395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 359 361 . - 0 gene_id "W7K_04345"; transcript_id "KOF00395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 927 2549 . - . gene_id "W7K_04350"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 927 2549 . - . gene_id "W7K_04350"; transcript_id "KOF00396"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 927 2549 . - . gene_id "W7K_04350"; transcript_id "KOF00396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00396-1"; +contig38 ena CDS 930 2549 . - 0 gene_id "W7K_04350"; transcript_id "KOF00396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00396"; +contig38 ena start_codon 2547 2549 . - 0 gene_id "W7K_04350"; transcript_id "KOF00396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 927 929 . - 0 gene_id "W7K_04350"; transcript_id "KOF00396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 2605 3891 . - . gene_id "W7K_04355"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 2605 3891 . - . gene_id "W7K_04355"; transcript_id "KOF00397"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 2605 3891 . - . gene_id "W7K_04355"; transcript_id "KOF00397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00397-1"; +contig38 ena CDS 2608 3891 . - 0 gene_id "W7K_04355"; transcript_id "KOF00397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00397"; +contig38 ena start_codon 3889 3891 . - 0 gene_id "W7K_04355"; transcript_id "KOF00397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 2605 2607 . - 0 gene_id "W7K_04355"; transcript_id "KOF00397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 4034 4468 . - . gene_id "W7K_04360"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 4034 4468 . - . gene_id "W7K_04360"; transcript_id "KOF00398"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 4034 4468 . - . gene_id "W7K_04360"; transcript_id "KOF00398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00398-1"; +contig38 ena CDS 4037 4468 . - 0 gene_id "W7K_04360"; transcript_id "KOF00398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00398"; +contig38 ena start_codon 4466 4468 . - 0 gene_id "W7K_04360"; transcript_id "KOF00398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 4034 4036 . - 0 gene_id "W7K_04360"; transcript_id "KOF00398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 4602 4688 . + . gene_id "W7K_04365"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 4602 4688 . + . gene_id "W7K_04365"; transcript_id "EBT00051077649"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04365"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 4602 4688 . + . gene_id "W7K_04365"; transcript_id "EBT00051077649"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04365"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04365-1"; +contig38 ena gene 4712 6121 . - . gene_id "W7K_04370"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 4712 6121 . - . gene_id "W7K_04370"; transcript_id "KOF00476"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 4712 6121 . - . gene_id "W7K_04370"; transcript_id "KOF00476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00476-1"; +contig38 ena CDS 4715 6121 . - 0 gene_id "W7K_04370"; transcript_id "KOF00476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00476"; +contig38 ena start_codon 6119 6121 . - 0 gene_id "W7K_04370"; transcript_id "KOF00476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 4712 4714 . - 0 gene_id "W7K_04370"; transcript_id "KOF00476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 6166 6606 . - . gene_id "W7K_04375"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 6166 6606 . - . gene_id "W7K_04375"; transcript_id "KOF00399"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 6166 6606 . - . gene_id "W7K_04375"; transcript_id "KOF00399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00399-1"; +contig38 ena CDS 6169 6606 . - 0 gene_id "W7K_04375"; transcript_id "KOF00399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00399"; +contig38 ena start_codon 6604 6606 . - 0 gene_id "W7K_04375"; transcript_id "KOF00399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 6166 6168 . - 0 gene_id "W7K_04375"; transcript_id "KOF00399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 6786 7073 . + . gene_id "W7K_04380"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 6786 7073 . + . gene_id "W7K_04380"; transcript_id "KOF00400"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 6786 7073 . + . gene_id "W7K_04380"; transcript_id "KOF00400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00400-1"; +contig38 ena CDS 6786 7070 . + 0 gene_id "W7K_04380"; transcript_id "KOF00400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00400"; +contig38 ena start_codon 6786 6788 . + 0 gene_id "W7K_04380"; transcript_id "KOF00400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 7071 7073 . + 0 gene_id "W7K_04380"; transcript_id "KOF00400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 7070 8119 . + . gene_id "W7K_04385"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 7070 8119 . + . gene_id "W7K_04385"; transcript_id "KOF00401"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 7070 8119 . + . gene_id "W7K_04385"; transcript_id "KOF00401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00401-1"; +contig38 ena CDS 7070 8116 . + 0 gene_id "W7K_04385"; transcript_id "KOF00401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00401"; +contig38 ena start_codon 7070 7072 . + 0 gene_id "W7K_04385"; transcript_id "KOF00401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 8117 8119 . + 0 gene_id "W7K_04385"; transcript_id "KOF00401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 8121 8357 . - . gene_id "W7K_04390"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 8121 8357 . - . gene_id "W7K_04390"; transcript_id "KOF00402"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 8121 8357 . - . gene_id "W7K_04390"; transcript_id "KOF00402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00402-1"; +contig38 ena CDS 8124 8357 . - 0 gene_id "W7K_04390"; transcript_id "KOF00402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00402"; +contig38 ena start_codon 8355 8357 . - 0 gene_id "W7K_04390"; transcript_id "KOF00402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 8121 8123 . - 0 gene_id "W7K_04390"; transcript_id "KOF00402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 8711 8920 . - . gene_id "W7K_04395"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 8711 8920 . - . gene_id "W7K_04395"; transcript_id "KOF00403"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 8711 8920 . - . gene_id "W7K_04395"; transcript_id "KOF00403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00403-1"; +contig38 ena CDS 8714 8920 . - 0 gene_id "W7K_04395"; transcript_id "KOF00403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00403"; +contig38 ena start_codon 8918 8920 . - 0 gene_id "W7K_04395"; transcript_id "KOF00403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 8711 8713 . - 0 gene_id "W7K_04395"; transcript_id "KOF00403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 9032 9433 . + . gene_id "W7K_04400"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 9032 9433 . + . gene_id "W7K_04400"; transcript_id "KOF00404"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 9032 9433 . + . gene_id "W7K_04400"; transcript_id "KOF00404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00404-1"; +contig38 ena CDS 9032 9430 . + 0 gene_id "W7K_04400"; transcript_id "KOF00404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00404"; +contig38 ena start_codon 9032 9034 . + 0 gene_id "W7K_04400"; transcript_id "KOF00404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 9431 9433 . + 0 gene_id "W7K_04400"; transcript_id "KOF00404"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 9602 9994 . + . gene_id "W7K_04405"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 9602 9994 . + . gene_id "W7K_04405"; transcript_id "KOF00405"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 9602 9994 . + . gene_id "W7K_04405"; transcript_id "KOF00405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00405-1"; +contig38 ena CDS 9602 9991 . + 0 gene_id "W7K_04405"; transcript_id "KOF00405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00405"; +contig38 ena start_codon 9602 9604 . + 0 gene_id "W7K_04405"; transcript_id "KOF00405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 9992 9994 . + 0 gene_id "W7K_04405"; transcript_id "KOF00405"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 9999 10832 . - . gene_id "W7K_04410"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 9999 10832 . - . gene_id "W7K_04410"; transcript_id "KOF00406"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 9999 10832 . - . gene_id "W7K_04410"; transcript_id "KOF00406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00406-1"; +contig38 ena CDS 10002 10832 . - 0 gene_id "W7K_04410"; transcript_id "KOF00406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00406"; +contig38 ena start_codon 10830 10832 . - 0 gene_id "W7K_04410"; transcript_id "KOF00406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 9999 10001 . - 0 gene_id "W7K_04410"; transcript_id "KOF00406"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 10967 11461 . + . gene_id "W7K_04415"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 10967 11461 . + . gene_id "W7K_04415"; transcript_id "KOF00407"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 10967 11461 . + . gene_id "W7K_04415"; transcript_id "KOF00407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00407-1"; +contig38 ena CDS 10967 11458 . + 0 gene_id "W7K_04415"; transcript_id "KOF00407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00407"; +contig38 ena start_codon 10967 10969 . + 0 gene_id "W7K_04415"; transcript_id "KOF00407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 11459 11461 . + 0 gene_id "W7K_04415"; transcript_id "KOF00407"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 11480 11986 . - . gene_id "W7K_04420"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 11480 11986 . - . gene_id "W7K_04420"; transcript_id "KOF00408"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 11480 11986 . - . gene_id "W7K_04420"; transcript_id "KOF00408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00408-1"; +contig38 ena CDS 11483 11986 . - 0 gene_id "W7K_04420"; transcript_id "KOF00408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00408"; +contig38 ena start_codon 11984 11986 . - 0 gene_id "W7K_04420"; transcript_id "KOF00408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 11480 11482 . - 0 gene_id "W7K_04420"; transcript_id "KOF00408"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 12248 13321 . + . gene_id "W7K_04425"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 12248 13321 . + . gene_id "W7K_04425"; transcript_id "KOF00409"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 12248 13321 . + . gene_id "W7K_04425"; transcript_id "KOF00409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00409-1"; +contig38 ena CDS 12248 13318 . + 0 gene_id "W7K_04425"; transcript_id "KOF00409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00409"; +contig38 ena start_codon 12248 12250 . + 0 gene_id "W7K_04425"; transcript_id "KOF00409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 13319 13321 . + 0 gene_id "W7K_04425"; transcript_id "KOF00409"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 13330 13950 . + . gene_id "W7K_04430"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 13330 13950 . + . gene_id "W7K_04430"; transcript_id "KOF00410"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 13330 13950 . + . gene_id "W7K_04430"; transcript_id "KOF00410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00410-1"; +contig38 ena CDS 13330 13947 . + 0 gene_id "W7K_04430"; transcript_id "KOF00410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00410"; +contig38 ena start_codon 13330 13332 . + 0 gene_id "W7K_04430"; transcript_id "KOF00410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 13948 13950 . + 0 gene_id "W7K_04430"; transcript_id "KOF00410"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 13966 14235 . - . gene_id "W7K_04435"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 13966 14235 . - . gene_id "W7K_04435"; transcript_id "KOF00411"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 13966 14235 . - . gene_id "W7K_04435"; transcript_id "KOF00411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00411-1"; +contig38 ena CDS 13969 14235 . - 0 gene_id "W7K_04435"; transcript_id "KOF00411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00411"; +contig38 ena start_codon 14233 14235 . - 0 gene_id "W7K_04435"; transcript_id "KOF00411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 13966 13968 . - 0 gene_id "W7K_04435"; transcript_id "KOF00411"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 14359 15063 . - . gene_id "W7K_04440"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 14359 15063 . - . gene_id "W7K_04440"; transcript_id "KOF00412"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 14359 15063 . - . gene_id "W7K_04440"; transcript_id "KOF00412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00412-1"; +contig38 ena CDS 14362 15063 . - 0 gene_id "W7K_04440"; transcript_id "KOF00412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00412"; +contig38 ena start_codon 15061 15063 . - 0 gene_id "W7K_04440"; transcript_id "KOF00412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 14359 14361 . - 0 gene_id "W7K_04440"; transcript_id "KOF00412"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 15169 15810 . + . gene_id "W7K_04445"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 15169 15810 . + . gene_id "W7K_04445"; transcript_id "KOF00413"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 15169 15810 . + . gene_id "W7K_04445"; transcript_id "KOF00413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00413-1"; +contig38 ena CDS 15169 15807 . + 0 gene_id "W7K_04445"; transcript_id "KOF00413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00413"; +contig38 ena start_codon 15169 15171 . + 0 gene_id "W7K_04445"; transcript_id "KOF00413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 15808 15810 . + 0 gene_id "W7K_04445"; transcript_id "KOF00413"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 15815 16324 . - . gene_id "W7K_04450"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 15815 16324 . - . gene_id "W7K_04450"; transcript_id "KOF00477"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 15815 16324 . - . gene_id "W7K_04450"; transcript_id "KOF00477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00477-1"; +contig38 ena CDS 15818 16324 . - 0 gene_id "W7K_04450"; transcript_id "KOF00477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00477"; +contig38 ena start_codon 16322 16324 . - 0 gene_id "W7K_04450"; transcript_id "KOF00477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 15815 15817 . - 0 gene_id "W7K_04450"; transcript_id "KOF00477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 17010 17414 . + . gene_id "W7K_04460"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 17010 17414 . + . gene_id "W7K_04460"; transcript_id "KOF00414"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 17010 17414 . + . gene_id "W7K_04460"; transcript_id "KOF00414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00414-1"; +contig38 ena CDS 17010 17411 . + 0 gene_id "W7K_04460"; transcript_id "KOF00414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00414"; +contig38 ena start_codon 17010 17012 . + 0 gene_id "W7K_04460"; transcript_id "KOF00414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 17412 17414 . + 0 gene_id "W7K_04460"; transcript_id "KOF00414"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 17487 17560 . - . gene_id "W7K_04465"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 17487 17560 . - . gene_id "W7K_04465"; transcript_id "EBT00051077650"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04465"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 17487 17560 . - . gene_id "W7K_04465"; transcript_id "EBT00051077650"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04465"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04465-1"; +contig38 ena gene 17627 17702 . - . gene_id "W7K_04470"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 17627 17702 . - . gene_id "W7K_04470"; transcript_id "EBT00051077654"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04470"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 17627 17702 . - . gene_id "W7K_04470"; transcript_id "EBT00051077654"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04470"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04470-1"; +contig38 ena gene 17845 17920 . - . gene_id "W7K_04475"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 17845 17920 . - . gene_id "W7K_04475"; transcript_id "EBT00051077655"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04475"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 17845 17920 . - . gene_id "W7K_04475"; transcript_id "EBT00051077655"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04475"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04475-1"; +contig38 ena gene 18051 18452 . + . gene_id "W7K_04480"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 18051 18452 . + . gene_id "W7K_04480"; transcript_id "KOF00415"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 18051 18452 . + . gene_id "W7K_04480"; transcript_id "KOF00415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00415-1"; +contig38 ena CDS 18051 18449 . + 0 gene_id "W7K_04480"; transcript_id "KOF00415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00415"; +contig38 ena start_codon 18051 18053 . + 0 gene_id "W7K_04480"; transcript_id "KOF00415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 18450 18452 . + 0 gene_id "W7K_04480"; transcript_id "KOF00415"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 18445 18873 . + . gene_id "W7K_04485"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 18445 18873 . + . gene_id "W7K_04485"; transcript_id "KOF00416"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 18445 18873 . + . gene_id "W7K_04485"; transcript_id "KOF00416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00416-1"; +contig38 ena CDS 18445 18870 . + 0 gene_id "W7K_04485"; transcript_id "KOF00416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00416"; +contig38 ena start_codon 18445 18447 . + 0 gene_id "W7K_04485"; transcript_id "KOF00416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 18871 18873 . + 0 gene_id "W7K_04485"; transcript_id "KOF00416"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 18896 19816 . - . gene_id "W7K_04490"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 18896 19816 . - . gene_id "W7K_04490"; transcript_id "KOF00417"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 18896 19816 . - . gene_id "W7K_04490"; transcript_id "KOF00417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00417-1"; +contig38 ena CDS 18899 19816 . - 0 gene_id "W7K_04490"; transcript_id "KOF00417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00417"; +contig38 ena start_codon 19814 19816 . - 0 gene_id "W7K_04490"; transcript_id "KOF00417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 18896 18898 . - 0 gene_id "W7K_04490"; transcript_id "KOF00417"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 19813 20541 . - . gene_id "W7K_04495"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 19813 20541 . - . gene_id "W7K_04495"; transcript_id "KOF00418"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 19813 20541 . - . gene_id "W7K_04495"; transcript_id "KOF00418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00418-1"; +contig38 ena CDS 19816 20541 . - 0 gene_id "W7K_04495"; transcript_id "KOF00418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00418"; +contig38 ena start_codon 20539 20541 . - 0 gene_id "W7K_04495"; transcript_id "KOF00418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 19813 19815 . - 0 gene_id "W7K_04495"; transcript_id "KOF00418"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 20552 21691 . - . gene_id "W7K_04500"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 20552 21691 . - . gene_id "W7K_04500"; transcript_id "KOF00419"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 20552 21691 . - . gene_id "W7K_04500"; transcript_id "KOF00419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00419-1"; +contig38 ena CDS 20555 21691 . - 0 gene_id "W7K_04500"; transcript_id "KOF00419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00419"; +contig38 ena start_codon 21689 21691 . - 0 gene_id "W7K_04500"; transcript_id "KOF00419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 20552 20554 . - 0 gene_id "W7K_04500"; transcript_id "KOF00419"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 21688 23151 . - . gene_id "W7K_04505"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 21688 23151 . - . gene_id "W7K_04505"; transcript_id "KOF00420"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 21688 23151 . - . gene_id "W7K_04505"; transcript_id "KOF00420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00420-1"; +contig38 ena CDS 21691 23151 . - 0 gene_id "W7K_04505"; transcript_id "KOF00420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00420"; +contig38 ena start_codon 23149 23151 . - 0 gene_id "W7K_04505"; transcript_id "KOF00420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 21688 21690 . - 0 gene_id "W7K_04505"; transcript_id "KOF00420"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 23757 23832 . - . gene_id "W7K_04510"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 23757 23832 . - . gene_id "W7K_04510"; transcript_id "EBT00051077653"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04510"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 23757 23832 . - . gene_id "W7K_04510"; transcript_id "EBT00051077653"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04510"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04510-1"; +contig38 ena gene 23949 25055 . - . gene_id "W7K_04515"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 23949 25055 . - . gene_id "W7K_04515"; transcript_id "KOF00421"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 23949 25055 . - . gene_id "W7K_04515"; transcript_id "KOF00421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00421-1"; +contig38 ena CDS 23952 25055 . - 0 gene_id "W7K_04515"; transcript_id "KOF00421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00421"; +contig38 ena start_codon 25053 25055 . - 0 gene_id "W7K_04515"; transcript_id "KOF00421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 23949 23951 . - 0 gene_id "W7K_04515"; transcript_id "KOF00421"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 25194 25269 . - . gene_id "W7K_04520"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 25194 25269 . - . gene_id "W7K_04520"; transcript_id "EBT00051077652"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04520"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 25194 25269 . - . gene_id "W7K_04520"; transcript_id "EBT00051077652"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04520"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04520-1"; +contig38 ena gene 25384 26010 . - . gene_id "W7K_04525"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 25384 26010 . - . gene_id "W7K_04525"; transcript_id "KOF00422"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 25384 26010 . - . gene_id "W7K_04525"; transcript_id "KOF00422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00422-1"; +contig38 ena CDS 25387 26010 . - 0 gene_id "W7K_04525"; transcript_id "KOF00422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00422"; +contig38 ena start_codon 26008 26010 . - 0 gene_id "W7K_04525"; transcript_id "KOF00422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 25384 25386 . - 0 gene_id "W7K_04525"; transcript_id "KOF00422"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 26029 27873 . - . gene_id "W7K_04530"; gene_name "uvrC"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 26029 27873 . - . gene_id "W7K_04530"; transcript_id "KOF00423"; gene_name "uvrC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 26029 27873 . - . gene_id "W7K_04530"; transcript_id "KOF00423"; exon_number "1"; gene_name "uvrC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00423-1"; +contig38 ena CDS 26032 27873 . - 0 gene_id "W7K_04530"; transcript_id "KOF00423"; exon_number "1"; gene_name "uvrC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00423"; +contig38 ena start_codon 27871 27873 . - 0 gene_id "W7K_04530"; transcript_id "KOF00423"; exon_number "1"; gene_name "uvrC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 26029 26031 . - 0 gene_id "W7K_04530"; transcript_id "KOF00423"; exon_number "1"; gene_name "uvrC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "uvrC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 27870 29282 . - . gene_id "W7K_04535"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 27870 29282 . - . gene_id "W7K_04535"; transcript_id "KOF00424"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 27870 29282 . - . gene_id "W7K_04535"; transcript_id "KOF00424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00424-1"; +contig38 ena CDS 27873 29282 . - 0 gene_id "W7K_04535"; transcript_id "KOF00424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00424"; +contig38 ena start_codon 29280 29282 . - 0 gene_id "W7K_04535"; transcript_id "KOF00424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 27870 27872 . - 0 gene_id "W7K_04535"; transcript_id "KOF00424"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 29279 29767 . - . gene_id "W7K_04540"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 29279 29767 . - . gene_id "W7K_04540"; transcript_id "KOF00425"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 29279 29767 . - . gene_id "W7K_04540"; transcript_id "KOF00425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00425-1"; +contig38 ena CDS 29282 29767 . - 0 gene_id "W7K_04540"; transcript_id "KOF00425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00425"; +contig38 ena start_codon 29765 29767 . - 0 gene_id "W7K_04540"; transcript_id "KOF00425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 29279 29281 . - 0 gene_id "W7K_04540"; transcript_id "KOF00425"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 29764 30537 . - . gene_id "W7K_04545"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 29764 30537 . - . gene_id "W7K_04545"; transcript_id "KOF00426"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 29764 30537 . - . gene_id "W7K_04545"; transcript_id "KOF00426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00426-1"; +contig38 ena CDS 29767 30537 . - 0 gene_id "W7K_04545"; transcript_id "KOF00426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00426"; +contig38 ena start_codon 30535 30537 . - 0 gene_id "W7K_04545"; transcript_id "KOF00426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 29764 29766 . - 0 gene_id "W7K_04545"; transcript_id "KOF00426"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 30612 31631 . - . gene_id "W7K_04550"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 30612 31631 . - . gene_id "W7K_04550"; transcript_id "KOF00427"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 30612 31631 . - . gene_id "W7K_04550"; transcript_id "KOF00427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00427-1"; +contig38 ena CDS 30615 31631 . - 0 gene_id "W7K_04550"; transcript_id "KOF00427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00427"; +contig38 ena start_codon 31629 31631 . - 0 gene_id "W7K_04550"; transcript_id "KOF00427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 30612 30614 . - 0 gene_id "W7K_04550"; transcript_id "KOF00427"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 31631 33379 . - . gene_id "W7K_04555"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 31631 33379 . - . gene_id "W7K_04555"; transcript_id "KOF00428"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 31631 33379 . - . gene_id "W7K_04555"; transcript_id "KOF00428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00428-1"; +contig38 ena CDS 31634 33379 . - 0 gene_id "W7K_04555"; transcript_id "KOF00428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00428"; +contig38 ena start_codon 33377 33379 . - 0 gene_id "W7K_04555"; transcript_id "KOF00428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 31631 31633 . - 0 gene_id "W7K_04555"; transcript_id "KOF00428"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 33376 33798 . - . gene_id "W7K_04560"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 33376 33798 . - . gene_id "W7K_04560"; transcript_id "KOF00429"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 33376 33798 . - . gene_id "W7K_04560"; transcript_id "KOF00429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00429-1"; +contig38 ena CDS 33379 33798 . - 0 gene_id "W7K_04560"; transcript_id "KOF00429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00429"; +contig38 ena start_codon 33796 33798 . - 0 gene_id "W7K_04560"; transcript_id "KOF00429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 33376 33378 . - 0 gene_id "W7K_04560"; transcript_id "KOF00429"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 33802 34464 . - . gene_id "W7K_04565"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 33802 34464 . - . gene_id "W7K_04565"; transcript_id "KOF00430"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 33802 34464 . - . gene_id "W7K_04565"; transcript_id "KOF00430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00430-1"; +contig38 ena CDS 33805 34464 . - 0 gene_id "W7K_04565"; transcript_id "KOF00430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00430"; +contig38 ena start_codon 34462 34464 . - 0 gene_id "W7K_04565"; transcript_id "KOF00430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 33802 33804 . - 0 gene_id "W7K_04565"; transcript_id "KOF00430"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 34468 36867 . - . gene_id "W7K_04570"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 34468 36867 . - . gene_id "W7K_04570"; transcript_id "KOF00431"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 34468 36867 . - . gene_id "W7K_04570"; transcript_id "KOF00431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00431-1"; +contig38 ena CDS 34471 36867 . - 0 gene_id "W7K_04570"; transcript_id "KOF00431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00431"; +contig38 ena start_codon 36865 36867 . - 0 gene_id "W7K_04570"; transcript_id "KOF00431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 34468 34470 . - 0 gene_id "W7K_04570"; transcript_id "KOF00431"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 36927 38270 . - . gene_id "W7K_04575"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 36927 38270 . - . gene_id "W7K_04575"; transcript_id "KOF00432"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 36927 38270 . - . gene_id "W7K_04575"; transcript_id "KOF00432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00432-1"; +contig38 ena CDS 36930 38270 . - 0 gene_id "W7K_04575"; transcript_id "KOF00432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00432"; +contig38 ena start_codon 38268 38270 . - 0 gene_id "W7K_04575"; transcript_id "KOF00432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 36927 36929 . - 0 gene_id "W7K_04575"; transcript_id "KOF00432"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 38272 38943 . - . gene_id "W7K_04580"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 38272 38943 . - . gene_id "W7K_04580"; transcript_id "KOF00433"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 38272 38943 . - . gene_id "W7K_04580"; transcript_id "KOF00433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00433-1"; +contig38 ena CDS 38275 38943 . - 0 gene_id "W7K_04580"; transcript_id "KOF00433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00433"; +contig38 ena start_codon 38941 38943 . - 0 gene_id "W7K_04580"; transcript_id "KOF00433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 38272 38274 . - 0 gene_id "W7K_04580"; transcript_id "KOF00433"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 39089 39856 . + . gene_id "W7K_04585"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 39089 39856 . + . gene_id "W7K_04585"; transcript_id "KOF00434"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 39089 39856 . + . gene_id "W7K_04585"; transcript_id "KOF00434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00434-1"; +contig38 ena CDS 39089 39853 . + 0 gene_id "W7K_04585"; transcript_id "KOF00434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00434"; +contig38 ena start_codon 39089 39091 . + 0 gene_id "W7K_04585"; transcript_id "KOF00434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 39854 39856 . + 0 gene_id "W7K_04585"; transcript_id "KOF00434"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 39887 40171 . + . gene_id "W7K_04590"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 39887 40171 . + . gene_id "W7K_04590"; transcript_id "KOF00435"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 39887 40171 . + . gene_id "W7K_04590"; transcript_id "KOF00435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00435-1"; +contig38 ena CDS 39887 40168 . + 0 gene_id "W7K_04590"; transcript_id "KOF00435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00435"; +contig38 ena start_codon 39887 39889 . + 0 gene_id "W7K_04590"; transcript_id "KOF00435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 40169 40171 . + 0 gene_id "W7K_04590"; transcript_id "KOF00435"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 40541 40873 . + . gene_id "W7K_04595"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 40541 40873 . + . gene_id "W7K_04595"; transcript_id "KOF00436"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 40541 40873 . + . gene_id "W7K_04595"; transcript_id "KOF00436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00436-1"; +contig38 ena CDS 40541 40870 . + 0 gene_id "W7K_04595"; transcript_id "KOF00436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00436"; +contig38 ena start_codon 40541 40543 . + 0 gene_id "W7K_04595"; transcript_id "KOF00436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 40871 40873 . + 0 gene_id "W7K_04595"; transcript_id "KOF00436"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 40972 41046 . - . gene_id "W7K_04600"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 40972 41046 . - . gene_id "W7K_04600"; transcript_id "EBT00051077651"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04600"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 40972 41046 . - . gene_id "W7K_04600"; transcript_id "EBT00051077651"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04600"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04600-1"; +contig38 ena gene 41145 41219 . - . gene_id "W7K_04605"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 41145 41219 . - . gene_id "W7K_04605"; transcript_id "EBT00051077648"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04605"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 41145 41219 . - . gene_id "W7K_04605"; transcript_id "EBT00051077648"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04605"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04605-1"; +contig38 ena gene 41327 43351 . - . gene_id "W7K_04610"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 41327 43351 . - . gene_id "W7K_04610"; transcript_id "KOF00437"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 41327 43351 . - . gene_id "W7K_04610"; transcript_id "KOF00437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00437-1"; +contig38 ena CDS 41330 43351 . - 0 gene_id "W7K_04610"; transcript_id "KOF00437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00437"; +contig38 ena start_codon 43349 43351 . - 0 gene_id "W7K_04610"; transcript_id "KOF00437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 41327 41329 . - 0 gene_id "W7K_04610"; transcript_id "KOF00437"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 43480 44004 . + . gene_id "W7K_04615"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 43480 44004 . + . gene_id "W7K_04615"; transcript_id "KOF00438"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 43480 44004 . + . gene_id "W7K_04615"; transcript_id "KOF00438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00438-1"; +contig38 ena CDS 43480 44001 . + 0 gene_id "W7K_04615"; transcript_id "KOF00438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00438"; +contig38 ena start_codon 43480 43482 . + 0 gene_id "W7K_04615"; transcript_id "KOF00438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 44002 44004 . + 0 gene_id "W7K_04615"; transcript_id "KOF00438"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 44065 44141 . - . gene_id "W7K_04620"; gene_source "ena"; gene_biotype "tRNA"; +contig38 ena transcript 44065 44141 . - . gene_id "W7K_04620"; transcript_id "EBT00051077647"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04620"; transcript_source "ena"; transcript_biotype "tRNA"; +contig38 ena exon 44065 44141 . - . gene_id "W7K_04620"; transcript_id "EBT00051077647"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04620"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04620-1"; +contig38 ena gene 44210 44623 . - . gene_id "W7K_04625"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 44210 44623 . - . gene_id "W7K_04625"; transcript_id "KOF00439"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 44210 44623 . - . gene_id "W7K_04625"; transcript_id "KOF00439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00439-1"; +contig38 ena CDS 44213 44623 . - 0 gene_id "W7K_04625"; transcript_id "KOF00439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00439"; +contig38 ena start_codon 44621 44623 . - 0 gene_id "W7K_04625"; transcript_id "KOF00439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 44210 44212 . - 0 gene_id "W7K_04625"; transcript_id "KOF00439"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 44647 49221 . - . gene_id "W7K_04630"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 44647 49221 . - . gene_id "W7K_04630"; transcript_id "KOF00440"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 44647 49221 . - . gene_id "W7K_04630"; transcript_id "KOF00440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00440-1"; +contig38 ena CDS 44650 49221 . - 0 gene_id "W7K_04630"; transcript_id "KOF00440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00440"; +contig38 ena start_codon 49219 49221 . - 0 gene_id "W7K_04630"; transcript_id "KOF00440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 44647 44649 . - 0 gene_id "W7K_04630"; transcript_id "KOF00440"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 49218 49709 . - . gene_id "W7K_04635"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 49218 49709 . - . gene_id "W7K_04635"; transcript_id "KOF00441"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 49218 49709 . - . gene_id "W7K_04635"; transcript_id "KOF00441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00441-1"; +contig38 ena CDS 49221 49709 . - 0 gene_id "W7K_04635"; transcript_id "KOF00441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00441"; +contig38 ena start_codon 49707 49709 . - 0 gene_id "W7K_04635"; transcript_id "KOF00441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 49218 49220 . - 0 gene_id "W7K_04635"; transcript_id "KOF00441"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 49717 50907 . - . gene_id "W7K_04640"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 49717 50907 . - . gene_id "W7K_04640"; transcript_id "KOF00442"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 49717 50907 . - . gene_id "W7K_04640"; transcript_id "KOF00442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00442-1"; +contig38 ena CDS 49720 50907 . - 0 gene_id "W7K_04640"; transcript_id "KOF00442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00442"; +contig38 ena start_codon 50905 50907 . - 0 gene_id "W7K_04640"; transcript_id "KOF00442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 49717 49719 . - 0 gene_id "W7K_04640"; transcript_id "KOF00442"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 50907 51380 . - . gene_id "W7K_04645"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 50907 51380 . - . gene_id "W7K_04645"; transcript_id "KOF00443"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 50907 51380 . - . gene_id "W7K_04645"; transcript_id "KOF00443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00443-1"; +contig38 ena CDS 50910 51380 . - 0 gene_id "W7K_04645"; transcript_id "KOF00443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00443"; +contig38 ena start_codon 51378 51380 . - 0 gene_id "W7K_04645"; transcript_id "KOF00443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 50907 50909 . - 0 gene_id "W7K_04645"; transcript_id "KOF00443"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 51371 51889 . - . gene_id "W7K_04650"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 51371 51889 . - . gene_id "W7K_04650"; transcript_id "KOF00444"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 51371 51889 . - . gene_id "W7K_04650"; transcript_id "KOF00444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00444-1"; +contig38 ena CDS 51374 51889 . - 0 gene_id "W7K_04650"; transcript_id "KOF00444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00444"; +contig38 ena start_codon 51887 51889 . - 0 gene_id "W7K_04650"; transcript_id "KOF00444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 51371 51373 . - 0 gene_id "W7K_04650"; transcript_id "KOF00444"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 52051 53439 . - . gene_id "W7K_04655"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 52051 53439 . - . gene_id "W7K_04655"; transcript_id "KOF00445"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 52051 53439 . - . gene_id "W7K_04655"; transcript_id "KOF00445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00445-1"; +contig38 ena CDS 52054 53439 . - 0 gene_id "W7K_04655"; transcript_id "KOF00445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00445"; +contig38 ena start_codon 53437 53439 . - 0 gene_id "W7K_04655"; transcript_id "KOF00445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 52051 52053 . - 0 gene_id "W7K_04655"; transcript_id "KOF00445"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 53692 56922 . - . gene_id "W7K_04660"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 53692 56922 . - . gene_id "W7K_04660"; transcript_id "KOF00446"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 53692 56922 . - . gene_id "W7K_04660"; transcript_id "KOF00446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00446-1"; +contig38 ena CDS 53695 56922 . - 0 gene_id "W7K_04660"; transcript_id "KOF00446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00446"; +contig38 ena start_codon 56920 56922 . - 0 gene_id "W7K_04660"; transcript_id "KOF00446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 53692 53694 . - 0 gene_id "W7K_04660"; transcript_id "KOF00446"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 57173 57949 . - . gene_id "W7K_04665"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 57173 57949 . - . gene_id "W7K_04665"; transcript_id "KOF00447"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 57173 57949 . - . gene_id "W7K_04665"; transcript_id "KOF00447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00447-1"; +contig38 ena CDS 57176 57949 . - 0 gene_id "W7K_04665"; transcript_id "KOF00447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00447"; +contig38 ena start_codon 57947 57949 . - 0 gene_id "W7K_04665"; transcript_id "KOF00447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 57173 57175 . - 0 gene_id "W7K_04665"; transcript_id "KOF00447"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 57946 58266 . - . gene_id "W7K_04670"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 57946 58266 . - . gene_id "W7K_04670"; transcript_id "KOF00448"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 57946 58266 . - . gene_id "W7K_04670"; transcript_id "KOF00448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00448-1"; +contig38 ena CDS 57949 58266 . - 0 gene_id "W7K_04670"; transcript_id "KOF00448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00448"; +contig38 ena start_codon 58264 58266 . - 0 gene_id "W7K_04670"; transcript_id "KOF00448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 57946 57948 . - 0 gene_id "W7K_04670"; transcript_id "KOF00448"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 58387 58965 . + . gene_id "W7K_04675"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 58387 58965 . + . gene_id "W7K_04675"; transcript_id "KOF00449"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 58387 58965 . + . gene_id "W7K_04675"; transcript_id "KOF00449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00449-1"; +contig38 ena CDS 58387 58962 . + 0 gene_id "W7K_04675"; transcript_id "KOF00449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00449"; +contig38 ena start_codon 58387 58389 . + 0 gene_id "W7K_04675"; transcript_id "KOF00449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 58963 58965 . + 0 gene_id "W7K_04675"; transcript_id "KOF00449"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 59040 59381 . - . gene_id "W7K_04680"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 59040 59381 . - . gene_id "W7K_04680"; transcript_id "KOF00450"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 59040 59381 . - . gene_id "W7K_04680"; transcript_id "KOF00450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00450-1"; +contig38 ena CDS 59043 59381 . - 0 gene_id "W7K_04680"; transcript_id "KOF00450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00450"; +contig38 ena start_codon 59379 59381 . - 0 gene_id "W7K_04680"; transcript_id "KOF00450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 59040 59042 . - 0 gene_id "W7K_04680"; transcript_id "KOF00450"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 59494 60642 . - . gene_id "W7K_04685"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 59494 60642 . - . gene_id "W7K_04685"; transcript_id "KOF00451"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 59494 60642 . - . gene_id "W7K_04685"; transcript_id "KOF00451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00451-1"; +contig38 ena CDS 59497 60642 . - 0 gene_id "W7K_04685"; transcript_id "KOF00451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00451"; +contig38 ena start_codon 60640 60642 . - 0 gene_id "W7K_04685"; transcript_id "KOF00451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 59494 59496 . - 0 gene_id "W7K_04685"; transcript_id "KOF00451"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 60639 61142 . - . gene_id "W7K_04690"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 60639 61142 . - . gene_id "W7K_04690"; transcript_id "KOF00452"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 60639 61142 . - . gene_id "W7K_04690"; transcript_id "KOF00452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00452-1"; +contig38 ena CDS 60642 61142 . - 0 gene_id "W7K_04690"; transcript_id "KOF00452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00452"; +contig38 ena start_codon 61140 61142 . - 0 gene_id "W7K_04690"; transcript_id "KOF00452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 60639 60641 . - 0 gene_id "W7K_04690"; transcript_id "KOF00452"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 61201 61470 . + . gene_id "W7K_04695"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 61201 61470 . + . gene_id "W7K_04695"; transcript_id "KOF00453"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 61201 61470 . + . gene_id "W7K_04695"; transcript_id "KOF00453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00453-1"; +contig38 ena CDS 61201 61467 . + 0 gene_id "W7K_04695"; transcript_id "KOF00453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00453"; +contig38 ena start_codon 61201 61203 . + 0 gene_id "W7K_04695"; transcript_id "KOF00453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 61468 61470 . + 0 gene_id "W7K_04695"; transcript_id "KOF00453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 61467 62318 . + . gene_id "W7K_04700"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 61467 62318 . + . gene_id "W7K_04700"; transcript_id "KOF00454"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 61467 62318 . + . gene_id "W7K_04700"; transcript_id "KOF00454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00454-1"; +contig38 ena CDS 61467 62315 . + 0 gene_id "W7K_04700"; transcript_id "KOF00454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00454"; +contig38 ena start_codon 61467 61469 . + 0 gene_id "W7K_04700"; transcript_id "KOF00454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 62316 62318 . + 0 gene_id "W7K_04700"; transcript_id "KOF00454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 62500 63498 . + . gene_id "W7K_04705"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 62500 63498 . + . gene_id "W7K_04705"; transcript_id "KOF00455"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 62500 63498 . + . gene_id "W7K_04705"; transcript_id "KOF00455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00455-1"; +contig38 ena CDS 62500 63495 . + 0 gene_id "W7K_04705"; transcript_id "KOF00455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00455"; +contig38 ena start_codon 62500 62502 . + 0 gene_id "W7K_04705"; transcript_id "KOF00455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 63496 63498 . + 0 gene_id "W7K_04705"; transcript_id "KOF00455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 63567 63917 . + . gene_id "W7K_04710"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 63567 63917 . + . gene_id "W7K_04710"; transcript_id "KOF00456"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 63567 63917 . + . gene_id "W7K_04710"; transcript_id "KOF00456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00456-1"; +contig38 ena CDS 63567 63914 . + 0 gene_id "W7K_04710"; transcript_id "KOF00456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00456"; +contig38 ena start_codon 63567 63569 . + 0 gene_id "W7K_04710"; transcript_id "KOF00456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 63915 63917 . + 0 gene_id "W7K_04710"; transcript_id "KOF00456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 64022 64474 . - . gene_id "W7K_04715"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 64022 64474 . - . gene_id "W7K_04715"; transcript_id "KOF00457"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 64022 64474 . - . gene_id "W7K_04715"; transcript_id "KOF00457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00457-1"; +contig38 ena CDS 64025 64474 . - 0 gene_id "W7K_04715"; transcript_id "KOF00457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00457"; +contig38 ena start_codon 64472 64474 . - 0 gene_id "W7K_04715"; transcript_id "KOF00457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 64022 64024 . - 0 gene_id "W7K_04715"; transcript_id "KOF00457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 64559 65194 . - . gene_id "W7K_04720"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 64559 65194 . - . gene_id "W7K_04720"; transcript_id "KOF00458"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 64559 65194 . - . gene_id "W7K_04720"; transcript_id "KOF00458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00458-1"; +contig38 ena CDS 64562 65194 . - 0 gene_id "W7K_04720"; transcript_id "KOF00458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00458"; +contig38 ena start_codon 65192 65194 . - 0 gene_id "W7K_04720"; transcript_id "KOF00458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 64559 64561 . - 0 gene_id "W7K_04720"; transcript_id "KOF00458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 65329 66078 . - . gene_id "W7K_04725"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 65329 66078 . - . gene_id "W7K_04725"; transcript_id "KOF00459"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 65329 66078 . - . gene_id "W7K_04725"; transcript_id "KOF00459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00459-1"; +contig38 ena CDS 65332 66078 . - 0 gene_id "W7K_04725"; transcript_id "KOF00459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00459"; +contig38 ena start_codon 66076 66078 . - 0 gene_id "W7K_04725"; transcript_id "KOF00459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 65329 65331 . - 0 gene_id "W7K_04725"; transcript_id "KOF00459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 66071 67330 . - . gene_id "W7K_04730"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 66071 67330 . - . gene_id "W7K_04730"; transcript_id "KOF00460"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 66071 67330 . - . gene_id "W7K_04730"; transcript_id "KOF00460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00460-1"; +contig38 ena CDS 66074 67330 . - 0 gene_id "W7K_04730"; transcript_id "KOF00460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00460"; +contig38 ena start_codon 67328 67330 . - 0 gene_id "W7K_04730"; transcript_id "KOF00460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 66071 66073 . - 0 gene_id "W7K_04730"; transcript_id "KOF00460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 67330 67950 . - . gene_id "W7K_04735"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 67330 67950 . - . gene_id "W7K_04735"; transcript_id "KOF00461"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 67330 67950 . - . gene_id "W7K_04735"; transcript_id "KOF00461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00461-1"; +contig38 ena CDS 67333 67950 . - 0 gene_id "W7K_04735"; transcript_id "KOF00461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00461"; +contig38 ena start_codon 67948 67950 . - 0 gene_id "W7K_04735"; transcript_id "KOF00461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 67330 67332 . - 0 gene_id "W7K_04735"; transcript_id "KOF00461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 68152 69078 . - . gene_id "W7K_04740"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 68152 69078 . - . gene_id "W7K_04740"; transcript_id "KOF00462"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 68152 69078 . - . gene_id "W7K_04740"; transcript_id "KOF00462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00462-1"; +contig38 ena CDS 68155 69078 . - 0 gene_id "W7K_04740"; transcript_id "KOF00462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00462"; +contig38 ena start_codon 69076 69078 . - 0 gene_id "W7K_04740"; transcript_id "KOF00462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 68152 68154 . - 0 gene_id "W7K_04740"; transcript_id "KOF00462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 69125 70093 . - . gene_id "W7K_04745"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 69125 70093 . - . gene_id "W7K_04745"; transcript_id "KOF00463"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 69125 70093 . - . gene_id "W7K_04745"; transcript_id "KOF00463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00463-1"; +contig38 ena CDS 69128 70093 . - 0 gene_id "W7K_04745"; transcript_id "KOF00463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00463"; +contig38 ena start_codon 70091 70093 . - 0 gene_id "W7K_04745"; transcript_id "KOF00463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 69125 69127 . - 0 gene_id "W7K_04745"; transcript_id "KOF00463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 70174 70794 . + . gene_id "W7K_04750"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 70174 70794 . + . gene_id "W7K_04750"; transcript_id "KOF00464"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 70174 70794 . + . gene_id "W7K_04750"; transcript_id "KOF00464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00464-1"; +contig38 ena CDS 70174 70791 . + 0 gene_id "W7K_04750"; transcript_id "KOF00464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00464"; +contig38 ena start_codon 70174 70176 . + 0 gene_id "W7K_04750"; transcript_id "KOF00464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 70792 70794 . + 0 gene_id "W7K_04750"; transcript_id "KOF00464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 70983 72401 . + . gene_id "W7K_04755"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 70983 72401 . + . gene_id "W7K_04755"; transcript_id "KOF00465"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 70983 72401 . + . gene_id "W7K_04755"; transcript_id "KOF00465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00465-1"; +contig38 ena CDS 70983 72398 . + 0 gene_id "W7K_04755"; transcript_id "KOF00465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00465"; +contig38 ena start_codon 70983 70985 . + 0 gene_id "W7K_04755"; transcript_id "KOF00465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 72399 72401 . + 0 gene_id "W7K_04755"; transcript_id "KOF00465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 72481 73593 . - . gene_id "W7K_04760"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 72481 73593 . - . gene_id "W7K_04760"; transcript_id "KOF00466"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 72481 73593 . - . gene_id "W7K_04760"; transcript_id "KOF00466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00466-1"; +contig38 ena CDS 72484 73593 . - 0 gene_id "W7K_04760"; transcript_id "KOF00466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00466"; +contig38 ena start_codon 73591 73593 . - 0 gene_id "W7K_04760"; transcript_id "KOF00466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 72481 72483 . - 0 gene_id "W7K_04760"; transcript_id "KOF00466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 73590 74513 . - . gene_id "W7K_04765"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 73590 74513 . - . gene_id "W7K_04765"; transcript_id "KOF00467"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 73590 74513 . - . gene_id "W7K_04765"; transcript_id "KOF00467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00467-1"; +contig38 ena CDS 73593 74513 . - 0 gene_id "W7K_04765"; transcript_id "KOF00467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00467"; +contig38 ena start_codon 74511 74513 . - 0 gene_id "W7K_04765"; transcript_id "KOF00467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 73590 73592 . - 0 gene_id "W7K_04765"; transcript_id "KOF00467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 74534 75490 . - . gene_id "W7K_04770"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 74534 75490 . - . gene_id "W7K_04770"; transcript_id "KOF00468"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 74534 75490 . - . gene_id "W7K_04770"; transcript_id "KOF00468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00468-1"; +contig38 ena CDS 74537 75490 . - 0 gene_id "W7K_04770"; transcript_id "KOF00468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00468"; +contig38 ena start_codon 75488 75490 . - 0 gene_id "W7K_04770"; transcript_id "KOF00468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 74534 74536 . - 0 gene_id "W7K_04770"; transcript_id "KOF00468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 75973 76959 . + . gene_id "W7K_04775"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 75973 76959 . + . gene_id "W7K_04775"; transcript_id "KOF00469"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 75973 76959 . + . gene_id "W7K_04775"; transcript_id "KOF00469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00469-1"; +contig38 ena CDS 75973 76956 . + 0 gene_id "W7K_04775"; transcript_id "KOF00469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00469"; +contig38 ena start_codon 75973 75975 . + 0 gene_id "W7K_04775"; transcript_id "KOF00469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 76957 76959 . + 0 gene_id "W7K_04775"; transcript_id "KOF00469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 76956 77441 . + . gene_id "W7K_04780"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 76956 77441 . + . gene_id "W7K_04780"; transcript_id "KOF00470"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 76956 77441 . + . gene_id "W7K_04780"; transcript_id "KOF00470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00470-1"; +contig38 ena CDS 76956 77438 . + 0 gene_id "W7K_04780"; transcript_id "KOF00470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00470"; +contig38 ena start_codon 76956 76958 . + 0 gene_id "W7K_04780"; transcript_id "KOF00470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 77439 77441 . + 0 gene_id "W7K_04780"; transcript_id "KOF00470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 77483 78091 . + . gene_id "W7K_04785"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 77483 78091 . + . gene_id "W7K_04785"; transcript_id "KOF00471"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 77483 78091 . + . gene_id "W7K_04785"; transcript_id "KOF00471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00471-1"; +contig38 ena CDS 77483 78088 . + 0 gene_id "W7K_04785"; transcript_id "KOF00471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00471"; +contig38 ena start_codon 77483 77485 . + 0 gene_id "W7K_04785"; transcript_id "KOF00471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 78089 78091 . + 0 gene_id "W7K_04785"; transcript_id "KOF00471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 78091 78678 . + . gene_id "W7K_04790"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 78091 78678 . + . gene_id "W7K_04790"; transcript_id "KOF00472"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 78091 78678 . + . gene_id "W7K_04790"; transcript_id "KOF00472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00472-1"; +contig38 ena CDS 78091 78675 . + 0 gene_id "W7K_04790"; transcript_id "KOF00472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00472"; +contig38 ena start_codon 78091 78093 . + 0 gene_id "W7K_04790"; transcript_id "KOF00472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 78676 78678 . + 0 gene_id "W7K_04790"; transcript_id "KOF00472"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 78743 79624 . + . gene_id "W7K_04795"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 78743 79624 . + . gene_id "W7K_04795"; transcript_id "KOF00473"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 78743 79624 . + . gene_id "W7K_04795"; transcript_id "KOF00473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00473-1"; +contig38 ena CDS 78743 79621 . + 0 gene_id "W7K_04795"; transcript_id "KOF00473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00473"; +contig38 ena start_codon 78743 78745 . + 0 gene_id "W7K_04795"; transcript_id "KOF00473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 79622 79624 . + 0 gene_id "W7K_04795"; transcript_id "KOF00473"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 79621 80874 . + . gene_id "W7K_04800"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 79621 80874 . + . gene_id "W7K_04800"; transcript_id "KOF00474"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 79621 80874 . + . gene_id "W7K_04800"; transcript_id "KOF00474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00474-1"; +contig38 ena CDS 79621 80871 . + 0 gene_id "W7K_04800"; transcript_id "KOF00474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00474"; +contig38 ena start_codon 79621 79623 . + 0 gene_id "W7K_04800"; transcript_id "KOF00474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 80872 80874 . + 0 gene_id "W7K_04800"; transcript_id "KOF00474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena gene 80881 81903 . + . gene_id "W7K_04805"; gene_source "ena"; gene_biotype "protein_coding"; +contig38 ena transcript 80881 81903 . + . gene_id "W7K_04805"; transcript_id "KOF00475"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena exon 80881 81903 . + . gene_id "W7K_04805"; transcript_id "KOF00475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00475-1"; +contig38 ena CDS 80881 81900 . + 0 gene_id "W7K_04805"; transcript_id "KOF00475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00475"; +contig38 ena start_codon 80881 80883 . + 0 gene_id "W7K_04805"; transcript_id "KOF00475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig38 ena stop_codon 81901 81903 . + 0 gene_id "W7K_04805"; transcript_id "KOF00475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 366 1697 . - . gene_id "W7K_10185"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 366 1697 . - . gene_id "W7K_10185"; transcript_id "KOE99276"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 366 1697 . - . gene_id "W7K_10185"; transcript_id "KOE99276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99276-1"; +contig27 ena CDS 369 1697 . - 0 gene_id "W7K_10185"; transcript_id "KOE99276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99276"; +contig27 ena start_codon 1695 1697 . - 0 gene_id "W7K_10185"; transcript_id "KOE99276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 366 368 . - 0 gene_id "W7K_10185"; transcript_id "KOE99276"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 1773 2147 . - . gene_id "W7K_10190"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 1773 2147 . - . gene_id "W7K_10190"; transcript_id "KOE99277"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 1773 2147 . - . gene_id "W7K_10190"; transcript_id "KOE99277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99277-1"; +contig27 ena CDS 1776 2147 . - 0 gene_id "W7K_10190"; transcript_id "KOE99277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99277"; +contig27 ena start_codon 2145 2147 . - 0 gene_id "W7K_10190"; transcript_id "KOE99277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 1773 1775 . - 0 gene_id "W7K_10190"; transcript_id "KOE99277"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 2144 4423 . - . gene_id "W7K_10195"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 2144 4423 . - . gene_id "W7K_10195"; transcript_id "KOE99278"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 2144 4423 . - . gene_id "W7K_10195"; transcript_id "KOE99278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99278-1"; +contig27 ena CDS 2147 4423 . - 0 gene_id "W7K_10195"; transcript_id "KOE99278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99278"; +contig27 ena start_codon 4421 4423 . - 0 gene_id "W7K_10195"; transcript_id "KOE99278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 2144 2146 . - 0 gene_id "W7K_10195"; transcript_id "KOE99278"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 4547 5773 . - . gene_id "W7K_10200"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 4547 5773 . - . gene_id "W7K_10200"; transcript_id "KOE99279"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 4547 5773 . - . gene_id "W7K_10200"; transcript_id "KOE99279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99279-1"; +contig27 ena CDS 4550 5773 . - 0 gene_id "W7K_10200"; transcript_id "KOE99279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99279"; +contig27 ena start_codon 5771 5773 . - 0 gene_id "W7K_10200"; transcript_id "KOE99279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 4547 4549 . - 0 gene_id "W7K_10200"; transcript_id "KOE99279"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 5830 6426 . - . gene_id "W7K_10205"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 5830 6426 . - . gene_id "W7K_10205"; transcript_id "KOE99280"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 5830 6426 . - . gene_id "W7K_10205"; transcript_id "KOE99280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99280-1"; +contig27 ena CDS 5833 6426 . - 0 gene_id "W7K_10205"; transcript_id "KOE99280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99280"; +contig27 ena start_codon 6424 6426 . - 0 gene_id "W7K_10205"; transcript_id "KOE99280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 5830 5832 . - 0 gene_id "W7K_10205"; transcript_id "KOE99280"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 6423 6812 . - . gene_id "W7K_10210"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 6423 6812 . - . gene_id "W7K_10210"; transcript_id "KOE99281"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 6423 6812 . - . gene_id "W7K_10210"; transcript_id "KOE99281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99281-1"; +contig27 ena CDS 6426 6812 . - 0 gene_id "W7K_10210"; transcript_id "KOE99281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99281"; +contig27 ena start_codon 6810 6812 . - 0 gene_id "W7K_10210"; transcript_id "KOE99281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 6423 6425 . - 0 gene_id "W7K_10210"; transcript_id "KOE99281"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 6809 7534 . - . gene_id "W7K_10215"; gene_name "rph"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 6809 7534 . - . gene_id "W7K_10215"; transcript_id "KOE99282"; gene_name "rph"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rph-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 6809 7534 . - . gene_id "W7K_10215"; transcript_id "KOE99282"; exon_number "1"; gene_name "rph"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rph-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99282-1"; +contig27 ena CDS 6812 7534 . - 0 gene_id "W7K_10215"; transcript_id "KOE99282"; exon_number "1"; gene_name "rph"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rph-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99282"; +contig27 ena start_codon 7532 7534 . - 0 gene_id "W7K_10215"; transcript_id "KOE99282"; exon_number "1"; gene_name "rph"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rph-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 6809 6811 . - 0 gene_id "W7K_10215"; transcript_id "KOE99282"; exon_number "1"; gene_name "rph"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rph-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 7659 8519 . + . gene_id "W7K_10220"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 7659 8519 . + . gene_id "W7K_10220"; transcript_id "KOE99283"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 7659 8519 . + . gene_id "W7K_10220"; transcript_id "KOE99283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99283-1"; +contig27 ena CDS 7659 8516 . + 0 gene_id "W7K_10220"; transcript_id "KOE99283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99283"; +contig27 ena start_codon 7659 7661 . + 0 gene_id "W7K_10220"; transcript_id "KOE99283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 8517 8519 . + 0 gene_id "W7K_10220"; transcript_id "KOE99283"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 8577 9656 . - . gene_id "W7K_10225"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 8577 9656 . - . gene_id "W7K_10225"; transcript_id "KOE99284"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 8577 9656 . - . gene_id "W7K_10225"; transcript_id "KOE99284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99284-1"; +contig27 ena CDS 8580 9656 . - 0 gene_id "W7K_10225"; transcript_id "KOE99284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99284"; +contig27 ena start_codon 9654 9656 . - 0 gene_id "W7K_10225"; transcript_id "KOE99284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 8577 8579 . - 0 gene_id "W7K_10225"; transcript_id "KOE99284"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 9683 9777 . - . gene_id "W7K_10230"; gene_source "ena"; gene_biotype "tRNA"; +contig27 ena transcript 9683 9777 . - . gene_id "W7K_10230"; transcript_id "EBT00051077636"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_10230"; transcript_source "ena"; transcript_biotype "tRNA"; +contig27 ena exon 9683 9777 . - . gene_id "W7K_10230"; transcript_id "EBT00051077636"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_10230"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_10230-1"; +contig27 ena gene 9803 11734 . - . gene_id "W7K_10235"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 9803 11734 . - . gene_id "W7K_10235"; transcript_id "KOE99332"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 9803 11734 . - . gene_id "W7K_10235"; transcript_id "KOE99332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99332-1"; +contig27 ena CDS 9806 11734 . - 0 gene_id "W7K_10235"; transcript_id "KOE99332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99332"; +contig27 ena start_codon 11732 11734 . - 0 gene_id "W7K_10235"; transcript_id "KOE99332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 9803 9805 . - 0 gene_id "W7K_10235"; transcript_id "KOE99332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 11731 13155 . - . gene_id "W7K_10240"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 11731 13155 . - . gene_id "W7K_10240"; transcript_id "KOE99285"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 11731 13155 . - . gene_id "W7K_10240"; transcript_id "KOE99285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99285-1"; +contig27 ena CDS 11734 13155 . - 0 gene_id "W7K_10240"; transcript_id "KOE99285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99285"; +contig27 ena start_codon 13153 13155 . - 0 gene_id "W7K_10240"; transcript_id "KOE99285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 11731 11733 . - 0 gene_id "W7K_10240"; transcript_id "KOE99285"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 13160 14143 . - . gene_id "W7K_10245"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 13160 14143 . - . gene_id "W7K_10245"; transcript_id "KOE99286"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 13160 14143 . - . gene_id "W7K_10245"; transcript_id "KOE99286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99286-1"; +contig27 ena CDS 13163 14143 . - 0 gene_id "W7K_10245"; transcript_id "KOE99286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99286"; +contig27 ena start_codon 14141 14143 . - 0 gene_id "W7K_10245"; transcript_id "KOE99286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 13160 13162 . - 0 gene_id "W7K_10245"; transcript_id "KOE99286"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 14534 15181 . - . gene_id "W7K_10250"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 14534 15181 . - . gene_id "W7K_10250"; transcript_id "KOE99287"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 14534 15181 . - . gene_id "W7K_10250"; transcript_id "KOE99287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99287-1"; +contig27 ena CDS 14537 15181 . - 0 gene_id "W7K_10250"; transcript_id "KOE99287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99287"; +contig27 ena start_codon 15179 15181 . - 0 gene_id "W7K_10250"; transcript_id "KOE99287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 14534 14536 . - 0 gene_id "W7K_10250"; transcript_id "KOE99287"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 15178 16095 . - . gene_id "W7K_10255"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 15178 16095 . - . gene_id "W7K_10255"; transcript_id "KOE99288"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 15178 16095 . - . gene_id "W7K_10255"; transcript_id "KOE99288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99288-1"; +contig27 ena CDS 15181 16095 . - 0 gene_id "W7K_10255"; transcript_id "KOE99288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99288"; +contig27 ena start_codon 16093 16095 . - 0 gene_id "W7K_10255"; transcript_id "KOE99288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 15178 15180 . - 0 gene_id "W7K_10255"; transcript_id "KOE99288"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 16106 18535 . - . gene_id "W7K_10260"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 16106 18535 . - . gene_id "W7K_10260"; transcript_id "KOE99289"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 16106 18535 . - . gene_id "W7K_10260"; transcript_id "KOE99289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99289-1"; +contig27 ena CDS 16109 18535 . - 0 gene_id "W7K_10260"; transcript_id "KOE99289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99289"; +contig27 ena start_codon 18533 18535 . - 0 gene_id "W7K_10260"; transcript_id "KOE99289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 16106 16108 . - 0 gene_id "W7K_10260"; transcript_id "KOE99289"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 18584 19174 . - . gene_id "W7K_10265"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 18584 19174 . - . gene_id "W7K_10265"; transcript_id "KOE99290"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 18584 19174 . - . gene_id "W7K_10265"; transcript_id "KOE99290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99290-1"; +contig27 ena CDS 18587 19174 . - 0 gene_id "W7K_10265"; transcript_id "KOE99290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99290"; +contig27 ena start_codon 19172 19174 . - 0 gene_id "W7K_10265"; transcript_id "KOE99290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 18584 18586 . - 0 gene_id "W7K_10265"; transcript_id "KOE99290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 19466 20131 . + . gene_id "W7K_10270"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 19466 20131 . + . gene_id "W7K_10270"; transcript_id "KOE99291"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 19466 20131 . + . gene_id "W7K_10270"; transcript_id "KOE99291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99291-1"; +contig27 ena CDS 19466 20128 . + 0 gene_id "W7K_10270"; transcript_id "KOE99291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99291"; +contig27 ena start_codon 19466 19468 . + 0 gene_id "W7K_10270"; transcript_id "KOE99291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 20129 20131 . + 0 gene_id "W7K_10270"; transcript_id "KOE99291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 20242 20541 . + . gene_id "W7K_10275"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 20242 20541 . + . gene_id "W7K_10275"; transcript_id "KOE99292"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 20242 20541 . + . gene_id "W7K_10275"; transcript_id "KOE99292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99292-1"; +contig27 ena CDS 20242 20538 . + 0 gene_id "W7K_10275"; transcript_id "KOE99292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99292"; +contig27 ena start_codon 20242 20244 . + 0 gene_id "W7K_10275"; transcript_id "KOE99292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 20539 20541 . + 0 gene_id "W7K_10275"; transcript_id "KOE99292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 20647 22809 . + . gene_id "W7K_10280"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 20647 22809 . + . gene_id "W7K_10280"; transcript_id "KOE99293"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 20647 22809 . + . gene_id "W7K_10280"; transcript_id "KOE99293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99293-1"; +contig27 ena CDS 20647 22806 . + 0 gene_id "W7K_10280"; transcript_id "KOE99293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99293"; +contig27 ena start_codon 20647 20649 . + 0 gene_id "W7K_10280"; transcript_id "KOE99293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 22807 22809 . + 0 gene_id "W7K_10280"; transcript_id "KOE99293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 23007 23393 . + . gene_id "W7K_10285"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 23007 23393 . + . gene_id "W7K_10285"; transcript_id "KOE99294"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 23007 23393 . + . gene_id "W7K_10285"; transcript_id "KOE99294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99294-1"; +contig27 ena CDS 23007 23390 . + 0 gene_id "W7K_10285"; transcript_id "KOE99294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99294"; +contig27 ena start_codon 23007 23009 . + 0 gene_id "W7K_10285"; transcript_id "KOE99294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 23391 23393 . + 0 gene_id "W7K_10285"; transcript_id "KOE99294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 23401 25512 . + . gene_id "W7K_10290"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 23401 25512 . + . gene_id "W7K_10290"; transcript_id "KOE99295"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 23401 25512 . + . gene_id "W7K_10290"; transcript_id "KOE99295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99295-1"; +contig27 ena CDS 23401 25509 . + 0 gene_id "W7K_10290"; transcript_id "KOE99295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99295"; +contig27 ena start_codon 23401 23403 . + 0 gene_id "W7K_10290"; transcript_id "KOE99295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 25510 25512 . + 0 gene_id "W7K_10290"; transcript_id "KOE99295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 25992 26930 . + . gene_id "W7K_10295"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 25992 26930 . + . gene_id "W7K_10295"; transcript_id "KOE99296"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 25992 26930 . + . gene_id "W7K_10295"; transcript_id "KOE99296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99296-1"; +contig27 ena CDS 25992 26927 . + 0 gene_id "W7K_10295"; transcript_id "KOE99296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99296"; +contig27 ena start_codon 25992 25994 . + 0 gene_id "W7K_10295"; transcript_id "KOE99296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 26928 26930 . + 0 gene_id "W7K_10295"; transcript_id "KOE99296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 27019 27261 . + . gene_id "W7K_10300"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 27019 27261 . + . gene_id "W7K_10300"; transcript_id "KOE99297"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 27019 27261 . + . gene_id "W7K_10300"; transcript_id "KOE99297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99297-1"; +contig27 ena CDS 27019 27258 . + 0 gene_id "W7K_10300"; transcript_id "KOE99297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99297"; +contig27 ena start_codon 27019 27021 . + 0 gene_id "W7K_10300"; transcript_id "KOE99297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 27259 27261 . + 0 gene_id "W7K_10300"; transcript_id "KOE99297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 27558 28835 . + . gene_id "W7K_10305"; gene_name "gltA"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 27558 28835 . + . gene_id "W7K_10305"; transcript_id "KOE99298"; gene_name "gltA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 27558 28835 . + . gene_id "W7K_10305"; transcript_id "KOE99298"; exon_number "1"; gene_name "gltA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99298-1"; +contig27 ena CDS 27558 28832 . + 0 gene_id "W7K_10305"; transcript_id "KOE99298"; exon_number "1"; gene_name "gltA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99298"; +contig27 ena start_codon 27558 27560 . + 0 gene_id "W7K_10305"; transcript_id "KOE99298"; exon_number "1"; gene_name "gltA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 28833 28835 . + 0 gene_id "W7K_10305"; transcript_id "KOE99298"; exon_number "1"; gene_name "gltA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "gltA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 29127 30197 . + . gene_id "W7K_10310"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 29127 30197 . + . gene_id "W7K_10310"; transcript_id "KOE99299"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 29127 30197 . + . gene_id "W7K_10310"; transcript_id "KOE99299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99299-1"; +contig27 ena CDS 29127 30194 . + 0 gene_id "W7K_10310"; transcript_id "KOE99299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99299"; +contig27 ena start_codon 29127 29129 . + 0 gene_id "W7K_10310"; transcript_id "KOE99299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 30195 30197 . + 0 gene_id "W7K_10310"; transcript_id "KOE99299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 30636 31001 . + . gene_id "W7K_10315"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 30636 31001 . + . gene_id "W7K_10315"; transcript_id "KOE99333"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 30636 31001 . + . gene_id "W7K_10315"; transcript_id "KOE99333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99333-1"; +contig27 ena CDS 30636 30998 . + 0 gene_id "W7K_10315"; transcript_id "KOE99333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99333"; +contig27 ena start_codon 30636 30638 . + 0 gene_id "W7K_10315"; transcript_id "KOE99333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 30999 31001 . + 0 gene_id "W7K_10315"; transcript_id "KOE99333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 31342 31848 . + . gene_id "W7K_10320"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 31342 31848 . + . gene_id "W7K_10320"; transcript_id "KOE99300"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 31342 31848 . + . gene_id "W7K_10320"; transcript_id "KOE99300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99300-1"; +contig27 ena CDS 31342 31845 . + 0 gene_id "W7K_10320"; transcript_id "KOE99300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99300"; +contig27 ena start_codon 31342 31344 . + 0 gene_id "W7K_10320"; transcript_id "KOE99300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 31846 31848 . + 0 gene_id "W7K_10320"; transcript_id "KOE99300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 31900 34623 . + . gene_id "W7K_10325"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 31900 34623 . + . gene_id "W7K_10325"; transcript_id "KOE99301"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 31900 34623 . + . gene_id "W7K_10325"; transcript_id "KOE99301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99301-1"; +contig27 ena CDS 31900 34620 . + 0 gene_id "W7K_10325"; transcript_id "KOE99301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99301"; +contig27 ena start_codon 31900 31902 . + 0 gene_id "W7K_10325"; transcript_id "KOE99301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 34621 34623 . + 0 gene_id "W7K_10325"; transcript_id "KOE99301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 35211 35753 . + . gene_id "W7K_10330"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 35211 35753 . + . gene_id "W7K_10330"; transcript_id "KOE99302"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 35211 35753 . + . gene_id "W7K_10330"; transcript_id "KOE99302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99302-1"; +contig27 ena CDS 35211 35750 . + 0 gene_id "W7K_10330"; transcript_id "KOE99302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99302"; +contig27 ena start_codon 35211 35213 . + 0 gene_id "W7K_10330"; transcript_id "KOE99302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 35751 35753 . + 0 gene_id "W7K_10330"; transcript_id "KOE99302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 35771 36469 . + . gene_id "W7K_10335"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 35771 36469 . + . gene_id "W7K_10335"; transcript_id "KOE99303"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 35771 36469 . + . gene_id "W7K_10335"; transcript_id "KOE99303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99303-1"; +contig27 ena CDS 35771 36466 . + 0 gene_id "W7K_10335"; transcript_id "KOE99303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99303"; +contig27 ena start_codon 35771 35773 . + 0 gene_id "W7K_10335"; transcript_id "KOE99303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 36467 36469 . + 0 gene_id "W7K_10335"; transcript_id "KOE99303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 40725 41741 . + . gene_id "W7K_10345"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 40725 41741 . + . gene_id "W7K_10345"; transcript_id "KOE99334"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 40725 41741 . + . gene_id "W7K_10345"; transcript_id "KOE99334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99334-1"; +contig27 ena CDS 40725 41738 . + 0 gene_id "W7K_10345"; transcript_id "KOE99334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99334"; +contig27 ena start_codon 40725 40727 . + 0 gene_id "W7K_10345"; transcript_id "KOE99334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 41739 41741 . + 0 gene_id "W7K_10345"; transcript_id "KOE99334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 41811 42554 . + . gene_id "W7K_10350"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 41811 42554 . + . gene_id "W7K_10350"; transcript_id "KOE99304"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 41811 42554 . + . gene_id "W7K_10350"; transcript_id "KOE99304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99304-1"; +contig27 ena CDS 41811 42551 . + 0 gene_id "W7K_10350"; transcript_id "KOE99304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99304"; +contig27 ena start_codon 41811 41813 . + 0 gene_id "W7K_10350"; transcript_id "KOE99304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 42552 42554 . + 0 gene_id "W7K_10350"; transcript_id "KOE99304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 42731 43375 . - . gene_id "W7K_10355"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 42731 43375 . - . gene_id "W7K_10355"; transcript_id "KOE99305"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 42731 43375 . - . gene_id "W7K_10355"; transcript_id "KOE99305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99305-1"; +contig27 ena CDS 42734 43375 . - 0 gene_id "W7K_10355"; transcript_id "KOE99305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99305"; +contig27 ena start_codon 43373 43375 . - 0 gene_id "W7K_10355"; transcript_id "KOE99305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 42731 42733 . - 0 gene_id "W7K_10355"; transcript_id "KOE99305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 43736 46159 . - . gene_id "W7K_10360"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 43736 46159 . - . gene_id "W7K_10360"; transcript_id "KOE99306"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 43736 46159 . - . gene_id "W7K_10360"; transcript_id "KOE99306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99306-1"; +contig27 ena CDS 43739 46159 . - 0 gene_id "W7K_10360"; transcript_id "KOE99306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99306"; +contig27 ena start_codon 46157 46159 . - 0 gene_id "W7K_10360"; transcript_id "KOE99306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 43736 43738 . - 0 gene_id "W7K_10360"; transcript_id "KOE99306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 46379 47437 . + . gene_id "W7K_10365"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 46379 47437 . + . gene_id "W7K_10365"; transcript_id "KOE99307"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 46379 47437 . + . gene_id "W7K_10365"; transcript_id "KOE99307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99307-1"; +contig27 ena CDS 46379 47434 . + 0 gene_id "W7K_10365"; transcript_id "KOE99307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99307"; +contig27 ena start_codon 46379 46381 . + 0 gene_id "W7K_10365"; transcript_id "KOE99307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 47435 47437 . + 0 gene_id "W7K_10365"; transcript_id "KOE99307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 47437 48327 . + . gene_id "W7K_10370"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 47437 48327 . + . gene_id "W7K_10370"; transcript_id "KOE99308"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 47437 48327 . + . gene_id "W7K_10370"; transcript_id "KOE99308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99308-1"; +contig27 ena CDS 47437 48324 . + 0 gene_id "W7K_10370"; transcript_id "KOE99308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99308"; +contig27 ena start_codon 47437 47439 . + 0 gene_id "W7K_10370"; transcript_id "KOE99308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 48325 48327 . + 0 gene_id "W7K_10370"; transcript_id "KOE99308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 48324 48980 . + . gene_id "W7K_10375"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 48324 48980 . + . gene_id "W7K_10375"; transcript_id "KOE99309"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 48324 48980 . + . gene_id "W7K_10375"; transcript_id "KOE99309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99309-1"; +contig27 ena CDS 48324 48977 . + 0 gene_id "W7K_10375"; transcript_id "KOE99309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99309"; +contig27 ena start_codon 48324 48326 . + 0 gene_id "W7K_10375"; transcript_id "KOE99309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 48978 48980 . + 0 gene_id "W7K_10375"; transcript_id "KOE99309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 49007 49513 . + . gene_id "W7K_10380"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 49007 49513 . + . gene_id "W7K_10380"; transcript_id "KOE99310"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 49007 49513 . + . gene_id "W7K_10380"; transcript_id "KOE99310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99310-1"; +contig27 ena CDS 49007 49510 . + 0 gene_id "W7K_10380"; transcript_id "KOE99310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99310"; +contig27 ena start_codon 49007 49009 . + 0 gene_id "W7K_10380"; transcript_id "KOE99310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 49511 49513 . + 0 gene_id "W7K_10380"; transcript_id "KOE99310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 49535 51508 . + . gene_id "W7K_10385"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 49535 51508 . + . gene_id "W7K_10385"; transcript_id "KOE99311"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 49535 51508 . + . gene_id "W7K_10385"; transcript_id "KOE99311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99311-1"; +contig27 ena CDS 49535 51505 . + 0 gene_id "W7K_10385"; transcript_id "KOE99311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99311"; +contig27 ena start_codon 49535 49537 . + 0 gene_id "W7K_10385"; transcript_id "KOE99311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 51506 51508 . + 0 gene_id "W7K_10385"; transcript_id "KOE99311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 51735 52760 . + . gene_id "W7K_10390"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 51735 52760 . + . gene_id "W7K_10390"; transcript_id "KOE99312"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 51735 52760 . + . gene_id "W7K_10390"; transcript_id "KOE99312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99312-1"; +contig27 ena CDS 51735 52757 . + 0 gene_id "W7K_10390"; transcript_id "KOE99312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99312"; +contig27 ena start_codon 51735 51737 . + 0 gene_id "W7K_10390"; transcript_id "KOE99312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 52758 52760 . + 0 gene_id "W7K_10390"; transcript_id "KOE99312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 52769 53698 . + . gene_id "W7K_10395"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 52769 53698 . + . gene_id "W7K_10395"; transcript_id "KOE99313"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 52769 53698 . + . gene_id "W7K_10395"; transcript_id "KOE99313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99313-1"; +contig27 ena CDS 52769 53695 . + 0 gene_id "W7K_10395"; transcript_id "KOE99313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99313"; +contig27 ena start_codon 52769 52771 . + 0 gene_id "W7K_10395"; transcript_id "KOE99313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 53696 53698 . + 0 gene_id "W7K_10395"; transcript_id "KOE99313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 53695 54144 . + . gene_id "W7K_10400"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 53695 54144 . + . gene_id "W7K_10400"; transcript_id "KOE99314"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 53695 54144 . + . gene_id "W7K_10400"; transcript_id "KOE99314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99314-1"; +contig27 ena CDS 53695 54141 . + 0 gene_id "W7K_10400"; transcript_id "KOE99314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99314"; +contig27 ena start_codon 53695 53697 . + 0 gene_id "W7K_10400"; transcript_id "KOE99314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 54142 54144 . + 0 gene_id "W7K_10400"; transcript_id "KOE99314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 54141 55145 . + . gene_id "W7K_10405"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 54141 55145 . + . gene_id "W7K_10405"; transcript_id "KOE99315"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 54141 55145 . + . gene_id "W7K_10405"; transcript_id "KOE99315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99315-1"; +contig27 ena CDS 54141 55142 . + 0 gene_id "W7K_10405"; transcript_id "KOE99315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99315"; +contig27 ena start_codon 54141 54143 . + 0 gene_id "W7K_10405"; transcript_id "KOE99315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 55143 55145 . + 0 gene_id "W7K_10405"; transcript_id "KOE99315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 55142 56980 . + . gene_id "W7K_10410"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 55142 56980 . + . gene_id "W7K_10410"; transcript_id "KOE99335"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 55142 56980 . + . gene_id "W7K_10410"; transcript_id "KOE99335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99335-1"; +contig27 ena CDS 55142 56977 . + 0 gene_id "W7K_10410"; transcript_id "KOE99335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99335"; +contig27 ena start_codon 55142 55144 . + 0 gene_id "W7K_10410"; transcript_id "KOE99335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 56978 56980 . + 0 gene_id "W7K_10410"; transcript_id "KOE99335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 56977 58692 . + . gene_id "W7K_10415"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 56977 58692 . + . gene_id "W7K_10415"; transcript_id "KOE99316"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 56977 58692 . + . gene_id "W7K_10415"; transcript_id "KOE99316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99316-1"; +contig27 ena CDS 56977 58689 . + 0 gene_id "W7K_10415"; transcript_id "KOE99316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99316"; +contig27 ena start_codon 56977 56979 . + 0 gene_id "W7K_10415"; transcript_id "KOE99316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 58690 58692 . + 0 gene_id "W7K_10415"; transcript_id "KOE99316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 58750 60069 . + . gene_id "W7K_10420"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 58750 60069 . + . gene_id "W7K_10420"; transcript_id "KOE99317"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 58750 60069 . + . gene_id "W7K_10420"; transcript_id "KOE99317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99317-1"; +contig27 ena CDS 58750 60066 . + 0 gene_id "W7K_10420"; transcript_id "KOE99317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99317"; +contig27 ena start_codon 58750 58752 . + 0 gene_id "W7K_10420"; transcript_id "KOE99317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 60067 60069 . + 0 gene_id "W7K_10420"; transcript_id "KOE99317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 60285 62282 . + . gene_id "W7K_10425"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 60285 62282 . + . gene_id "W7K_10425"; transcript_id "KOE99318"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 60285 62282 . + . gene_id "W7K_10425"; transcript_id "KOE99318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99318-1"; +contig27 ena CDS 60285 62279 . + 0 gene_id "W7K_10425"; transcript_id "KOE99318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99318"; +contig27 ena start_codon 60285 60287 . + 0 gene_id "W7K_10425"; transcript_id "KOE99318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 62280 62282 . + 0 gene_id "W7K_10425"; transcript_id "KOE99318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 62554 62832 . + . gene_id "W7K_10430"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 62554 62832 . + . gene_id "W7K_10430"; transcript_id "KOE99319"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 62554 62832 . + . gene_id "W7K_10430"; transcript_id "KOE99319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99319-1"; +contig27 ena CDS 62554 62829 . + 0 gene_id "W7K_10430"; transcript_id "KOE99319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99319"; +contig27 ena start_codon 62554 62556 . + 0 gene_id "W7K_10430"; transcript_id "KOE99319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 62830 62832 . + 0 gene_id "W7K_10430"; transcript_id "KOE99319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 62844 63149 . + . gene_id "W7K_10435"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 62844 63149 . + . gene_id "W7K_10435"; transcript_id "KOE99320"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 62844 63149 . + . gene_id "W7K_10435"; transcript_id "KOE99320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99320-1"; +contig27 ena CDS 62844 63146 . + 0 gene_id "W7K_10435"; transcript_id "KOE99320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99320"; +contig27 ena start_codon 62844 62846 . + 0 gene_id "W7K_10435"; transcript_id "KOE99320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 63147 63149 . + 0 gene_id "W7K_10435"; transcript_id "KOE99320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 63236 65188 . - . gene_id "W7K_10440"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 63236 65188 . - . gene_id "W7K_10440"; transcript_id "KOE99321"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 63236 65188 . - . gene_id "W7K_10440"; transcript_id "KOE99321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99321-1"; +contig27 ena CDS 63239 65188 . - 0 gene_id "W7K_10440"; transcript_id "KOE99321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99321"; +contig27 ena start_codon 65186 65188 . - 0 gene_id "W7K_10440"; transcript_id "KOE99321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 63236 63238 . - 0 gene_id "W7K_10440"; transcript_id "KOE99321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 65223 65780 . - . gene_id "W7K_10445"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 65223 65780 . - . gene_id "W7K_10445"; transcript_id "KOE99322"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 65223 65780 . - . gene_id "W7K_10445"; transcript_id "KOE99322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99322-1"; +contig27 ena CDS 65226 65780 . - 0 gene_id "W7K_10445"; transcript_id "KOE99322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99322"; +contig27 ena start_codon 65778 65780 . - 0 gene_id "W7K_10445"; transcript_id "KOE99322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 65223 65225 . - 0 gene_id "W7K_10445"; transcript_id "KOE99322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 65899 66264 . + . gene_id "W7K_10450"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 65899 66264 . + . gene_id "W7K_10450"; transcript_id "KOE99323"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 65899 66264 . + . gene_id "W7K_10450"; transcript_id "KOE99323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99323-1"; +contig27 ena CDS 65899 66261 . + 0 gene_id "W7K_10450"; transcript_id "KOE99323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99323"; +contig27 ena start_codon 65899 65901 . + 0 gene_id "W7K_10450"; transcript_id "KOE99323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 66262 66264 . + 0 gene_id "W7K_10450"; transcript_id "KOE99323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 66257 67498 . + . gene_id "W7K_10455"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 66257 67498 . + . gene_id "W7K_10455"; transcript_id "KOE99324"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 66257 67498 . + . gene_id "W7K_10455"; transcript_id "KOE99324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99324-1"; +contig27 ena CDS 66257 67495 . + 0 gene_id "W7K_10455"; transcript_id "KOE99324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99324"; +contig27 ena start_codon 66257 66259 . + 0 gene_id "W7K_10455"; transcript_id "KOE99324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 67496 67498 . + 0 gene_id "W7K_10455"; transcript_id "KOE99324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 67495 68058 . + . gene_id "W7K_10460"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 67495 68058 . + . gene_id "W7K_10460"; transcript_id "KOE99325"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 67495 68058 . + . gene_id "W7K_10460"; transcript_id "KOE99325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99325-1"; +contig27 ena CDS 67495 68055 . + 0 gene_id "W7K_10460"; transcript_id "KOE99325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99325"; +contig27 ena start_codon 67495 67497 . + 0 gene_id "W7K_10460"; transcript_id "KOE99325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 68056 68058 . + 0 gene_id "W7K_10460"; transcript_id "KOE99325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 68116 68916 . - . gene_id "W7K_10465"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 68116 68916 . - . gene_id "W7K_10465"; transcript_id "KOE99326"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 68116 68916 . - . gene_id "W7K_10465"; transcript_id "KOE99326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99326-1"; +contig27 ena CDS 68119 68916 . - 0 gene_id "W7K_10465"; transcript_id "KOE99326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99326"; +contig27 ena start_codon 68914 68916 . - 0 gene_id "W7K_10465"; transcript_id "KOE99326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 68116 68118 . - 0 gene_id "W7K_10465"; transcript_id "KOE99326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 68928 69746 . - . gene_id "W7K_10470"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 68928 69746 . - . gene_id "W7K_10470"; transcript_id "KOE99327"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 68928 69746 . - . gene_id "W7K_10470"; transcript_id "KOE99327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99327-1"; +contig27 ena CDS 68931 69746 . - 0 gene_id "W7K_10470"; transcript_id "KOE99327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99327"; +contig27 ena start_codon 69744 69746 . - 0 gene_id "W7K_10470"; transcript_id "KOE99327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 68928 68930 . - 0 gene_id "W7K_10470"; transcript_id "KOE99327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 70222 70851 . - . gene_id "W7K_10475"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 70222 70851 . - . gene_id "W7K_10475"; transcript_id "KOE99328"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 70222 70851 . - . gene_id "W7K_10475"; transcript_id "KOE99328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99328-1"; +contig27 ena CDS 70225 70851 . - 0 gene_id "W7K_10475"; transcript_id "KOE99328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99328"; +contig27 ena start_codon 70849 70851 . - 0 gene_id "W7K_10475"; transcript_id "KOE99328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 70222 70224 . - 0 gene_id "W7K_10475"; transcript_id "KOE99328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 71045 72049 . + . gene_id "W7K_10480"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 71045 72049 . + . gene_id "W7K_10480"; transcript_id "KOE99329"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 71045 72049 . + . gene_id "W7K_10480"; transcript_id "KOE99329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99329-1"; +contig27 ena CDS 71045 72046 . + 0 gene_id "W7K_10480"; transcript_id "KOE99329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99329"; +contig27 ena start_codon 71045 71047 . + 0 gene_id "W7K_10480"; transcript_id "KOE99329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 72047 72049 . + 0 gene_id "W7K_10480"; transcript_id "KOE99329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 72175 74850 . + . gene_id "W7K_10485"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 72175 74850 . + . gene_id "W7K_10485"; transcript_id "KOE99330"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 72175 74850 . + . gene_id "W7K_10485"; transcript_id "KOE99330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99330-1"; +contig27 ena CDS 72175 74847 . + 0 gene_id "W7K_10485"; transcript_id "KOE99330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99330"; +contig27 ena start_codon 72175 72177 . + 0 gene_id "W7K_10485"; transcript_id "KOE99330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 74848 74850 . + 0 gene_id "W7K_10485"; transcript_id "KOE99330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena gene 74847 76223 . + . gene_id "W7K_10490"; gene_source "ena"; gene_biotype "protein_coding"; +contig27 ena transcript 74847 76223 . + . gene_id "W7K_10490"; transcript_id "KOE99331"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena exon 74847 76223 . + . gene_id "W7K_10490"; transcript_id "KOE99331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99331-1"; +contig27 ena CDS 74847 76220 . + 0 gene_id "W7K_10490"; transcript_id "KOE99331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99331"; +contig27 ena start_codon 74847 74849 . + 0 gene_id "W7K_10490"; transcript_id "KOE99331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig27 ena stop_codon 76221 76223 . + 0 gene_id "W7K_10490"; transcript_id "KOE99331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 386 1801 . + . gene_id "W7K_09845"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 386 1801 . + . gene_id "W7K_09845"; transcript_id "KOE99336"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 386 1801 . + . gene_id "W7K_09845"; transcript_id "KOE99336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99336-1"; +contig28 ena CDS 386 1798 . + 0 gene_id "W7K_09845"; transcript_id "KOE99336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99336"; +contig28 ena start_codon 386 388 . + 0 gene_id "W7K_09845"; transcript_id "KOE99336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 1799 1801 . + 0 gene_id "W7K_09845"; transcript_id "KOE99336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 2345 4939 . - . gene_id "W7K_09850"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 2345 4939 . - . gene_id "W7K_09850"; transcript_id "KOE99337"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 2345 4939 . - . gene_id "W7K_09850"; transcript_id "KOE99337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99337-1"; +contig28 ena CDS 2348 4939 . - 0 gene_id "W7K_09850"; transcript_id "KOE99337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99337"; +contig28 ena start_codon 4937 4939 . - 0 gene_id "W7K_09850"; transcript_id "KOE99337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 2345 2347 . - 0 gene_id "W7K_09850"; transcript_id "KOE99337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 5014 7653 . - . gene_id "W7K_09855"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 5014 7653 . - . gene_id "W7K_09855"; transcript_id "KOE99338"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 5014 7653 . - . gene_id "W7K_09855"; transcript_id "KOE99338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99338-1"; +contig28 ena CDS 5017 7653 . - 0 gene_id "W7K_09855"; transcript_id "KOE99338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99338"; +contig28 ena start_codon 7651 7653 . - 0 gene_id "W7K_09855"; transcript_id "KOE99338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 5014 5016 . - 0 gene_id "W7K_09855"; transcript_id "KOE99338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 7845 8207 . + . gene_id "W7K_09860"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 7845 8207 . + . gene_id "W7K_09860"; transcript_id "KOE99339"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 7845 8207 . + . gene_id "W7K_09860"; transcript_id "KOE99339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99339-1"; +contig28 ena CDS 7845 8204 . + 0 gene_id "W7K_09860"; transcript_id "KOE99339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99339"; +contig28 ena start_codon 7845 7847 . + 0 gene_id "W7K_09860"; transcript_id "KOE99339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 8205 8207 . + 0 gene_id "W7K_09860"; transcript_id "KOE99339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 8324 8671 . + . gene_id "W7K_09865"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 8324 8671 . + . gene_id "W7K_09865"; transcript_id "KOE99340"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 8324 8671 . + . gene_id "W7K_09865"; transcript_id "KOE99340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99340-1"; +contig28 ena CDS 8324 8668 . + 0 gene_id "W7K_09865"; transcript_id "KOE99340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99340"; +contig28 ena start_codon 8324 8326 . + 0 gene_id "W7K_09865"; transcript_id "KOE99340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 8669 8671 . + 0 gene_id "W7K_09865"; transcript_id "KOE99340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 9107 11008 . - . gene_id "W7K_09870"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 9107 11008 . - . gene_id "W7K_09870"; transcript_id "KOE99341"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 9107 11008 . - . gene_id "W7K_09870"; transcript_id "KOE99341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99341-1"; +contig28 ena CDS 9110 11008 . - 0 gene_id "W7K_09870"; transcript_id "KOE99341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99341"; +contig28 ena start_codon 11006 11008 . - 0 gene_id "W7K_09870"; transcript_id "KOE99341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 9107 9109 . - 0 gene_id "W7K_09870"; transcript_id "KOE99341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 11358 12047 . + . gene_id "W7K_09875"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 11358 12047 . + . gene_id "W7K_09875"; transcript_id "KOE99342"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 11358 12047 . + . gene_id "W7K_09875"; transcript_id "KOE99342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99342-1"; +contig28 ena CDS 11358 12044 . + 0 gene_id "W7K_09875"; transcript_id "KOE99342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99342"; +contig28 ena start_codon 11358 11360 . + 0 gene_id "W7K_09875"; transcript_id "KOE99342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 12045 12047 . + 0 gene_id "W7K_09875"; transcript_id "KOE99342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 12044 13390 . + . gene_id "W7K_09880"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 12044 13390 . + . gene_id "W7K_09880"; transcript_id "KOE99343"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 12044 13390 . + . gene_id "W7K_09880"; transcript_id "KOE99343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99343-1"; +contig28 ena CDS 12044 13387 . + 0 gene_id "W7K_09880"; transcript_id "KOE99343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99343"; +contig28 ena start_codon 12044 12046 . + 0 gene_id "W7K_09880"; transcript_id "KOE99343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 13388 13390 . + 0 gene_id "W7K_09880"; transcript_id "KOE99343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 13387 14856 . - . gene_id "W7K_09885"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 13387 14856 . - . gene_id "W7K_09885"; transcript_id "KOE99344"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 13387 14856 . - . gene_id "W7K_09885"; transcript_id "KOE99344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99344-1"; +contig28 ena CDS 13390 14856 . - 0 gene_id "W7K_09885"; transcript_id "KOE99344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99344"; +contig28 ena start_codon 14854 14856 . - 0 gene_id "W7K_09885"; transcript_id "KOE99344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 13387 13389 . - 0 gene_id "W7K_09885"; transcript_id "KOE99344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 14853 15572 . - . gene_id "W7K_09890"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 14853 15572 . - . gene_id "W7K_09890"; transcript_id "KOE99345"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 14853 15572 . - . gene_id "W7K_09890"; transcript_id "KOE99345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99345-1"; +contig28 ena CDS 14856 15572 . - 0 gene_id "W7K_09890"; transcript_id "KOE99345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99345"; +contig28 ena start_codon 15570 15572 . - 0 gene_id "W7K_09890"; transcript_id "KOE99345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 14853 14855 . - 0 gene_id "W7K_09890"; transcript_id "KOE99345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 15717 16289 . + . gene_id "W7K_09895"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 15717 16289 . + . gene_id "W7K_09895"; transcript_id "KOE99346"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 15717 16289 . + . gene_id "W7K_09895"; transcript_id "KOE99346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99346-1"; +contig28 ena CDS 15717 16286 . + 0 gene_id "W7K_09895"; transcript_id "KOE99346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99346"; +contig28 ena start_codon 15717 15719 . + 0 gene_id "W7K_09895"; transcript_id "KOE99346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 16287 16289 . + 0 gene_id "W7K_09895"; transcript_id "KOE99346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 16292 18061 . + . gene_id "W7K_09900"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 16292 18061 . + . gene_id "W7K_09900"; transcript_id "KOE99347"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 16292 18061 . + . gene_id "W7K_09900"; transcript_id "KOE99347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99347-1"; +contig28 ena CDS 16292 18058 . + 0 gene_id "W7K_09900"; transcript_id "KOE99347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99347"; +contig28 ena start_codon 16292 16294 . + 0 gene_id "W7K_09900"; transcript_id "KOE99347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 18059 18061 . + 0 gene_id "W7K_09900"; transcript_id "KOE99347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 18076 18813 . + . gene_id "W7K_09905"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 18076 18813 . + . gene_id "W7K_09905"; transcript_id "KOE99348"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 18076 18813 . + . gene_id "W7K_09905"; transcript_id "KOE99348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99348-1"; +contig28 ena CDS 18076 18810 . + 0 gene_id "W7K_09905"; transcript_id "KOE99348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99348"; +contig28 ena start_codon 18076 18078 . + 0 gene_id "W7K_09905"; transcript_id "KOE99348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 18811 18813 . + 0 gene_id "W7K_09905"; transcript_id "KOE99348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 19058 20509 . + . gene_id "W7K_09910"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 19058 20509 . + . gene_id "W7K_09910"; transcript_id "KOE99349"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 19058 20509 . + . gene_id "W7K_09910"; transcript_id "KOE99349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99349-1"; +contig28 ena CDS 19058 20506 . + 0 gene_id "W7K_09910"; transcript_id "KOE99349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99349"; +contig28 ena start_codon 19058 19060 . + 0 gene_id "W7K_09910"; transcript_id "KOE99349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 20507 20509 . + 0 gene_id "W7K_09910"; transcript_id "KOE99349"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 20589 21272 . - . gene_id "W7K_09915"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 20589 21272 . - . gene_id "W7K_09915"; transcript_id "KOE99350"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 20589 21272 . - . gene_id "W7K_09915"; transcript_id "KOE99350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99350-1"; +contig28 ena CDS 20592 21272 . - 0 gene_id "W7K_09915"; transcript_id "KOE99350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99350"; +contig28 ena start_codon 21270 21272 . - 0 gene_id "W7K_09915"; transcript_id "KOE99350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 20589 20591 . - 0 gene_id "W7K_09915"; transcript_id "KOE99350"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 21341 21823 . + . gene_id "W7K_09920"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 21341 21823 . + . gene_id "W7K_09920"; transcript_id "KOE99351"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 21341 21823 . + . gene_id "W7K_09920"; transcript_id "KOE99351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99351-1"; +contig28 ena CDS 21341 21820 . + 0 gene_id "W7K_09920"; transcript_id "KOE99351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99351"; +contig28 ena start_codon 21341 21343 . + 0 gene_id "W7K_09920"; transcript_id "KOE99351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 21821 21823 . + 0 gene_id "W7K_09920"; transcript_id "KOE99351"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 21820 22182 . + . gene_id "W7K_09925"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 21820 22182 . + . gene_id "W7K_09925"; transcript_id "KOE99352"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 21820 22182 . + . gene_id "W7K_09925"; transcript_id "KOE99352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99352-1"; +contig28 ena CDS 21820 22179 . + 0 gene_id "W7K_09925"; transcript_id "KOE99352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99352"; +contig28 ena start_codon 21820 21822 . + 0 gene_id "W7K_09925"; transcript_id "KOE99352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 22180 22182 . + 0 gene_id "W7K_09925"; transcript_id "KOE99352"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 22272 22850 . - . gene_id "W7K_09930"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 22272 22850 . - . gene_id "W7K_09930"; transcript_id "KOE99353"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 22272 22850 . - . gene_id "W7K_09930"; transcript_id "KOE99353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99353-1"; +contig28 ena CDS 22275 22850 . - 0 gene_id "W7K_09930"; transcript_id "KOE99353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99353"; +contig28 ena start_codon 22848 22850 . - 0 gene_id "W7K_09930"; transcript_id "KOE99353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 22272 22274 . - 0 gene_id "W7K_09930"; transcript_id "KOE99353"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 23331 25175 . + . gene_id "W7K_09935"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 23331 25175 . + . gene_id "W7K_09935"; transcript_id "KOE99354"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 23331 25175 . + . gene_id "W7K_09935"; transcript_id "KOE99354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99354-1"; +contig28 ena CDS 23331 25172 . + 0 gene_id "W7K_09935"; transcript_id "KOE99354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99354"; +contig28 ena start_codon 23331 23333 . + 0 gene_id "W7K_09935"; transcript_id "KOE99354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 25173 25175 . + 0 gene_id "W7K_09935"; transcript_id "KOE99354"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 25234 25902 . - . gene_id "W7K_09940"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 25234 25902 . - . gene_id "W7K_09940"; transcript_id "KOE99355"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 25234 25902 . - . gene_id "W7K_09940"; transcript_id "KOE99355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99355-1"; +contig28 ena CDS 25237 25902 . - 0 gene_id "W7K_09940"; transcript_id "KOE99355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99355"; +contig28 ena start_codon 25900 25902 . - 0 gene_id "W7K_09940"; transcript_id "KOE99355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 25234 25236 . - 0 gene_id "W7K_09940"; transcript_id "KOE99355"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 25967 26758 . - . gene_id "W7K_09945"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 25967 26758 . - . gene_id "W7K_09945"; transcript_id "KOE99356"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 25967 26758 . - . gene_id "W7K_09945"; transcript_id "KOE99356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99356-1"; +contig28 ena CDS 25970 26758 . - 0 gene_id "W7K_09945"; transcript_id "KOE99356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99356"; +contig28 ena start_codon 26756 26758 . - 0 gene_id "W7K_09945"; transcript_id "KOE99356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 25967 25969 . - 0 gene_id "W7K_09945"; transcript_id "KOE99356"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 26755 27684 . - . gene_id "W7K_09950"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 26755 27684 . - . gene_id "W7K_09950"; transcript_id "KOE99357"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 26755 27684 . - . gene_id "W7K_09950"; transcript_id "KOE99357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99357-1"; +contig28 ena CDS 26758 27684 . - 0 gene_id "W7K_09950"; transcript_id "KOE99357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99357"; +contig28 ena start_codon 27682 27684 . - 0 gene_id "W7K_09950"; transcript_id "KOE99357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 26755 26757 . - 0 gene_id "W7K_09950"; transcript_id "KOE99357"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 27793 28431 . + . gene_id "W7K_09955"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 27793 28431 . + . gene_id "W7K_09955"; transcript_id "KOE99358"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 27793 28431 . + . gene_id "W7K_09955"; transcript_id "KOE99358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99358-1"; +contig28 ena CDS 27793 28428 . + 0 gene_id "W7K_09955"; transcript_id "KOE99358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99358"; +contig28 ena start_codon 27793 27795 . + 0 gene_id "W7K_09955"; transcript_id "KOE99358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 28429 28431 . + 0 gene_id "W7K_09955"; transcript_id "KOE99358"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 28524 29435 . + . gene_id "W7K_09960"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 28524 29435 . + . gene_id "W7K_09960"; transcript_id "KOE99359"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 28524 29435 . + . gene_id "W7K_09960"; transcript_id "KOE99359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99359-1"; +contig28 ena CDS 28524 29432 . + 0 gene_id "W7K_09960"; transcript_id "KOE99359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99359"; +contig28 ena start_codon 28524 28526 . + 0 gene_id "W7K_09960"; transcript_id "KOE99359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 29433 29435 . + 0 gene_id "W7K_09960"; transcript_id "KOE99359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 29584 30141 . + . gene_id "W7K_09965"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 29584 30141 . + . gene_id "W7K_09965"; transcript_id "KOE99360"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 29584 30141 . + . gene_id "W7K_09965"; transcript_id "KOE99360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99360-1"; +contig28 ena CDS 29584 30138 . + 0 gene_id "W7K_09965"; transcript_id "KOE99360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99360"; +contig28 ena start_codon 29584 29586 . + 0 gene_id "W7K_09965"; transcript_id "KOE99360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 30139 30141 . + 0 gene_id "W7K_09965"; transcript_id "KOE99360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 30768 31865 . - . gene_id "W7K_09970"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 30768 31865 . - . gene_id "W7K_09970"; transcript_id "KOE99361"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 30768 31865 . - . gene_id "W7K_09970"; transcript_id "KOE99361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99361-1"; +contig28 ena CDS 30771 31865 . - 0 gene_id "W7K_09970"; transcript_id "KOE99361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99361"; +contig28 ena start_codon 31863 31865 . - 0 gene_id "W7K_09970"; transcript_id "KOE99361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 30768 30770 . - 0 gene_id "W7K_09970"; transcript_id "KOE99361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 32057 32572 . + . gene_id "W7K_09975"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 32057 32572 . + . gene_id "W7K_09975"; transcript_id "KOE99362"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 32057 32572 . + . gene_id "W7K_09975"; transcript_id "KOE99362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99362-1"; +contig28 ena CDS 32057 32569 . + 0 gene_id "W7K_09975"; transcript_id "KOE99362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99362"; +contig28 ena start_codon 32057 32059 . + 0 gene_id "W7K_09975"; transcript_id "KOE99362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 32570 32572 . + 0 gene_id "W7K_09975"; transcript_id "KOE99362"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 32572 33780 . + . gene_id "W7K_09980"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 32572 33780 . + . gene_id "W7K_09980"; transcript_id "KOE99363"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 32572 33780 . + . gene_id "W7K_09980"; transcript_id "KOE99363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99363-1"; +contig28 ena CDS 32572 33777 . + 0 gene_id "W7K_09980"; transcript_id "KOE99363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99363"; +contig28 ena start_codon 32572 32574 . + 0 gene_id "W7K_09980"; transcript_id "KOE99363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 33778 33780 . + 0 gene_id "W7K_09980"; transcript_id "KOE99363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 33878 34561 . - . gene_id "W7K_09985"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 33878 34561 . - . gene_id "W7K_09985"; transcript_id "KOE99364"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 33878 34561 . - . gene_id "W7K_09985"; transcript_id "KOE99364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99364-1"; +contig28 ena CDS 33881 34561 . - 0 gene_id "W7K_09985"; transcript_id "KOE99364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99364"; +contig28 ena start_codon 34559 34561 . - 0 gene_id "W7K_09985"; transcript_id "KOE99364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 33878 33880 . - 0 gene_id "W7K_09985"; transcript_id "KOE99364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 34558 35259 . - . gene_id "W7K_09990"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 34558 35259 . - . gene_id "W7K_09990"; transcript_id "KOE99365"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 34558 35259 . - . gene_id "W7K_09990"; transcript_id "KOE99365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99365-1"; +contig28 ena CDS 34561 35259 . - 0 gene_id "W7K_09990"; transcript_id "KOE99365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99365"; +contig28 ena start_codon 35257 35259 . - 0 gene_id "W7K_09990"; transcript_id "KOE99365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 34558 34560 . - 0 gene_id "W7K_09990"; transcript_id "KOE99365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 35256 36320 . - . gene_id "W7K_09995"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 35256 36320 . - . gene_id "W7K_09995"; transcript_id "KOE99366"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 35256 36320 . - . gene_id "W7K_09995"; transcript_id "KOE99366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99366-1"; +contig28 ena CDS 35259 36320 . - 0 gene_id "W7K_09995"; transcript_id "KOE99366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99366"; +contig28 ena start_codon 36318 36320 . - 0 gene_id "W7K_09995"; transcript_id "KOE99366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 35256 35258 . - 0 gene_id "W7K_09995"; transcript_id "KOE99366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 36478 36741 . + . gene_id "W7K_10000"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 36478 36741 . + . gene_id "W7K_10000"; transcript_id "KOE99367"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 36478 36741 . + . gene_id "W7K_10000"; transcript_id "KOE99367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99367-1"; +contig28 ena CDS 36478 36738 . + 0 gene_id "W7K_10000"; transcript_id "KOE99367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99367"; +contig28 ena start_codon 36478 36480 . + 0 gene_id "W7K_10000"; transcript_id "KOE99367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 36739 36741 . + 0 gene_id "W7K_10000"; transcript_id "KOE99367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 36812 37105 . - . gene_id "W7K_10005"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 36812 37105 . - . gene_id "W7K_10005"; transcript_id "KOE99368"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 36812 37105 . - . gene_id "W7K_10005"; transcript_id "KOE99368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99368-1"; +contig28 ena CDS 36815 37105 . - 0 gene_id "W7K_10005"; transcript_id "KOE99368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99368"; +contig28 ena start_codon 37103 37105 . - 0 gene_id "W7K_10005"; transcript_id "KOE99368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 36812 36814 . - 0 gene_id "W7K_10005"; transcript_id "KOE99368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 37149 39137 . - . gene_id "W7K_10010"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 37149 39137 . - . gene_id "W7K_10010"; transcript_id "KOE99369"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 37149 39137 . - . gene_id "W7K_10010"; transcript_id "KOE99369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99369-1"; +contig28 ena CDS 37152 39137 . - 0 gene_id "W7K_10010"; transcript_id "KOE99369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99369"; +contig28 ena start_codon 39135 39137 . - 0 gene_id "W7K_10010"; transcript_id "KOE99369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 37149 37151 . - 0 gene_id "W7K_10010"; transcript_id "KOE99369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 39383 39946 . + . gene_id "W7K_10015"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 39383 39946 . + . gene_id "W7K_10015"; transcript_id "KOE99370"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 39383 39946 . + . gene_id "W7K_10015"; transcript_id "KOE99370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99370-1"; +contig28 ena CDS 39383 39943 . + 0 gene_id "W7K_10015"; transcript_id "KOE99370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99370"; +contig28 ena start_codon 39383 39385 . + 0 gene_id "W7K_10015"; transcript_id "KOE99370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 39944 39946 . + 0 gene_id "W7K_10015"; transcript_id "KOE99370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 40036 41103 . - . gene_id "W7K_10020"; gene_name "alr"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 40036 41103 . - . gene_id "W7K_10020"; transcript_id "KOE99371"; gene_name "alr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "alr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 40036 41103 . - . gene_id "W7K_10020"; transcript_id "KOE99371"; exon_number "1"; gene_name "alr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "alr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99371-1"; +contig28 ena CDS 40039 41103 . - 0 gene_id "W7K_10020"; transcript_id "KOE99371"; exon_number "1"; gene_name "alr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "alr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99371"; +contig28 ena start_codon 41101 41103 . - 0 gene_id "W7K_10020"; transcript_id "KOE99371"; exon_number "1"; gene_name "alr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "alr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 40036 40038 . - 0 gene_id "W7K_10020"; transcript_id "KOE99371"; exon_number "1"; gene_name "alr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "alr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 41082 42386 . - . gene_id "W7K_10025"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 41082 42386 . - . gene_id "W7K_10025"; transcript_id "KOE99372"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 41082 42386 . - . gene_id "W7K_10025"; transcript_id "KOE99372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99372-1"; +contig28 ena CDS 41085 42386 . - 0 gene_id "W7K_10025"; transcript_id "KOE99372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99372"; +contig28 ena start_codon 42384 42386 . - 0 gene_id "W7K_10025"; transcript_id "KOE99372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 41082 41084 . - 0 gene_id "W7K_10025"; transcript_id "KOE99372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 42536 43015 . + . gene_id "W7K_10030"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 42536 43015 . + . gene_id "W7K_10030"; transcript_id "KOE99373"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 42536 43015 . + . gene_id "W7K_10030"; transcript_id "KOE99373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99373-1"; +contig28 ena CDS 42536 43012 . + 0 gene_id "W7K_10030"; transcript_id "KOE99373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99373"; +contig28 ena start_codon 42536 42538 . + 0 gene_id "W7K_10030"; transcript_id "KOE99373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 43013 43015 . + 0 gene_id "W7K_10030"; transcript_id "KOE99373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 43072 43254 . - . gene_id "W7K_10035"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 43072 43254 . - . gene_id "W7K_10035"; transcript_id "KOE99374"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 43072 43254 . - . gene_id "W7K_10035"; transcript_id "KOE99374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99374-1"; +contig28 ena CDS 43075 43254 . - 0 gene_id "W7K_10035"; transcript_id "KOE99374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99374"; +contig28 ena start_codon 43252 43254 . - 0 gene_id "W7K_10035"; transcript_id "KOE99374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 43072 43074 . - 0 gene_id "W7K_10035"; transcript_id "KOE99374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 43398 43784 . - . gene_id "W7K_10040"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 43398 43784 . - . gene_id "W7K_10040"; transcript_id "KOE99375"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 43398 43784 . - . gene_id "W7K_10040"; transcript_id "KOE99375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99375-1"; +contig28 ena CDS 43401 43784 . - 0 gene_id "W7K_10040"; transcript_id "KOE99375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99375"; +contig28 ena start_codon 43782 43784 . - 0 gene_id "W7K_10040"; transcript_id "KOE99375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 43398 43400 . - 0 gene_id "W7K_10040"; transcript_id "KOE99375"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 43925 44392 . + . gene_id "W7K_10045"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 43925 44392 . + . gene_id "W7K_10045"; transcript_id "KOE99376"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 43925 44392 . + . gene_id "W7K_10045"; transcript_id "KOE99376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99376-1"; +contig28 ena CDS 43925 44389 . + 0 gene_id "W7K_10045"; transcript_id "KOE99376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99376"; +contig28 ena start_codon 43925 43927 . + 0 gene_id "W7K_10045"; transcript_id "KOE99376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 44390 44392 . + 0 gene_id "W7K_10045"; transcript_id "KOE99376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 44483 45337 . + . gene_id "W7K_10050"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 44483 45337 . + . gene_id "W7K_10050"; transcript_id "KOE99377"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 44483 45337 . + . gene_id "W7K_10050"; transcript_id "KOE99377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99377-1"; +contig28 ena CDS 44483 45334 . + 0 gene_id "W7K_10050"; transcript_id "KOE99377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99377"; +contig28 ena start_codon 44483 44485 . + 0 gene_id "W7K_10050"; transcript_id "KOE99377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 45335 45337 . + 0 gene_id "W7K_10050"; transcript_id "KOE99377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 45341 46279 . + . gene_id "W7K_10055"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 45341 46279 . + . gene_id "W7K_10055"; transcript_id "KOE99378"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 45341 46279 . + . gene_id "W7K_10055"; transcript_id "KOE99378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99378-1"; +contig28 ena CDS 45341 46276 . + 0 gene_id "W7K_10055"; transcript_id "KOE99378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99378"; +contig28 ena start_codon 45341 45343 . + 0 gene_id "W7K_10055"; transcript_id "KOE99378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 46277 46279 . + 0 gene_id "W7K_10055"; transcript_id "KOE99378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 46377 46865 . + . gene_id "W7K_10060"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 46377 46865 . + . gene_id "W7K_10060"; transcript_id "KOE99379"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 46377 46865 . + . gene_id "W7K_10060"; transcript_id "KOE99379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99379-1"; +contig28 ena CDS 46377 46862 . + 0 gene_id "W7K_10060"; transcript_id "KOE99379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99379"; +contig28 ena start_codon 46377 46379 . + 0 gene_id "W7K_10060"; transcript_id "KOE99379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 46863 46865 . + 0 gene_id "W7K_10060"; transcript_id "KOE99379"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 46879 47154 . + . gene_id "W7K_10065"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 46879 47154 . + . gene_id "W7K_10065"; transcript_id "KOE99380"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 46879 47154 . + . gene_id "W7K_10065"; transcript_id "KOE99380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99380-1"; +contig28 ena CDS 46879 47151 . + 0 gene_id "W7K_10065"; transcript_id "KOE99380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99380"; +contig28 ena start_codon 46879 46881 . + 0 gene_id "W7K_10065"; transcript_id "KOE99380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 47152 47154 . + 0 gene_id "W7K_10065"; transcript_id "KOE99380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 47246 47788 . - . gene_id "W7K_10070"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 47246 47788 . - . gene_id "W7K_10070"; transcript_id "KOE99381"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 47246 47788 . - . gene_id "W7K_10070"; transcript_id "KOE99381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99381-1"; +contig28 ena CDS 47249 47788 . - 0 gene_id "W7K_10070"; transcript_id "KOE99381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99381"; +contig28 ena start_codon 47786 47788 . - 0 gene_id "W7K_10070"; transcript_id "KOE99381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 47246 47248 . - 0 gene_id "W7K_10070"; transcript_id "KOE99381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 47879 48127 . + . gene_id "W7K_10075"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 47879 48127 . + . gene_id "W7K_10075"; transcript_id "KOE99382"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 47879 48127 . + . gene_id "W7K_10075"; transcript_id "KOE99382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99382-1"; +contig28 ena CDS 47879 48124 . + 0 gene_id "W7K_10075"; transcript_id "KOE99382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99382"; +contig28 ena start_codon 47879 47881 . + 0 gene_id "W7K_10075"; transcript_id "KOE99382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 48125 48127 . + 0 gene_id "W7K_10075"; transcript_id "KOE99382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 48172 49821 . - . gene_id "W7K_10080"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 48172 49821 . - . gene_id "W7K_10080"; transcript_id "KOE99383"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 48172 49821 . - . gene_id "W7K_10080"; transcript_id "KOE99383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99383-1"; +contig28 ena CDS 48175 49821 . - 0 gene_id "W7K_10080"; transcript_id "KOE99383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99383"; +contig28 ena start_codon 49819 49821 . - 0 gene_id "W7K_10080"; transcript_id "KOE99383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 48172 48174 . - 0 gene_id "W7K_10080"; transcript_id "KOE99383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 49939 50730 . - . gene_id "W7K_10085"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 49939 50730 . - . gene_id "W7K_10085"; transcript_id "KOE99384"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 49939 50730 . - . gene_id "W7K_10085"; transcript_id "KOE99384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99384-1"; +contig28 ena CDS 49942 50730 . - 0 gene_id "W7K_10085"; transcript_id "KOE99384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99384"; +contig28 ena start_codon 50728 50730 . - 0 gene_id "W7K_10085"; transcript_id "KOE99384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 49939 49941 . - 0 gene_id "W7K_10085"; transcript_id "KOE99384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 50762 51172 . - . gene_id "W7K_10090"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 50762 51172 . - . gene_id "W7K_10090"; transcript_id "KOE99385"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 50762 51172 . - . gene_id "W7K_10090"; transcript_id "KOE99385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99385-1"; +contig28 ena CDS 50765 51172 . - 0 gene_id "W7K_10090"; transcript_id "KOE99385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99385"; +contig28 ena start_codon 51170 51172 . - 0 gene_id "W7K_10090"; transcript_id "KOE99385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 50762 50764 . - 0 gene_id "W7K_10090"; transcript_id "KOE99385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 51269 52150 . + . gene_id "W7K_10095"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 51269 52150 . + . gene_id "W7K_10095"; transcript_id "KOE99386"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 51269 52150 . + . gene_id "W7K_10095"; transcript_id "KOE99386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99386-1"; +contig28 ena CDS 51269 52147 . + 0 gene_id "W7K_10095"; transcript_id "KOE99386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99386"; +contig28 ena start_codon 51269 51271 . + 0 gene_id "W7K_10095"; transcript_id "KOE99386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 52148 52150 . + 0 gene_id "W7K_10095"; transcript_id "KOE99386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 52198 55260 . - . gene_id "W7K_10100"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 52198 55260 . - . gene_id "W7K_10100"; transcript_id "KOE99403"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 52198 55260 . - . gene_id "W7K_10100"; transcript_id "KOE99403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99403-1"; +contig28 ena CDS 52201 55260 . - 0 gene_id "W7K_10100"; transcript_id "KOE99403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99403"; +contig28 ena start_codon 55258 55260 . - 0 gene_id "W7K_10100"; transcript_id "KOE99403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 52198 52200 . - 0 gene_id "W7K_10100"; transcript_id "KOE99403"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 55437 57548 . + . gene_id "W7K_10105"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 55437 57548 . + . gene_id "W7K_10105"; transcript_id "KOE99387"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 55437 57548 . + . gene_id "W7K_10105"; transcript_id "KOE99387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99387-1"; +contig28 ena CDS 55437 57545 . + 0 gene_id "W7K_10105"; transcript_id "KOE99387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99387"; +contig28 ena start_codon 55437 55439 . + 0 gene_id "W7K_10105"; transcript_id "KOE99387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 57546 57548 . + 0 gene_id "W7K_10105"; transcript_id "KOE99387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 57657 58586 . - . gene_id "W7K_10110"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 57657 58586 . - . gene_id "W7K_10110"; transcript_id "KOE99388"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 57657 58586 . - . gene_id "W7K_10110"; transcript_id "KOE99388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99388-1"; +contig28 ena CDS 57660 58586 . - 0 gene_id "W7K_10110"; transcript_id "KOE99388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99388"; +contig28 ena start_codon 58584 58586 . - 0 gene_id "W7K_10110"; transcript_id "KOE99388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 57657 57659 . - 0 gene_id "W7K_10110"; transcript_id "KOE99388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 58896 59510 . + . gene_id "W7K_10115"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 58896 59510 . + . gene_id "W7K_10115"; transcript_id "KOE99389"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 58896 59510 . + . gene_id "W7K_10115"; transcript_id "KOE99389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99389-1"; +contig28 ena CDS 58896 59507 . + 0 gene_id "W7K_10115"; transcript_id "KOE99389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99389"; +contig28 ena start_codon 58896 58898 . + 0 gene_id "W7K_10115"; transcript_id "KOE99389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 59508 59510 . + 0 gene_id "W7K_10115"; transcript_id "KOE99389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 59550 59894 . - . gene_id "W7K_10120"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 59550 59894 . - . gene_id "W7K_10120"; transcript_id "KOE99390"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 59550 59894 . - . gene_id "W7K_10120"; transcript_id "KOE99390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99390-1"; +contig28 ena CDS 59553 59894 . - 0 gene_id "W7K_10120"; transcript_id "KOE99390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99390"; +contig28 ena start_codon 59892 59894 . - 0 gene_id "W7K_10120"; transcript_id "KOE99390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 59550 59552 . - 0 gene_id "W7K_10120"; transcript_id "KOE99390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 59913 60683 . - . gene_id "W7K_10125"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 59913 60683 . - . gene_id "W7K_10125"; transcript_id "KOE99391"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 59913 60683 . - . gene_id "W7K_10125"; transcript_id "KOE99391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99391-1"; +contig28 ena CDS 59916 60683 . - 0 gene_id "W7K_10125"; transcript_id "KOE99391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99391"; +contig28 ena start_codon 60681 60683 . - 0 gene_id "W7K_10125"; transcript_id "KOE99391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 59913 59915 . - 0 gene_id "W7K_10125"; transcript_id "KOE99391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 60673 61932 . - . gene_id "W7K_10130"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 60673 61932 . - . gene_id "W7K_10130"; transcript_id "KOE99392"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 60673 61932 . - . gene_id "W7K_10130"; transcript_id "KOE99392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99392-1"; +contig28 ena CDS 60676 61932 . - 0 gene_id "W7K_10130"; transcript_id "KOE99392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99392"; +contig28 ena start_codon 61930 61932 . - 0 gene_id "W7K_10130"; transcript_id "KOE99392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 60673 60675 . - 0 gene_id "W7K_10130"; transcript_id "KOE99392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 62109 63758 . - . gene_id "W7K_10135"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 62109 63758 . - . gene_id "W7K_10135"; transcript_id "KOE99393"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 62109 63758 . - . gene_id "W7K_10135"; transcript_id "KOE99393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99393-1"; +contig28 ena CDS 62112 63758 . - 0 gene_id "W7K_10135"; transcript_id "KOE99393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99393"; +contig28 ena start_codon 63756 63758 . - 0 gene_id "W7K_10135"; transcript_id "KOE99393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 62109 62111 . - 0 gene_id "W7K_10135"; transcript_id "KOE99393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 64106 65752 . - . gene_id "W7K_10140"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 64106 65752 . - . gene_id "W7K_10140"; transcript_id "KOE99394"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 64106 65752 . - . gene_id "W7K_10140"; transcript_id "KOE99394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99394-1"; +contig28 ena CDS 64109 65752 . - 0 gene_id "W7K_10140"; transcript_id "KOE99394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99394"; +contig28 ena start_codon 65750 65752 . - 0 gene_id "W7K_10140"; transcript_id "KOE99394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 64106 64108 . - 0 gene_id "W7K_10140"; transcript_id "KOE99394"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 65769 66446 . - . gene_id "W7K_10145"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 65769 66446 . - . gene_id "W7K_10145"; transcript_id "KOE99395"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 65769 66446 . - . gene_id "W7K_10145"; transcript_id "KOE99395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99395-1"; +contig28 ena CDS 65772 66446 . - 0 gene_id "W7K_10145"; transcript_id "KOE99395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99395"; +contig28 ena start_codon 66444 66446 . - 0 gene_id "W7K_10145"; transcript_id "KOE99395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 65769 65771 . - 0 gene_id "W7K_10145"; transcript_id "KOE99395"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 66582 67682 . - . gene_id "W7K_10150"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 66582 67682 . - . gene_id "W7K_10150"; transcript_id "KOE99396"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 66582 67682 . - . gene_id "W7K_10150"; transcript_id "KOE99396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99396-1"; +contig28 ena CDS 66585 67682 . - 0 gene_id "W7K_10150"; transcript_id "KOE99396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99396"; +contig28 ena start_codon 67680 67682 . - 0 gene_id "W7K_10150"; transcript_id "KOE99396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 66582 66584 . - 0 gene_id "W7K_10150"; transcript_id "KOE99396"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 67673 68869 . - . gene_id "W7K_10155"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 67673 68869 . - . gene_id "W7K_10155"; transcript_id "KOE99397"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 67673 68869 . - . gene_id "W7K_10155"; transcript_id "KOE99397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99397-1"; +contig28 ena CDS 67676 68869 . - 0 gene_id "W7K_10155"; transcript_id "KOE99397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99397"; +contig28 ena start_codon 68867 68869 . - 0 gene_id "W7K_10155"; transcript_id "KOE99397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 67673 67675 . - 0 gene_id "W7K_10155"; transcript_id "KOE99397"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 68977 70239 . - . gene_id "W7K_10160"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 68977 70239 . - . gene_id "W7K_10160"; transcript_id "KOE99398"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 68977 70239 . - . gene_id "W7K_10160"; transcript_id "KOE99398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99398-1"; +contig28 ena CDS 68980 70239 . - 0 gene_id "W7K_10160"; transcript_id "KOE99398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99398"; +contig28 ena start_codon 70237 70239 . - 0 gene_id "W7K_10160"; transcript_id "KOE99398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 68977 68979 . - 0 gene_id "W7K_10160"; transcript_id "KOE99398"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 70285 70641 . - . gene_id "W7K_10165"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 70285 70641 . - . gene_id "W7K_10165"; transcript_id "KOE99399"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 70285 70641 . - . gene_id "W7K_10165"; transcript_id "KOE99399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99399-1"; +contig28 ena CDS 70288 70641 . - 0 gene_id "W7K_10165"; transcript_id "KOE99399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99399"; +contig28 ena start_codon 70639 70641 . - 0 gene_id "W7K_10165"; transcript_id "KOE99399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 70285 70287 . - 0 gene_id "W7K_10165"; transcript_id "KOE99399"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 70666 71076 . - . gene_id "W7K_10170"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 70666 71076 . - . gene_id "W7K_10170"; transcript_id "KOE99400"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 70666 71076 . - . gene_id "W7K_10170"; transcript_id "KOE99400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99400-1"; +contig28 ena CDS 70669 71076 . - 0 gene_id "W7K_10170"; transcript_id "KOE99400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99400"; +contig28 ena start_codon 71074 71076 . - 0 gene_id "W7K_10170"; transcript_id "KOE99400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 70666 70668 . - 0 gene_id "W7K_10170"; transcript_id "KOE99400"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 71117 71539 . - . gene_id "W7K_10175"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 71117 71539 . - . gene_id "W7K_10175"; transcript_id "KOE99401"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 71117 71539 . - . gene_id "W7K_10175"; transcript_id "KOE99401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99401-1"; +contig28 ena CDS 71120 71539 . - 0 gene_id "W7K_10175"; transcript_id "KOE99401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99401"; +contig28 ena start_codon 71537 71539 . - 0 gene_id "W7K_10175"; transcript_id "KOE99401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 71117 71119 . - 0 gene_id "W7K_10175"; transcript_id "KOE99401"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena gene 71607 72020 . - . gene_id "W7K_10180"; gene_source "ena"; gene_biotype "protein_coding"; +contig28 ena transcript 71607 72020 . - . gene_id "W7K_10180"; transcript_id "KOE99402"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena exon 71607 72020 . - . gene_id "W7K_10180"; transcript_id "KOE99402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99402-1"; +contig28 ena CDS 71610 72020 . - 0 gene_id "W7K_10180"; transcript_id "KOE99402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99402"; +contig28 ena start_codon 72018 72020 . - 0 gene_id "W7K_10180"; transcript_id "KOE99402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig28 ena stop_codon 71607 71609 . - 0 gene_id "W7K_10180"; transcript_id "KOE99402"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 1 1114 . - . gene_id "W7K_03685"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 1 1114 . - . gene_id "W7K_03685"; transcript_id "KOF00547"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 1 1114 . - . gene_id "W7K_03685"; transcript_id "KOF00547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00547-1"; +contig41 ena CDS 1 1114 . - 0 gene_id "W7K_03685"; transcript_id "KOF00547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00547"; +contig41 ena start_codon 1112 1114 . - 0 gene_id "W7K_03685"; transcript_id "KOF00547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 1111 1476 . - . gene_id "W7K_03690"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 1111 1476 . - . gene_id "W7K_03690"; transcript_id "KOF00605"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 1111 1476 . - . gene_id "W7K_03690"; transcript_id "KOF00605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00605-1"; +contig41 ena CDS 1114 1476 . - 0 gene_id "W7K_03690"; transcript_id "KOF00605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00605"; +contig41 ena start_codon 1474 1476 . - 0 gene_id "W7K_03690"; transcript_id "KOF00605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 1111 1113 . - 0 gene_id "W7K_03690"; transcript_id "KOF00605"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 1514 2380 . - . gene_id "W7K_03695"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 1514 2380 . - . gene_id "W7K_03695"; transcript_id "KOF00548"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 1514 2380 . - . gene_id "W7K_03695"; transcript_id "KOF00548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00548-1"; +contig41 ena CDS 1517 2380 . - 0 gene_id "W7K_03695"; transcript_id "KOF00548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00548"; +contig41 ena start_codon 2378 2380 . - 0 gene_id "W7K_03695"; transcript_id "KOF00548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 1514 1516 . - 0 gene_id "W7K_03695"; transcript_id "KOF00548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 2383 3447 . - . gene_id "W7K_03700"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 2383 3447 . - . gene_id "W7K_03700"; transcript_id "KOF00549"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 2383 3447 . - . gene_id "W7K_03700"; transcript_id "KOF00549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00549-1"; +contig41 ena CDS 2386 3447 . - 0 gene_id "W7K_03700"; transcript_id "KOF00549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00549"; +contig41 ena start_codon 3445 3447 . - 0 gene_id "W7K_03700"; transcript_id "KOF00549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 2383 2385 . - 0 gene_id "W7K_03700"; transcript_id "KOF00549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 3447 6074 . - . gene_id "W7K_03705"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 3447 6074 . - . gene_id "W7K_03705"; transcript_id "KOF00550"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 3447 6074 . - . gene_id "W7K_03705"; transcript_id "KOF00550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00550-1"; +contig41 ena CDS 3450 6074 . - 0 gene_id "W7K_03705"; transcript_id "KOF00550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00550"; +contig41 ena start_codon 6072 6074 . - 0 gene_id "W7K_03705"; transcript_id "KOF00550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 3447 3449 . - 0 gene_id "W7K_03705"; transcript_id "KOF00550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 6077 6919 . - . gene_id "W7K_03710"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 6077 6919 . - . gene_id "W7K_03710"; transcript_id "KOF00551"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 6077 6919 . - . gene_id "W7K_03710"; transcript_id "KOF00551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00551-1"; +contig41 ena CDS 6080 6919 . - 0 gene_id "W7K_03710"; transcript_id "KOF00551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00551"; +contig41 ena start_codon 6917 6919 . - 0 gene_id "W7K_03710"; transcript_id "KOF00551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 6077 6079 . - 0 gene_id "W7K_03710"; transcript_id "KOF00551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 7093 7623 . + . gene_id "W7K_03715"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 7093 7623 . + . gene_id "W7K_03715"; transcript_id "KOF00552"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 7093 7623 . + . gene_id "W7K_03715"; transcript_id "KOF00552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00552-1"; +contig41 ena CDS 7093 7620 . + 0 gene_id "W7K_03715"; transcript_id "KOF00552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00552"; +contig41 ena start_codon 7093 7095 . + 0 gene_id "W7K_03715"; transcript_id "KOF00552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 7621 7623 . + 0 gene_id "W7K_03715"; transcript_id "KOF00552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 7623 8372 . + . gene_id "W7K_03720"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 7623 8372 . + . gene_id "W7K_03720"; transcript_id "KOF00553"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 7623 8372 . + . gene_id "W7K_03720"; transcript_id "KOF00553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00553-1"; +contig41 ena CDS 7623 8369 . + 0 gene_id "W7K_03720"; transcript_id "KOF00553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00553"; +contig41 ena start_codon 7623 7625 . + 0 gene_id "W7K_03720"; transcript_id "KOF00553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 8370 8372 . + 0 gene_id "W7K_03720"; transcript_id "KOF00553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 8380 10755 . + . gene_id "W7K_03725"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 8380 10755 . + . gene_id "W7K_03725"; transcript_id "KOF00554"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 8380 10755 . + . gene_id "W7K_03725"; transcript_id "KOF00554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00554-1"; +contig41 ena CDS 8380 10752 . + 0 gene_id "W7K_03725"; transcript_id "KOF00554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00554"; +contig41 ena start_codon 8380 8382 . + 0 gene_id "W7K_03725"; transcript_id "KOF00554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 10753 10755 . + 0 gene_id "W7K_03725"; transcript_id "KOF00554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 10752 11789 . + . gene_id "W7K_03730"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 10752 11789 . + . gene_id "W7K_03730"; transcript_id "KOF00555"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 10752 11789 . + . gene_id "W7K_03730"; transcript_id "KOF00555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00555-1"; +contig41 ena CDS 10752 11786 . + 0 gene_id "W7K_03730"; transcript_id "KOF00555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00555"; +contig41 ena start_codon 10752 10754 . + 0 gene_id "W7K_03730"; transcript_id "KOF00555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 11787 11789 . + 0 gene_id "W7K_03730"; transcript_id "KOF00555"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 11950 12168 . + . gene_id "W7K_03735"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 11950 12168 . + . gene_id "W7K_03735"; transcript_id "KOF00556"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 11950 12168 . + . gene_id "W7K_03735"; transcript_id "KOF00556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00556-1"; +contig41 ena CDS 11950 12165 . + 0 gene_id "W7K_03735"; transcript_id "KOF00556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00556"; +contig41 ena start_codon 11950 11952 . + 0 gene_id "W7K_03735"; transcript_id "KOF00556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 12166 12168 . + 0 gene_id "W7K_03735"; transcript_id "KOF00556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 12168 12866 . + . gene_id "W7K_03740"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 12168 12866 . + . gene_id "W7K_03740"; transcript_id "KOF00557"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 12168 12866 . + . gene_id "W7K_03740"; transcript_id "KOF00557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00557-1"; +contig41 ena CDS 12168 12863 . + 0 gene_id "W7K_03740"; transcript_id "KOF00557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00557"; +contig41 ena start_codon 12168 12170 . + 0 gene_id "W7K_03740"; transcript_id "KOF00557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 12864 12866 . + 0 gene_id "W7K_03740"; transcript_id "KOF00557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 13087 13893 . + . gene_id "W7K_03745"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 13087 13893 . + . gene_id "W7K_03745"; transcript_id "KOF00558"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 13087 13893 . + . gene_id "W7K_03745"; transcript_id "KOF00558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00558-1"; +contig41 ena CDS 13087 13890 . + 0 gene_id "W7K_03745"; transcript_id "KOF00558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00558"; +contig41 ena start_codon 13087 13089 . + 0 gene_id "W7K_03745"; transcript_id "KOF00558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 13891 13893 . + 0 gene_id "W7K_03745"; transcript_id "KOF00558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 14020 14895 . + . gene_id "W7K_03750"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 14020 14895 . + . gene_id "W7K_03750"; transcript_id "KOF00559"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 14020 14895 . + . gene_id "W7K_03750"; transcript_id "KOF00559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00559-1"; +contig41 ena CDS 14020 14892 . + 0 gene_id "W7K_03750"; transcript_id "KOF00559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00559"; +contig41 ena start_codon 14020 14022 . + 0 gene_id "W7K_03750"; transcript_id "KOF00559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 14893 14895 . + 0 gene_id "W7K_03750"; transcript_id "KOF00559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 15154 16692 . + . gene_id "W7K_03755"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 15154 16692 . + . gene_id "W7K_03755"; transcript_id "KOF00560"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 15154 16692 . + . gene_id "W7K_03755"; transcript_id "KOF00560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00560-1"; +contig41 ena CDS 15154 16689 . + 0 gene_id "W7K_03755"; transcript_id "KOF00560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00560"; +contig41 ena start_codon 15154 15156 . + 0 gene_id "W7K_03755"; transcript_id "KOF00560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 16690 16692 . + 0 gene_id "W7K_03755"; transcript_id "KOF00560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 16814 17542 . + . gene_id "W7K_03760"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 16814 17542 . + . gene_id "W7K_03760"; transcript_id "KOF00561"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 16814 17542 . + . gene_id "W7K_03760"; transcript_id "KOF00561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00561-1"; +contig41 ena CDS 16814 17539 . + 0 gene_id "W7K_03760"; transcript_id "KOF00561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00561"; +contig41 ena start_codon 16814 16816 . + 0 gene_id "W7K_03760"; transcript_id "KOF00561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 17540 17542 . + 0 gene_id "W7K_03760"; transcript_id "KOF00561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 17639 18193 . + . gene_id "W7K_03765"; gene_name "frr"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 17639 18193 . + . gene_id "W7K_03765"; transcript_id "KOF00562"; gene_name "frr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "frr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 17639 18193 . + . gene_id "W7K_03765"; transcript_id "KOF00562"; exon_number "1"; gene_name "frr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "frr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00562-1"; +contig41 ena CDS 17639 18190 . + 0 gene_id "W7K_03765"; transcript_id "KOF00562"; exon_number "1"; gene_name "frr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "frr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00562"; +contig41 ena start_codon 17639 17641 . + 0 gene_id "W7K_03765"; transcript_id "KOF00562"; exon_number "1"; gene_name "frr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "frr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 18191 18193 . + 0 gene_id "W7K_03765"; transcript_id "KOF00562"; exon_number "1"; gene_name "frr"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "frr-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 18199 18966 . + . gene_id "W7K_03770"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 18199 18966 . + . gene_id "W7K_03770"; transcript_id "KOF00563"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 18199 18966 . + . gene_id "W7K_03770"; transcript_id "KOF00563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00563-1"; +contig41 ena CDS 18199 18963 . + 0 gene_id "W7K_03770"; transcript_id "KOF00563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00563"; +contig41 ena start_codon 18199 18201 . + 0 gene_id "W7K_03770"; transcript_id "KOF00563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 18964 18966 . + 0 gene_id "W7K_03770"; transcript_id "KOF00563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 18963 19799 . + . gene_id "W7K_03775"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 18963 19799 . + . gene_id "W7K_03775"; transcript_id "KOF00564"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 18963 19799 . + . gene_id "W7K_03775"; transcript_id "KOF00564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00564-1"; +contig41 ena CDS 18963 19796 . + 0 gene_id "W7K_03775"; transcript_id "KOF00564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00564"; +contig41 ena start_codon 18963 18965 . + 0 gene_id "W7K_03775"; transcript_id "KOF00564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 19797 19799 . + 0 gene_id "W7K_03775"; transcript_id "KOF00564"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 19802 20992 . + . gene_id "W7K_03780"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 19802 20992 . + . gene_id "W7K_03780"; transcript_id "KOF00565"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 19802 20992 . + . gene_id "W7K_03780"; transcript_id "KOF00565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00565-1"; +contig41 ena CDS 19802 20989 . + 0 gene_id "W7K_03780"; transcript_id "KOF00565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00565"; +contig41 ena start_codon 19802 19804 . + 0 gene_id "W7K_03780"; transcript_id "KOF00565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 20990 20992 . + 0 gene_id "W7K_03780"; transcript_id "KOF00565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 21049 22407 . + . gene_id "W7K_03785"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 21049 22407 . + . gene_id "W7K_03785"; transcript_id "KOF00566"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 21049 22407 . + . gene_id "W7K_03785"; transcript_id "KOF00566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00566-1"; +contig41 ena CDS 21049 22404 . + 0 gene_id "W7K_03785"; transcript_id "KOF00566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00566"; +contig41 ena start_codon 21049 21051 . + 0 gene_id "W7K_03785"; transcript_id "KOF00566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 22405 22407 . + 0 gene_id "W7K_03785"; transcript_id "KOF00566"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 22482 24845 . + . gene_id "W7K_03790"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 22482 24845 . + . gene_id "W7K_03790"; transcript_id "KOF00567"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 22482 24845 . + . gene_id "W7K_03790"; transcript_id "KOF00567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00567-1"; +contig41 ena CDS 22482 24842 . + 0 gene_id "W7K_03790"; transcript_id "KOF00567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00567"; +contig41 ena start_codon 22482 22484 . + 0 gene_id "W7K_03790"; transcript_id "KOF00567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 24843 24845 . + 0 gene_id "W7K_03790"; transcript_id "KOF00567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 25280 26302 . + . gene_id "W7K_03795"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 25280 26302 . + . gene_id "W7K_03795"; transcript_id "KOF00568"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 25280 26302 . + . gene_id "W7K_03795"; transcript_id "KOF00568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00568-1"; +contig41 ena CDS 25280 26299 . + 0 gene_id "W7K_03795"; transcript_id "KOF00568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00568"; +contig41 ena start_codon 25280 25282 . + 0 gene_id "W7K_03795"; transcript_id "KOF00568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 26300 26302 . + 0 gene_id "W7K_03795"; transcript_id "KOF00568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 26299 26757 . + . gene_id "W7K_03800"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 26299 26757 . + . gene_id "W7K_03800"; transcript_id "KOF00569"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 26299 26757 . + . gene_id "W7K_03800"; transcript_id "KOF00569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00569-1"; +contig41 ena CDS 26299 26754 . + 0 gene_id "W7K_03800"; transcript_id "KOF00569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00569"; +contig41 ena start_codon 26299 26301 . + 0 gene_id "W7K_03800"; transcript_id "KOF00569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 26755 26757 . + 0 gene_id "W7K_03800"; transcript_id "KOF00569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 26774 27565 . + . gene_id "W7K_03805"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 26774 27565 . + . gene_id "W7K_03805"; transcript_id "KOF00570"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 26774 27565 . + . gene_id "W7K_03805"; transcript_id "KOF00570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00570-1"; +contig41 ena CDS 26774 27562 . + 0 gene_id "W7K_03805"; transcript_id "KOF00570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00570"; +contig41 ena start_codon 26774 26776 . + 0 gene_id "W7K_03805"; transcript_id "KOF00570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 27563 27565 . + 0 gene_id "W7K_03805"; transcript_id "KOF00570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 27562 28821 . + . gene_id "W7K_03810"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 27562 28821 . + . gene_id "W7K_03810"; transcript_id "KOF00571"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 27562 28821 . + . gene_id "W7K_03810"; transcript_id "KOF00571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00571-1"; +contig41 ena CDS 27562 28818 . + 0 gene_id "W7K_03810"; transcript_id "KOF00571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00571"; +contig41 ena start_codon 27562 27564 . + 0 gene_id "W7K_03810"; transcript_id "KOF00571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 28819 28821 . + 0 gene_id "W7K_03810"; transcript_id "KOF00571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 28818 29486 . + . gene_id "W7K_03815"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 28818 29486 . + . gene_id "W7K_03815"; transcript_id "KOF00572"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 28818 29486 . + . gene_id "W7K_03815"; transcript_id "KOF00572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00572-1"; +contig41 ena CDS 28818 29483 . + 0 gene_id "W7K_03815"; transcript_id "KOF00572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00572"; +contig41 ena start_codon 28818 28820 . + 0 gene_id "W7K_03815"; transcript_id "KOF00572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 29484 29486 . + 0 gene_id "W7K_03815"; transcript_id "KOF00572"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 29703 33293 . + . gene_id "W7K_03820"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 29703 33293 . + . gene_id "W7K_03820"; transcript_id "KOF00573"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 29703 33293 . + . gene_id "W7K_03820"; transcript_id "KOF00573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00573-1"; +contig41 ena CDS 29703 33290 . + 0 gene_id "W7K_03820"; transcript_id "KOF00573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00573"; +contig41 ena start_codon 29703 29705 . + 0 gene_id "W7K_03820"; transcript_id "KOF00573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 33291 33293 . + 0 gene_id "W7K_03820"; transcript_id "KOF00573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 33358 34227 . + . gene_id "W7K_03825"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 33358 34227 . + . gene_id "W7K_03825"; transcript_id "KOF00574"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 33358 34227 . + . gene_id "W7K_03825"; transcript_id "KOF00574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00574-1"; +contig41 ena CDS 33358 34224 . + 0 gene_id "W7K_03825"; transcript_id "KOF00574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00574"; +contig41 ena start_codon 33358 33360 . + 0 gene_id "W7K_03825"; transcript_id "KOF00574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 34225 34227 . + 0 gene_id "W7K_03825"; transcript_id "KOF00574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 34341 35300 . + . gene_id "W7K_03830"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 34341 35300 . + . gene_id "W7K_03830"; transcript_id "KOF00575"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 34341 35300 . + . gene_id "W7K_03830"; transcript_id "KOF00575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00575-1"; +contig41 ena CDS 34341 35297 . + 0 gene_id "W7K_03830"; transcript_id "KOF00575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00575"; +contig41 ena start_codon 34341 34343 . + 0 gene_id "W7K_03830"; transcript_id "KOF00575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 35298 35300 . + 0 gene_id "W7K_03830"; transcript_id "KOF00575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 35614 36069 . - . gene_id "W7K_03835"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 35614 36069 . - . gene_id "W7K_03835"; transcript_id "KOF00576"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 35614 36069 . - . gene_id "W7K_03835"; transcript_id "KOF00576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00576-1"; +contig41 ena CDS 35617 36069 . - 0 gene_id "W7K_03835"; transcript_id "KOF00576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00576"; +contig41 ena start_codon 36067 36069 . - 0 gene_id "W7K_03835"; transcript_id "KOF00576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 35614 35616 . - 0 gene_id "W7K_03835"; transcript_id "KOF00576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 36219 36809 . + . gene_id "W7K_03840"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 36219 36809 . + . gene_id "W7K_03840"; transcript_id "KOF00577"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 36219 36809 . + . gene_id "W7K_03840"; transcript_id "KOF00577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00577-1"; +contig41 ena CDS 36219 36806 . + 0 gene_id "W7K_03840"; transcript_id "KOF00577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00577"; +contig41 ena start_codon 36219 36221 . + 0 gene_id "W7K_03840"; transcript_id "KOF00577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 36807 36809 . + 0 gene_id "W7K_03840"; transcript_id "KOF00577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 36903 38210 . + . gene_id "W7K_03845"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 36903 38210 . + . gene_id "W7K_03845"; transcript_id "KOF00578"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 36903 38210 . + . gene_id "W7K_03845"; transcript_id "KOF00578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00578-1"; +contig41 ena CDS 36903 38207 . + 0 gene_id "W7K_03845"; transcript_id "KOF00578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00578"; +contig41 ena start_codon 36903 36905 . + 0 gene_id "W7K_03845"; transcript_id "KOF00578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 38208 38210 . + 0 gene_id "W7K_03845"; transcript_id "KOF00578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 38340 39329 . - . gene_id "W7K_03850"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 38340 39329 . - . gene_id "W7K_03850"; transcript_id "KOF00579"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 38340 39329 . - . gene_id "W7K_03850"; transcript_id "KOF00579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00579-1"; +contig41 ena CDS 38343 39329 . - 0 gene_id "W7K_03850"; transcript_id "KOF00579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00579"; +contig41 ena start_codon 39327 39329 . - 0 gene_id "W7K_03850"; transcript_id "KOF00579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 38340 38342 . - 0 gene_id "W7K_03850"; transcript_id "KOF00579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 39326 39691 . - . gene_id "W7K_03855"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 39326 39691 . - . gene_id "W7K_03855"; transcript_id "KOF00580"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 39326 39691 . - . gene_id "W7K_03855"; transcript_id "KOF00580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00580-1"; +contig41 ena CDS 39329 39691 . - 0 gene_id "W7K_03855"; transcript_id "KOF00580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00580"; +contig41 ena start_codon 39689 39691 . - 0 gene_id "W7K_03855"; transcript_id "KOF00580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 39326 39328 . - 0 gene_id "W7K_03855"; transcript_id "KOF00580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 39828 40730 . + . gene_id "W7K_03860"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 39828 40730 . + . gene_id "W7K_03860"; transcript_id "KOF00581"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 39828 40730 . + . gene_id "W7K_03860"; transcript_id "KOF00581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00581-1"; +contig41 ena CDS 39828 40727 . + 0 gene_id "W7K_03860"; transcript_id "KOF00581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00581"; +contig41 ena start_codon 39828 39830 . + 0 gene_id "W7K_03860"; transcript_id "KOF00581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 40728 40730 . + 0 gene_id "W7K_03860"; transcript_id "KOF00581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 41312 42184 . - . gene_id "W7K_03865"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 41312 42184 . - . gene_id "W7K_03865"; transcript_id "KOF00582"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 41312 42184 . - . gene_id "W7K_03865"; transcript_id "KOF00582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00582-1"; +contig41 ena CDS 41315 42184 . - 0 gene_id "W7K_03865"; transcript_id "KOF00582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00582"; +contig41 ena start_codon 42182 42184 . - 0 gene_id "W7K_03865"; transcript_id "KOF00582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 41312 41314 . - 0 gene_id "W7K_03865"; transcript_id "KOF00582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 42300 43244 . + . gene_id "W7K_03870"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 42300 43244 . + . gene_id "W7K_03870"; transcript_id "KOF00583"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 42300 43244 . + . gene_id "W7K_03870"; transcript_id "KOF00583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00583-1"; +contig41 ena CDS 42300 43241 . + 0 gene_id "W7K_03870"; transcript_id "KOF00583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00583"; +contig41 ena start_codon 42300 42302 . + 0 gene_id "W7K_03870"; transcript_id "KOF00583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 43242 43244 . + 0 gene_id "W7K_03870"; transcript_id "KOF00583"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 43313 43606 . + . gene_id "W7K_03875"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 43313 43606 . + . gene_id "W7K_03875"; transcript_id "KOF00584"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 43313 43606 . + . gene_id "W7K_03875"; transcript_id "KOF00584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00584-1"; +contig41 ena CDS 43313 43603 . + 0 gene_id "W7K_03875"; transcript_id "KOF00584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00584"; +contig41 ena start_codon 43313 43315 . + 0 gene_id "W7K_03875"; transcript_id "KOF00584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 43604 43606 . + 0 gene_id "W7K_03875"; transcript_id "KOF00584"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 43638 44453 . - . gene_id "W7K_03880"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 43638 44453 . - . gene_id "W7K_03880"; transcript_id "KOF00585"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 43638 44453 . - . gene_id "W7K_03880"; transcript_id "KOF00585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00585-1"; +contig41 ena CDS 43641 44453 . - 0 gene_id "W7K_03880"; transcript_id "KOF00585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00585"; +contig41 ena start_codon 44451 44453 . - 0 gene_id "W7K_03880"; transcript_id "KOF00585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 43638 43640 . - 0 gene_id "W7K_03880"; transcript_id "KOF00585"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 44450 44806 . - . gene_id "W7K_03885"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 44450 44806 . - . gene_id "W7K_03885"; transcript_id "KOF00586"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 44450 44806 . - . gene_id "W7K_03885"; transcript_id "KOF00586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00586-1"; +contig41 ena CDS 44453 44806 . - 0 gene_id "W7K_03885"; transcript_id "KOF00586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00586"; +contig41 ena start_codon 44804 44806 . - 0 gene_id "W7K_03885"; transcript_id "KOF00586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 44450 44452 . - 0 gene_id "W7K_03885"; transcript_id "KOF00586"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 44919 46727 . + . gene_id "W7K_03890"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 44919 46727 . + . gene_id "W7K_03890"; transcript_id "KOF00587"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 44919 46727 . + . gene_id "W7K_03890"; transcript_id "KOF00587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00587-1"; +contig41 ena CDS 44919 46724 . + 0 gene_id "W7K_03890"; transcript_id "KOF00587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00587"; +contig41 ena start_codon 44919 44921 . + 0 gene_id "W7K_03890"; transcript_id "KOF00587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 46725 46727 . + 0 gene_id "W7K_03890"; transcript_id "KOF00587"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 47213 48211 . + . gene_id "W7K_03895"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 47213 48211 . + . gene_id "W7K_03895"; transcript_id "KOF00588"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 47213 48211 . + . gene_id "W7K_03895"; transcript_id "KOF00588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00588-1"; +contig41 ena CDS 47213 48208 . + 0 gene_id "W7K_03895"; transcript_id "KOF00588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00588"; +contig41 ena start_codon 47213 47215 . + 0 gene_id "W7K_03895"; transcript_id "KOF00588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 48209 48211 . + 0 gene_id "W7K_03895"; transcript_id "KOF00588"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 48221 49432 . - . gene_id "W7K_03900"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 48221 49432 . - . gene_id "W7K_03900"; transcript_id "KOF00589"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 48221 49432 . - . gene_id "W7K_03900"; transcript_id "KOF00589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00589-1"; +contig41 ena CDS 48224 49432 . - 0 gene_id "W7K_03900"; transcript_id "KOF00589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00589"; +contig41 ena start_codon 49430 49432 . - 0 gene_id "W7K_03900"; transcript_id "KOF00589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 48221 48223 . - 0 gene_id "W7K_03900"; transcript_id "KOF00589"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 49429 51261 . - . gene_id "W7K_03905"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 49429 51261 . - . gene_id "W7K_03905"; transcript_id "KOF00590"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 49429 51261 . - . gene_id "W7K_03905"; transcript_id "KOF00590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00590-1"; +contig41 ena CDS 49432 51261 . - 0 gene_id "W7K_03905"; transcript_id "KOF00590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00590"; +contig41 ena start_codon 51259 51261 . - 0 gene_id "W7K_03905"; transcript_id "KOF00590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 49429 49431 . - 0 gene_id "W7K_03905"; transcript_id "KOF00590"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 51434 52993 . - . gene_id "W7K_03910"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 51434 52993 . - . gene_id "W7K_03910"; transcript_id "KOF00591"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 51434 52993 . - . gene_id "W7K_03910"; transcript_id "KOF00591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00591-1"; +contig41 ena CDS 51437 52993 . - 0 gene_id "W7K_03910"; transcript_id "KOF00591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00591"; +contig41 ena start_codon 52991 52993 . - 0 gene_id "W7K_03910"; transcript_id "KOF00591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 51434 51436 . - 0 gene_id "W7K_03910"; transcript_id "KOF00591"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 53104 53547 . + . gene_id "W7K_03915"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 53104 53547 . + . gene_id "W7K_03915"; transcript_id "KOF00592"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 53104 53547 . + . gene_id "W7K_03915"; transcript_id "KOF00592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00592-1"; +contig41 ena CDS 53104 53544 . + 0 gene_id "W7K_03915"; transcript_id "KOF00592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00592"; +contig41 ena start_codon 53104 53106 . + 0 gene_id "W7K_03915"; transcript_id "KOF00592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 53545 53547 . + 0 gene_id "W7K_03915"; transcript_id "KOF00592"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 53544 54362 . + . gene_id "W7K_03920"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 53544 54362 . + . gene_id "W7K_03920"; transcript_id "KOF00593"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 53544 54362 . + . gene_id "W7K_03920"; transcript_id "KOF00593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00593-1"; +contig41 ena CDS 53544 54359 . + 0 gene_id "W7K_03920"; transcript_id "KOF00593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00593"; +contig41 ena start_codon 53544 53546 . + 0 gene_id "W7K_03920"; transcript_id "KOF00593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 54360 54362 . + 0 gene_id "W7K_03920"; transcript_id "KOF00593"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 54397 55344 . + . gene_id "W7K_03925"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 54397 55344 . + . gene_id "W7K_03925"; transcript_id "KOF00594"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 54397 55344 . + . gene_id "W7K_03925"; transcript_id "KOF00594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00594-1"; +contig41 ena CDS 54397 55341 . + 0 gene_id "W7K_03925"; transcript_id "KOF00594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00594"; +contig41 ena start_codon 54397 54399 . + 0 gene_id "W7K_03925"; transcript_id "KOF00594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 55342 55344 . + 0 gene_id "W7K_03925"; transcript_id "KOF00594"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 55375 56535 . - . gene_id "W7K_03930"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 55375 56535 . - . gene_id "W7K_03930"; transcript_id "KOF00595"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 55375 56535 . - . gene_id "W7K_03930"; transcript_id "KOF00595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00595-1"; +contig41 ena CDS 55378 56535 . - 0 gene_id "W7K_03930"; transcript_id "KOF00595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00595"; +contig41 ena start_codon 56533 56535 . - 0 gene_id "W7K_03930"; transcript_id "KOF00595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 55375 55377 . - 0 gene_id "W7K_03930"; transcript_id "KOF00595"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 56657 57727 . - . gene_id "W7K_03935"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 56657 57727 . - . gene_id "W7K_03935"; transcript_id "KOF00596"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 56657 57727 . - . gene_id "W7K_03935"; transcript_id "KOF00596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00596-1"; +contig41 ena CDS 56660 57727 . - 0 gene_id "W7K_03935"; transcript_id "KOF00596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00596"; +contig41 ena start_codon 57725 57727 . - 0 gene_id "W7K_03935"; transcript_id "KOF00596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 56657 56659 . - 0 gene_id "W7K_03935"; transcript_id "KOF00596"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 57844 58566 . - . gene_id "W7K_03940"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 57844 58566 . - . gene_id "W7K_03940"; transcript_id "KOF00597"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 57844 58566 . - . gene_id "W7K_03940"; transcript_id "KOF00597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00597-1"; +contig41 ena CDS 57847 58566 . - 0 gene_id "W7K_03940"; transcript_id "KOF00597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00597"; +contig41 ena start_codon 58564 58566 . - 0 gene_id "W7K_03940"; transcript_id "KOF00597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 57844 57846 . - 0 gene_id "W7K_03940"; transcript_id "KOF00597"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 58601 60265 . - . gene_id "W7K_03945"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 58601 60265 . - . gene_id "W7K_03945"; transcript_id "KOF00598"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 58601 60265 . - . gene_id "W7K_03945"; transcript_id "KOF00598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00598-1"; +contig41 ena CDS 58604 60265 . - 0 gene_id "W7K_03945"; transcript_id "KOF00598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00598"; +contig41 ena start_codon 60263 60265 . - 0 gene_id "W7K_03945"; transcript_id "KOF00598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 58601 58603 . - 0 gene_id "W7K_03945"; transcript_id "KOF00598"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 60376 62799 . - . gene_id "W7K_03950"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 60376 62799 . - . gene_id "W7K_03950"; transcript_id "KOF00599"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 60376 62799 . - . gene_id "W7K_03950"; transcript_id "KOF00599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00599-1"; +contig41 ena CDS 60379 62799 . - 0 gene_id "W7K_03950"; transcript_id "KOF00599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00599"; +contig41 ena start_codon 62797 62799 . - 0 gene_id "W7K_03950"; transcript_id "KOF00599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 60376 60378 . - 0 gene_id "W7K_03950"; transcript_id "KOF00599"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 63018 64964 . - . gene_id "W7K_03955"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 63018 64964 . - . gene_id "W7K_03955"; transcript_id "KOF00600"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 63018 64964 . - . gene_id "W7K_03955"; transcript_id "KOF00600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00600-1"; +contig41 ena CDS 63021 64964 . - 0 gene_id "W7K_03955"; transcript_id "KOF00600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00600"; +contig41 ena start_codon 64962 64964 . - 0 gene_id "W7K_03955"; transcript_id "KOF00600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 63018 63020 . - 0 gene_id "W7K_03955"; transcript_id "KOF00600"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 65232 65453 . + . gene_id "W7K_03960"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 65232 65453 . + . gene_id "W7K_03960"; transcript_id "KOF00601"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 65232 65453 . + . gene_id "W7K_03960"; transcript_id "KOF00601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00601-1"; +contig41 ena CDS 65232 65450 . + 0 gene_id "W7K_03960"; transcript_id "KOF00601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00601"; +contig41 ena start_codon 65232 65234 . + 0 gene_id "W7K_03960"; transcript_id "KOF00601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 65451 65453 . + 0 gene_id "W7K_03960"; transcript_id "KOF00601"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 65465 66643 . - . gene_id "W7K_03965"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 65465 66643 . - . gene_id "W7K_03965"; transcript_id "KOF00602"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 65465 66643 . - . gene_id "W7K_03965"; transcript_id "KOF00602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00602-1"; +contig41 ena CDS 65468 66643 . - 0 gene_id "W7K_03965"; transcript_id "KOF00602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00602"; +contig41 ena start_codon 66641 66643 . - 0 gene_id "W7K_03965"; transcript_id "KOF00602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 65465 65467 . - 0 gene_id "W7K_03965"; transcript_id "KOF00602"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 66724 67113 . - . gene_id "W7K_03970"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 66724 67113 . - . gene_id "W7K_03970"; transcript_id "KOF00606"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 66724 67113 . - . gene_id "W7K_03970"; transcript_id "KOF00606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00606-1"; +contig41 ena CDS 66727 67113 . - 0 gene_id "W7K_03970"; transcript_id "KOF00606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00606"; +contig41 ena start_codon 67111 67113 . - 0 gene_id "W7K_03970"; transcript_id "KOF00606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 66724 66726 . - 0 gene_id "W7K_03970"; transcript_id "KOF00606"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 67125 67670 . - . gene_id "W7K_03975"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 67125 67670 . - . gene_id "W7K_03975"; transcript_id "KOF00603"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 67125 67670 . - . gene_id "W7K_03975"; transcript_id "KOF00603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00603-1"; +contig41 ena CDS 67128 67670 . - 0 gene_id "W7K_03975"; transcript_id "KOF00603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00603"; +contig41 ena start_codon 67668 67670 . - 0 gene_id "W7K_03975"; transcript_id "KOF00603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 67125 67127 . - 0 gene_id "W7K_03975"; transcript_id "KOF00603"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena gene 67729 68892 . - . gene_id "W7K_03980"; gene_source "ena"; gene_biotype "protein_coding"; +contig41 ena transcript 67729 68892 . - . gene_id "W7K_03980"; transcript_id "KOF00604"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena exon 67729 68892 . - . gene_id "W7K_03980"; transcript_id "KOF00604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00604-1"; +contig41 ena CDS 67732 68892 . - 0 gene_id "W7K_03980"; transcript_id "KOF00604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00604"; +contig41 ena start_codon 68890 68892 . - 0 gene_id "W7K_03980"; transcript_id "KOF00604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig41 ena stop_codon 67729 67731 . - 0 gene_id "W7K_03980"; transcript_id "KOF00604"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 264 1439 . + . gene_id "W7K_18165"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 264 1439 . + . gene_id "W7K_18165"; transcript_id "KOE97723"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 264 1439 . + . gene_id "W7K_18165"; transcript_id "KOE97723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97723-1"; +contig09 ena CDS 264 1436 . + 0 gene_id "W7K_18165"; transcript_id "KOE97723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97723"; +contig09 ena start_codon 264 266 . + 0 gene_id "W7K_18165"; transcript_id "KOE97723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 1437 1439 . + 0 gene_id "W7K_18165"; transcript_id "KOE97723"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 1436 2089 . + . gene_id "W7K_18170"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 1436 2089 . + . gene_id "W7K_18170"; transcript_id "KOE97724"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 1436 2089 . + . gene_id "W7K_18170"; transcript_id "KOE97724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97724-1"; +contig09 ena CDS 1436 2086 . + 0 gene_id "W7K_18170"; transcript_id "KOE97724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97724"; +contig09 ena start_codon 1436 1438 . + 0 gene_id "W7K_18170"; transcript_id "KOE97724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 2087 2089 . + 0 gene_id "W7K_18170"; transcript_id "KOE97724"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 2300 3766 . + . gene_id "W7K_18175"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 2300 3766 . + . gene_id "W7K_18175"; transcript_id "KOE97725"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 2300 3766 . + . gene_id "W7K_18175"; transcript_id "KOE97725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97725-1"; +contig09 ena CDS 2300 3763 . + 0 gene_id "W7K_18175"; transcript_id "KOE97725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97725"; +contig09 ena start_codon 2300 2302 . + 0 gene_id "W7K_18175"; transcript_id "KOE97725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 3764 3766 . + 0 gene_id "W7K_18175"; transcript_id "KOE97725"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 3963 4967 . + . gene_id "W7K_18180"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 3963 4967 . + . gene_id "W7K_18180"; transcript_id "KOE97726"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 3963 4967 . + . gene_id "W7K_18180"; transcript_id "KOE97726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97726-1"; +contig09 ena CDS 3963 4964 . + 0 gene_id "W7K_18180"; transcript_id "KOE97726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97726"; +contig09 ena start_codon 3963 3965 . + 0 gene_id "W7K_18180"; transcript_id "KOE97726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 4965 4967 . + 0 gene_id "W7K_18180"; transcript_id "KOE97726"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 5097 6245 . + . gene_id "W7K_18185"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 5097 6245 . + . gene_id "W7K_18185"; transcript_id "KOE97727"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 5097 6245 . + . gene_id "W7K_18185"; transcript_id "KOE97727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97727-1"; +contig09 ena CDS 5097 6242 . + 0 gene_id "W7K_18185"; transcript_id "KOE97727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97727"; +contig09 ena start_codon 5097 5099 . + 0 gene_id "W7K_18185"; transcript_id "KOE97727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 6243 6245 . + 0 gene_id "W7K_18185"; transcript_id "KOE97727"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 6338 6937 . - . gene_id "W7K_18190"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 6338 6937 . - . gene_id "W7K_18190"; transcript_id "KOE97728"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 6338 6937 . - . gene_id "W7K_18190"; transcript_id "KOE97728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97728-1"; +contig09 ena CDS 6341 6937 . - 0 gene_id "W7K_18190"; transcript_id "KOE97728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97728"; +contig09 ena start_codon 6935 6937 . - 0 gene_id "W7K_18190"; transcript_id "KOE97728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 6338 6340 . - 0 gene_id "W7K_18190"; transcript_id "KOE97728"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 7149 8108 . - . gene_id "W7K_18195"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 7149 8108 . - . gene_id "W7K_18195"; transcript_id "KOE97729"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 7149 8108 . - . gene_id "W7K_18195"; transcript_id "KOE97729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97729-1"; +contig09 ena CDS 7152 8108 . - 0 gene_id "W7K_18195"; transcript_id "KOE97729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97729"; +contig09 ena start_codon 8106 8108 . - 0 gene_id "W7K_18195"; transcript_id "KOE97729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 7149 7151 . - 0 gene_id "W7K_18195"; transcript_id "KOE97729"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 8316 9299 . + . gene_id "W7K_18200"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 8316 9299 . + . gene_id "W7K_18200"; transcript_id "KOE97730"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 8316 9299 . + . gene_id "W7K_18200"; transcript_id "KOE97730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97730-1"; +contig09 ena CDS 8316 9296 . + 0 gene_id "W7K_18200"; transcript_id "KOE97730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97730"; +contig09 ena start_codon 8316 8318 . + 0 gene_id "W7K_18200"; transcript_id "KOE97730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 9297 9299 . + 0 gene_id "W7K_18200"; transcript_id "KOE97730"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 9905 10336 . + . gene_id "W7K_18205"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 9905 10336 . + . gene_id "W7K_18205"; transcript_id "KOE97731"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 9905 10336 . + . gene_id "W7K_18205"; transcript_id "KOE97731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97731-1"; +contig09 ena CDS 9905 10333 . + 0 gene_id "W7K_18205"; transcript_id "KOE97731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97731"; +contig09 ena start_codon 9905 9907 . + 0 gene_id "W7K_18205"; transcript_id "KOE97731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 10334 10336 . + 0 gene_id "W7K_18205"; transcript_id "KOE97731"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 10409 12472 . + . gene_id "W7K_18210"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 10409 12472 . + . gene_id "W7K_18210"; transcript_id "KOE97732"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 10409 12472 . + . gene_id "W7K_18210"; transcript_id "KOE97732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97732-1"; +contig09 ena CDS 10409 12469 . + 0 gene_id "W7K_18210"; transcript_id "KOE97732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97732"; +contig09 ena start_codon 10409 10411 . + 0 gene_id "W7K_18210"; transcript_id "KOE97732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 12470 12472 . + 0 gene_id "W7K_18210"; transcript_id "KOE97732"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 12746 13852 . + . gene_id "W7K_18215"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 12746 13852 . + . gene_id "W7K_18215"; transcript_id "KOE97733"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 12746 13852 . + . gene_id "W7K_18215"; transcript_id "KOE97733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97733-1"; +contig09 ena CDS 12746 13849 . + 0 gene_id "W7K_18215"; transcript_id "KOE97733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97733"; +contig09 ena start_codon 12746 12748 . + 0 gene_id "W7K_18215"; transcript_id "KOE97733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 13850 13852 . + 0 gene_id "W7K_18215"; transcript_id "KOE97733"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 13849 16974 . + . gene_id "W7K_18220"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 13849 16974 . + . gene_id "W7K_18220"; transcript_id "KOE97734"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 13849 16974 . + . gene_id "W7K_18220"; transcript_id "KOE97734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97734-1"; +contig09 ena CDS 13849 16971 . + 0 gene_id "W7K_18220"; transcript_id "KOE97734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97734"; +contig09 ena start_codon 13849 13851 . + 0 gene_id "W7K_18220"; transcript_id "KOE97734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 16972 16974 . + 0 gene_id "W7K_18220"; transcript_id "KOE97734"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 16967 17506 . + . gene_id "W7K_18225"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 16967 17506 . + . gene_id "W7K_18225"; transcript_id "KOE97735"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 16967 17506 . + . gene_id "W7K_18225"; transcript_id "KOE97735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97735-1"; +contig09 ena CDS 16967 17503 . + 0 gene_id "W7K_18225"; transcript_id "KOE97735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97735"; +contig09 ena start_codon 16967 16969 . + 0 gene_id "W7K_18225"; transcript_id "KOE97735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 17504 17506 . + 0 gene_id "W7K_18225"; transcript_id "KOE97735"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 17687 19204 . + . gene_id "W7K_18230"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 17687 19204 . + . gene_id "W7K_18230"; transcript_id "KOE97736"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 17687 19204 . + . gene_id "W7K_18230"; transcript_id "KOE97736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97736-1"; +contig09 ena CDS 17687 19201 . + 0 gene_id "W7K_18230"; transcript_id "KOE97736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97736"; +contig09 ena start_codon 17687 17689 . + 0 gene_id "W7K_18230"; transcript_id "KOE97736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 19202 19204 . + 0 gene_id "W7K_18230"; transcript_id "KOE97736"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 19197 20030 . + . gene_id "W7K_18235"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 19197 20030 . + . gene_id "W7K_18235"; transcript_id "KOE97737"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 19197 20030 . + . gene_id "W7K_18235"; transcript_id "KOE97737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97737-1"; +contig09 ena CDS 19197 20027 . + 0 gene_id "W7K_18235"; transcript_id "KOE97737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97737"; +contig09 ena start_codon 19197 19199 . + 0 gene_id "W7K_18235"; transcript_id "KOE97737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 20028 20030 . + 0 gene_id "W7K_18235"; transcript_id "KOE97737"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 20215 21636 . - . gene_id "W7K_18240"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 20215 21636 . - . gene_id "W7K_18240"; transcript_id "KOE97738"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 20215 21636 . - . gene_id "W7K_18240"; transcript_id "KOE97738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97738-1"; +contig09 ena CDS 20218 21636 . - 0 gene_id "W7K_18240"; transcript_id "KOE97738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97738"; +contig09 ena start_codon 21634 21636 . - 0 gene_id "W7K_18240"; transcript_id "KOE97738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 20215 20217 . - 0 gene_id "W7K_18240"; transcript_id "KOE97738"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 21861 22265 . - . gene_id "W7K_18245"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 21861 22265 . - . gene_id "W7K_18245"; transcript_id "KOE97739"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 21861 22265 . - . gene_id "W7K_18245"; transcript_id "KOE97739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97739-1"; +contig09 ena CDS 21864 22265 . - 0 gene_id "W7K_18245"; transcript_id "KOE97739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97739"; +contig09 ena start_codon 22263 22265 . - 0 gene_id "W7K_18245"; transcript_id "KOE97739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 21861 21863 . - 0 gene_id "W7K_18245"; transcript_id "KOE97739"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 22321 23037 . - . gene_id "W7K_18250"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 22321 23037 . - . gene_id "W7K_18250"; transcript_id "KOE97740"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 22321 23037 . - . gene_id "W7K_18250"; transcript_id "KOE97740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97740-1"; +contig09 ena CDS 22324 23037 . - 0 gene_id "W7K_18250"; transcript_id "KOE97740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97740"; +contig09 ena start_codon 23035 23037 . - 0 gene_id "W7K_18250"; transcript_id "KOE97740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 22321 22323 . - 0 gene_id "W7K_18250"; transcript_id "KOE97740"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 23113 23394 . - . gene_id "W7K_18255"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 23113 23394 . - . gene_id "W7K_18255"; transcript_id "KOE97741"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 23113 23394 . - . gene_id "W7K_18255"; transcript_id "KOE97741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97741-1"; +contig09 ena CDS 23116 23394 . - 0 gene_id "W7K_18255"; transcript_id "KOE97741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97741"; +contig09 ena start_codon 23392 23394 . - 0 gene_id "W7K_18255"; transcript_id "KOE97741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 23113 23115 . - 0 gene_id "W7K_18255"; transcript_id "KOE97741"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 23573 23908 . + . gene_id "W7K_18260"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 23573 23908 . + . gene_id "W7K_18260"; transcript_id "KOE97742"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 23573 23908 . + . gene_id "W7K_18260"; transcript_id "KOE97742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97742-1"; +contig09 ena CDS 23573 23905 . + 0 gene_id "W7K_18260"; transcript_id "KOE97742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97742"; +contig09 ena start_codon 23573 23575 . + 0 gene_id "W7K_18260"; transcript_id "KOE97742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 23906 23908 . + 0 gene_id "W7K_18260"; transcript_id "KOE97742"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 24211 26058 . - . gene_id "W7K_18265"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 24211 26058 . - . gene_id "W7K_18265"; transcript_id "KOE97743"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 24211 26058 . - . gene_id "W7K_18265"; transcript_id "KOE97743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97743-1"; +contig09 ena CDS 24214 26058 . - 0 gene_id "W7K_18265"; transcript_id "KOE97743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97743"; +contig09 ena start_codon 26056 26058 . - 0 gene_id "W7K_18265"; transcript_id "KOE97743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 24211 24213 . - 0 gene_id "W7K_18265"; transcript_id "KOE97743"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 26086 26820 . - . gene_id "W7K_18270"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 26086 26820 . - . gene_id "W7K_18270"; transcript_id "KOE97744"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 26086 26820 . - . gene_id "W7K_18270"; transcript_id "KOE97744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97744-1"; +contig09 ena CDS 26089 26820 . - 0 gene_id "W7K_18270"; transcript_id "KOE97744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97744"; +contig09 ena start_codon 26818 26820 . - 0 gene_id "W7K_18270"; transcript_id "KOE97744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 26086 26088 . - 0 gene_id "W7K_18270"; transcript_id "KOE97744"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 26820 27614 . - . gene_id "W7K_18275"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 26820 27614 . - . gene_id "W7K_18275"; transcript_id "KOE97745"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 26820 27614 . - . gene_id "W7K_18275"; transcript_id "KOE97745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97745-1"; +contig09 ena CDS 26823 27614 . - 0 gene_id "W7K_18275"; transcript_id "KOE97745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97745"; +contig09 ena start_codon 27612 27614 . - 0 gene_id "W7K_18275"; transcript_id "KOE97745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 26820 26822 . - 0 gene_id "W7K_18275"; transcript_id "KOE97745"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 27695 27895 . - . gene_id "W7K_18280"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 27695 27895 . - . gene_id "W7K_18280"; transcript_id "KOE97746"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 27695 27895 . - . gene_id "W7K_18280"; transcript_id "KOE97746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97746-1"; +contig09 ena CDS 27698 27895 . - 0 gene_id "W7K_18280"; transcript_id "KOE97746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97746"; +contig09 ena start_codon 27893 27895 . - 0 gene_id "W7K_18280"; transcript_id "KOE97746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 27695 27697 . - 0 gene_id "W7K_18280"; transcript_id "KOE97746"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 28103 29956 . + . gene_id "W7K_18285"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 28103 29956 . + . gene_id "W7K_18285"; transcript_id "KOE97747"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 28103 29956 . + . gene_id "W7K_18285"; transcript_id "KOE97747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97747-1"; +contig09 ena CDS 28103 29953 . + 0 gene_id "W7K_18285"; transcript_id "KOE97747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97747"; +contig09 ena start_codon 28103 28105 . + 0 gene_id "W7K_18285"; transcript_id "KOE97747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 29954 29956 . + 0 gene_id "W7K_18285"; transcript_id "KOE97747"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 30085 30158 . + . gene_id "W7K_18290"; gene_source "ena"; gene_biotype "tRNA"; +contig09 ena transcript 30085 30158 . + . gene_id "W7K_18290"; transcript_id "EBT00051077609"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_18290"; transcript_source "ena"; transcript_biotype "tRNA"; +contig09 ena exon 30085 30158 . + . gene_id "W7K_18290"; transcript_id "EBT00051077609"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_18290"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_18290-1"; +contig09 ena gene 30412 31875 . + . gene_id "W7K_18295"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 30412 31875 . + . gene_id "W7K_18295"; transcript_id "KOE97780"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 30412 31875 . + . gene_id "W7K_18295"; transcript_id "KOE97780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97780-1"; +contig09 ena CDS 30412 31872 . + 0 gene_id "W7K_18295"; transcript_id "KOE97780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97780"; +contig09 ena start_codon 30412 30414 . + 0 gene_id "W7K_18295"; transcript_id "KOE97780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 31873 31875 . + 0 gene_id "W7K_18295"; transcript_id "KOE97780"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 32987 33559 . + . gene_id "W7K_18305"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 32987 33559 . + . gene_id "W7K_18305"; transcript_id "KOE97748"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 32987 33559 . + . gene_id "W7K_18305"; transcript_id "KOE97748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97748-1"; +contig09 ena CDS 32987 33556 . + 0 gene_id "W7K_18305"; transcript_id "KOE97748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97748"; +contig09 ena start_codon 32987 32989 . + 0 gene_id "W7K_18305"; transcript_id "KOE97748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 33557 33559 . + 0 gene_id "W7K_18305"; transcript_id "KOE97748"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 33973 36039 . + . gene_id "W7K_18310"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 33973 36039 . + . gene_id "W7K_18310"; transcript_id "KOE97749"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 33973 36039 . + . gene_id "W7K_18310"; transcript_id "KOE97749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97749-1"; +contig09 ena CDS 33973 36036 . + 0 gene_id "W7K_18310"; transcript_id "KOE97749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97749"; +contig09 ena start_codon 33973 33975 . + 0 gene_id "W7K_18310"; transcript_id "KOE97749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 36037 36039 . + 0 gene_id "W7K_18310"; transcript_id "KOE97749"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 36036 37280 . + . gene_id "W7K_18315"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 36036 37280 . + . gene_id "W7K_18315"; transcript_id "KOE97750"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 36036 37280 . + . gene_id "W7K_18315"; transcript_id "KOE97750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97750-1"; +contig09 ena CDS 36036 37277 . + 0 gene_id "W7K_18315"; transcript_id "KOE97750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97750"; +contig09 ena start_codon 36036 36038 . + 0 gene_id "W7K_18315"; transcript_id "KOE97750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 37278 37280 . + 0 gene_id "W7K_18315"; transcript_id "KOE97750"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 38102 38323 . + . gene_id "W7K_18320"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 38102 38323 . + . gene_id "W7K_18320"; transcript_id "KOE97751"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 38102 38323 . + . gene_id "W7K_18320"; transcript_id "KOE97751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97751-1"; +contig09 ena CDS 38102 38320 . + 0 gene_id "W7K_18320"; transcript_id "KOE97751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97751"; +contig09 ena start_codon 38102 38104 . + 0 gene_id "W7K_18320"; transcript_id "KOE97751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 38321 38323 . + 0 gene_id "W7K_18320"; transcript_id "KOE97751"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 38713 39450 . - . gene_id "W7K_18325"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 38713 39450 . - . gene_id "W7K_18325"; transcript_id "KOE97752"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 38713 39450 . - . gene_id "W7K_18325"; transcript_id "KOE97752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97752-1"; +contig09 ena CDS 38716 39450 . - 0 gene_id "W7K_18325"; transcript_id "KOE97752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97752"; +contig09 ena start_codon 39448 39450 . - 0 gene_id "W7K_18325"; transcript_id "KOE97752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 38713 38715 . - 0 gene_id "W7K_18325"; transcript_id "KOE97752"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 39745 40149 . + . gene_id "W7K_18330"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 39745 40149 . + . gene_id "W7K_18330"; transcript_id "KOE97753"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 39745 40149 . + . gene_id "W7K_18330"; transcript_id "KOE97753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97753-1"; +contig09 ena CDS 39745 40146 . + 0 gene_id "W7K_18330"; transcript_id "KOE97753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97753"; +contig09 ena start_codon 39745 39747 . + 0 gene_id "W7K_18330"; transcript_id "KOE97753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 40147 40149 . + 0 gene_id "W7K_18330"; transcript_id "KOE97753"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 40151 40930 . - . gene_id "W7K_18335"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 40151 40930 . - . gene_id "W7K_18335"; transcript_id "KOE97754"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 40151 40930 . - . gene_id "W7K_18335"; transcript_id "KOE97754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97754-1"; +contig09 ena CDS 40154 40930 . - 0 gene_id "W7K_18335"; transcript_id "KOE97754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97754"; +contig09 ena start_codon 40928 40930 . - 0 gene_id "W7K_18335"; transcript_id "KOE97754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 40151 40153 . - 0 gene_id "W7K_18335"; transcript_id "KOE97754"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 41094 42305 . + . gene_id "W7K_18340"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 41094 42305 . + . gene_id "W7K_18340"; transcript_id "KOE97755"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 41094 42305 . + . gene_id "W7K_18340"; transcript_id "KOE97755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97755-1"; +contig09 ena CDS 41094 42302 . + 0 gene_id "W7K_18340"; transcript_id "KOE97755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97755"; +contig09 ena start_codon 41094 41096 . + 0 gene_id "W7K_18340"; transcript_id "KOE97755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 42303 42305 . + 0 gene_id "W7K_18340"; transcript_id "KOE97755"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 42415 42837 . - . gene_id "W7K_18345"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 42415 42837 . - . gene_id "W7K_18345"; transcript_id "KOE97756"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 42415 42837 . - . gene_id "W7K_18345"; transcript_id "KOE97756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97756-1"; +contig09 ena CDS 42418 42837 . - 0 gene_id "W7K_18345"; transcript_id "KOE97756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97756"; +contig09 ena start_codon 42835 42837 . - 0 gene_id "W7K_18345"; transcript_id "KOE97756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 42415 42417 . - 0 gene_id "W7K_18345"; transcript_id "KOE97756"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 42917 43276 . - . gene_id "W7K_18350"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 42917 43276 . - . gene_id "W7K_18350"; transcript_id "KOE97757"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 42917 43276 . - . gene_id "W7K_18350"; transcript_id "KOE97757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97757-1"; +contig09 ena CDS 42920 43276 . - 0 gene_id "W7K_18350"; transcript_id "KOE97757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97757"; +contig09 ena start_codon 43274 43276 . - 0 gene_id "W7K_18350"; transcript_id "KOE97757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 42917 42919 . - 0 gene_id "W7K_18350"; transcript_id "KOE97757"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 43450 44328 . + . gene_id "W7K_18355"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 43450 44328 . + . gene_id "W7K_18355"; transcript_id "KOE97781"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 43450 44328 . + . gene_id "W7K_18355"; transcript_id "KOE97781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97781-1"; +contig09 ena CDS 43450 44325 . + 0 gene_id "W7K_18355"; transcript_id "KOE97781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97781"; +contig09 ena start_codon 43450 43452 . + 0 gene_id "W7K_18355"; transcript_id "KOE97781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 44326 44328 . + 0 gene_id "W7K_18355"; transcript_id "KOE97781"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 44575 45051 . + . gene_id "W7K_18360"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 44575 45051 . + . gene_id "W7K_18360"; transcript_id "KOE97758"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 44575 45051 . + . gene_id "W7K_18360"; transcript_id "KOE97758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97758-1"; +contig09 ena CDS 44575 45048 . + 0 gene_id "W7K_18360"; transcript_id "KOE97758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97758"; +contig09 ena start_codon 44575 44577 . + 0 gene_id "W7K_18360"; transcript_id "KOE97758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 45049 45051 . + 0 gene_id "W7K_18360"; transcript_id "KOE97758"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 45141 45614 . + . gene_id "W7K_18365"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 45141 45614 . + . gene_id "W7K_18365"; transcript_id "KOE97759"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 45141 45614 . + . gene_id "W7K_18365"; transcript_id "KOE97759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97759-1"; +contig09 ena CDS 45141 45611 . + 0 gene_id "W7K_18365"; transcript_id "KOE97759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97759"; +contig09 ena start_codon 45141 45143 . + 0 gene_id "W7K_18365"; transcript_id "KOE97759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 45612 45614 . + 0 gene_id "W7K_18365"; transcript_id "KOE97759"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 45623 46300 . + . gene_id "W7K_18370"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 45623 46300 . + . gene_id "W7K_18370"; transcript_id "KOE97760"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 45623 46300 . + . gene_id "W7K_18370"; transcript_id "KOE97760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97760-1"; +contig09 ena CDS 45623 46297 . + 0 gene_id "W7K_18370"; transcript_id "KOE97760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97760"; +contig09 ena start_codon 45623 45625 . + 0 gene_id "W7K_18370"; transcript_id "KOE97760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 46298 46300 . + 0 gene_id "W7K_18370"; transcript_id "KOE97760"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 46263 47630 . + . gene_id "W7K_18375"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 46263 47630 . + . gene_id "W7K_18375"; transcript_id "KOE97761"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 46263 47630 . + . gene_id "W7K_18375"; transcript_id "KOE97761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97761-1"; +contig09 ena CDS 46263 47627 . + 0 gene_id "W7K_18375"; transcript_id "KOE97761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97761"; +contig09 ena start_codon 46263 46265 . + 0 gene_id "W7K_18375"; transcript_id "KOE97761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 47628 47630 . + 0 gene_id "W7K_18375"; transcript_id "KOE97761"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 48112 48498 . + . gene_id "W7K_18380"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 48112 48498 . + . gene_id "W7K_18380"; transcript_id "KOE97762"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 48112 48498 . + . gene_id "W7K_18380"; transcript_id "KOE97762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97762-1"; +contig09 ena CDS 48112 48495 . + 0 gene_id "W7K_18380"; transcript_id "KOE97762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97762"; +contig09 ena start_codon 48112 48114 . + 0 gene_id "W7K_18380"; transcript_id "KOE97762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 48496 48498 . + 0 gene_id "W7K_18380"; transcript_id "KOE97762"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 48654 49265 . - . gene_id "W7K_18385"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 48654 49265 . - . gene_id "W7K_18385"; transcript_id "KOE97763"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 48654 49265 . - . gene_id "W7K_18385"; transcript_id "KOE97763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97763-1"; +contig09 ena CDS 48657 49265 . - 0 gene_id "W7K_18385"; transcript_id "KOE97763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97763"; +contig09 ena start_codon 49263 49265 . - 0 gene_id "W7K_18385"; transcript_id "KOE97763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 48654 48656 . - 0 gene_id "W7K_18385"; transcript_id "KOE97763"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 49277 50140 . - . gene_id "W7K_18390"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 49277 50140 . - . gene_id "W7K_18390"; transcript_id "KOE97764"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 49277 50140 . - . gene_id "W7K_18390"; transcript_id "KOE97764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97764-1"; +contig09 ena CDS 49280 50140 . - 0 gene_id "W7K_18390"; transcript_id "KOE97764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97764"; +contig09 ena start_codon 50138 50140 . - 0 gene_id "W7K_18390"; transcript_id "KOE97764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 49277 49279 . - 0 gene_id "W7K_18390"; transcript_id "KOE97764"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 50149 51408 . - . gene_id "W7K_18395"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 50149 51408 . - . gene_id "W7K_18395"; transcript_id "KOE97765"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 50149 51408 . - . gene_id "W7K_18395"; transcript_id "KOE97765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97765-1"; +contig09 ena CDS 50152 51408 . - 0 gene_id "W7K_18395"; transcript_id "KOE97765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97765"; +contig09 ena start_codon 51406 51408 . - 0 gene_id "W7K_18395"; transcript_id "KOE97765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 50149 50151 . - 0 gene_id "W7K_18395"; transcript_id "KOE97765"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 51770 52213 . + . gene_id "W7K_18400"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 51770 52213 . + . gene_id "W7K_18400"; transcript_id "KOE97766"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 51770 52213 . + . gene_id "W7K_18400"; transcript_id "KOE97766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97766-1"; +contig09 ena CDS 51770 52210 . + 0 gene_id "W7K_18400"; transcript_id "KOE97766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97766"; +contig09 ena start_codon 51770 51772 . + 0 gene_id "W7K_18400"; transcript_id "KOE97766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 52211 52213 . + 0 gene_id "W7K_18400"; transcript_id "KOE97766"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 52297 52689 . + . gene_id "W7K_18405"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 52297 52689 . + . gene_id "W7K_18405"; transcript_id "KOE97767"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 52297 52689 . + . gene_id "W7K_18405"; transcript_id "KOE97767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97767-1"; +contig09 ena CDS 52297 52686 . + 0 gene_id "W7K_18405"; transcript_id "KOE97767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97767"; +contig09 ena start_codon 52297 52299 . + 0 gene_id "W7K_18405"; transcript_id "KOE97767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 52687 52689 . + 0 gene_id "W7K_18405"; transcript_id "KOE97767"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 52703 54430 . + . gene_id "W7K_18410"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 52703 54430 . + . gene_id "W7K_18410"; transcript_id "KOE97768"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 52703 54430 . + . gene_id "W7K_18410"; transcript_id "KOE97768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97768-1"; +contig09 ena CDS 52703 54427 . + 0 gene_id "W7K_18410"; transcript_id "KOE97768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97768"; +contig09 ena start_codon 52703 52705 . + 0 gene_id "W7K_18410"; transcript_id "KOE97768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 54428 54430 . + 0 gene_id "W7K_18410"; transcript_id "KOE97768"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 54473 54769 . - . gene_id "W7K_18415"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 54473 54769 . - . gene_id "W7K_18415"; transcript_id "KOE97769"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 54473 54769 . - . gene_id "W7K_18415"; transcript_id "KOE97769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97769-1"; +contig09 ena CDS 54476 54769 . - 0 gene_id "W7K_18415"; transcript_id "KOE97769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97769"; +contig09 ena start_codon 54767 54769 . - 0 gene_id "W7K_18415"; transcript_id "KOE97769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 54473 54475 . - 0 gene_id "W7K_18415"; transcript_id "KOE97769"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 55045 56418 . - . gene_id "W7K_18420"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 55045 56418 . - . gene_id "W7K_18420"; transcript_id "KOE97770"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 55045 56418 . - . gene_id "W7K_18420"; transcript_id "KOE97770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97770-1"; +contig09 ena CDS 55048 56418 . - 0 gene_id "W7K_18420"; transcript_id "KOE97770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97770"; +contig09 ena start_codon 56416 56418 . - 0 gene_id "W7K_18420"; transcript_id "KOE97770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 55045 55047 . - 0 gene_id "W7K_18420"; transcript_id "KOE97770"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 56479 58092 . - . gene_id "W7K_18425"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 56479 58092 . - . gene_id "W7K_18425"; transcript_id "KOE97771"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 56479 58092 . - . gene_id "W7K_18425"; transcript_id "KOE97771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97771-1"; +contig09 ena CDS 56482 58092 . - 0 gene_id "W7K_18425"; transcript_id "KOE97771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97771"; +contig09 ena start_codon 58090 58092 . - 0 gene_id "W7K_18425"; transcript_id "KOE97771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 56479 56481 . - 0 gene_id "W7K_18425"; transcript_id "KOE97771"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 58498 59667 . + . gene_id "W7K_18430"; gene_name "sucC"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 58498 59667 . + . gene_id "W7K_18430"; transcript_id "KOE97772"; gene_name "sucC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 58498 59667 . + . gene_id "W7K_18430"; transcript_id "KOE97772"; exon_number "1"; gene_name "sucC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97772-1"; +contig09 ena CDS 58498 59664 . + 0 gene_id "W7K_18430"; transcript_id "KOE97772"; exon_number "1"; gene_name "sucC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97772"; +contig09 ena start_codon 58498 58500 . + 0 gene_id "W7K_18430"; transcript_id "KOE97772"; exon_number "1"; gene_name "sucC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 59665 59667 . + 0 gene_id "W7K_18430"; transcript_id "KOE97772"; exon_number "1"; gene_name "sucC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sucC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 59688 60563 . + . gene_id "W7K_18435"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 59688 60563 . + . gene_id "W7K_18435"; transcript_id "KOE97773"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 59688 60563 . + . gene_id "W7K_18435"; transcript_id "KOE97773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97773-1"; +contig09 ena CDS 59688 60560 . + 0 gene_id "W7K_18435"; transcript_id "KOE97773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97773"; +contig09 ena start_codon 59688 59690 . + 0 gene_id "W7K_18435"; transcript_id "KOE97773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 60561 60563 . + 0 gene_id "W7K_18435"; transcript_id "KOE97773"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 60788 62422 . + . gene_id "W7K_18440"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 60788 62422 . + . gene_id "W7K_18440"; transcript_id "KOE97782"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 60788 62422 . + . gene_id "W7K_18440"; transcript_id "KOE97782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97782-1"; +contig09 ena CDS 60788 62419 . + 0 gene_id "W7K_18440"; transcript_id "KOE97782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97782"; +contig09 ena start_codon 60788 60790 . + 0 gene_id "W7K_18440"; transcript_id "KOE97782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 62420 62422 . + 0 gene_id "W7K_18440"; transcript_id "KOE97782"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 62543 63745 . - . gene_id "W7K_18445"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 62543 63745 . - . gene_id "W7K_18445"; transcript_id "KOE97774"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 62543 63745 . - . gene_id "W7K_18445"; transcript_id "KOE97774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97774-1"; +contig09 ena CDS 62546 63745 . - 0 gene_id "W7K_18445"; transcript_id "KOE97774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97774"; +contig09 ena start_codon 63743 63745 . - 0 gene_id "W7K_18445"; transcript_id "KOE97774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 62543 62545 . - 0 gene_id "W7K_18445"; transcript_id "KOE97774"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 63936 64823 . - . gene_id "W7K_18450"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 63936 64823 . - . gene_id "W7K_18450"; transcript_id "KOE97775"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 63936 64823 . - . gene_id "W7K_18450"; transcript_id "KOE97775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97775-1"; +contig09 ena CDS 63939 64823 . - 0 gene_id "W7K_18450"; transcript_id "KOE97775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97775"; +contig09 ena start_codon 64821 64823 . - 0 gene_id "W7K_18450"; transcript_id "KOE97775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 63936 63938 . - 0 gene_id "W7K_18450"; transcript_id "KOE97775"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 64938 65927 . + . gene_id "W7K_18455"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 64938 65927 . + . gene_id "W7K_18455"; transcript_id "KOE97776"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 64938 65927 . + . gene_id "W7K_18455"; transcript_id "KOE97776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97776-1"; +contig09 ena CDS 64938 65924 . + 0 gene_id "W7K_18455"; transcript_id "KOE97776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97776"; +contig09 ena start_codon 64938 64940 . + 0 gene_id "W7K_18455"; transcript_id "KOE97776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 65925 65927 . + 0 gene_id "W7K_18455"; transcript_id "KOE97776"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 65927 66697 . + . gene_id "W7K_18460"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 65927 66697 . + . gene_id "W7K_18460"; transcript_id "KOE97777"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 65927 66697 . + . gene_id "W7K_18460"; transcript_id "KOE97777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97777-1"; +contig09 ena CDS 65927 66694 . + 0 gene_id "W7K_18460"; transcript_id "KOE97777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97777"; +contig09 ena start_codon 65927 65929 . + 0 gene_id "W7K_18460"; transcript_id "KOE97777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 66695 66697 . + 0 gene_id "W7K_18460"; transcript_id "KOE97777"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 66718 67224 . + . gene_id "W7K_18465"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 66718 67224 . + . gene_id "W7K_18465"; transcript_id "KOE97778"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 66718 67224 . + . gene_id "W7K_18465"; transcript_id "KOE97778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97778-1"; +contig09 ena CDS 66718 67221 . + 0 gene_id "W7K_18465"; transcript_id "KOE97778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97778"; +contig09 ena start_codon 66718 66720 . + 0 gene_id "W7K_18465"; transcript_id "KOE97778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 67222 67224 . + 0 gene_id "W7K_18465"; transcript_id "KOE97778"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena gene 67199 67636 . + . gene_id "W7K_18470"; gene_source "ena"; gene_biotype "protein_coding"; +contig09 ena transcript 67199 67636 . + . gene_id "W7K_18470"; transcript_id "KOE97779"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena exon 67199 67636 . + . gene_id "W7K_18470"; transcript_id "KOE97779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97779-1"; +contig09 ena CDS 67199 67633 . + 0 gene_id "W7K_18470"; transcript_id "KOE97779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97779"; +contig09 ena start_codon 67199 67201 . + 0 gene_id "W7K_18470"; transcript_id "KOE97779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig09 ena stop_codon 67634 67636 . + 0 gene_id "W7K_18470"; transcript_id "KOE97779"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 1 1360 . - . gene_id "W7K_04060"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 1 1360 . - . gene_id "W7K_04060"; transcript_id "KOF00478"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 1 1360 . - . gene_id "W7K_04060"; transcript_id "KOF00478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00478-1"; +contig39 ena CDS 1 1360 . - 0 gene_id "W7K_04060"; transcript_id "KOF00478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00478"; +contig39 ena start_codon 1358 1360 . - 0 gene_id "W7K_04060"; transcript_id "KOF00478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 1424 2266 . - . gene_id "W7K_04065"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 1424 2266 . - . gene_id "W7K_04065"; transcript_id "KOF00479"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 1424 2266 . - . gene_id "W7K_04065"; transcript_id "KOF00479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00479-1"; +contig39 ena CDS 1427 2266 . - 0 gene_id "W7K_04065"; transcript_id "KOF00479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00479"; +contig39 ena start_codon 2264 2266 . - 0 gene_id "W7K_04065"; transcript_id "KOF00479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 1424 1426 . - 0 gene_id "W7K_04065"; transcript_id "KOF00479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 2263 3195 . - . gene_id "W7K_04070"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 2263 3195 . - . gene_id "W7K_04070"; transcript_id "KOF00480"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 2263 3195 . - . gene_id "W7K_04070"; transcript_id "KOF00480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00480-1"; +contig39 ena CDS 2266 3195 . - 0 gene_id "W7K_04070"; transcript_id "KOF00480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00480"; +contig39 ena start_codon 3193 3195 . - 0 gene_id "W7K_04070"; transcript_id "KOF00480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 2263 2265 . - 0 gene_id "W7K_04070"; transcript_id "KOF00480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 3192 4328 . - . gene_id "W7K_04075"; gene_name "potG"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 3192 4328 . - . gene_id "W7K_04075"; transcript_id "KOF00481"; gene_name "potG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "potG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 3192 4328 . - . gene_id "W7K_04075"; transcript_id "KOF00481"; exon_number "1"; gene_name "potG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "potG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00481-1"; +contig39 ena CDS 3195 4328 . - 0 gene_id "W7K_04075"; transcript_id "KOF00481"; exon_number "1"; gene_name "potG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "potG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00481"; +contig39 ena start_codon 4326 4328 . - 0 gene_id "W7K_04075"; transcript_id "KOF00481"; exon_number "1"; gene_name "potG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "potG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 3192 3194 . - 0 gene_id "W7K_04075"; transcript_id "KOF00481"; exon_number "1"; gene_name "potG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "potG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 4602 6026 . + . gene_id "W7K_04080"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 4602 6026 . + . gene_id "W7K_04080"; transcript_id "KOF00482"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 4602 6026 . + . gene_id "W7K_04080"; transcript_id "KOF00482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00482-1"; +contig39 ena CDS 4602 6023 . + 0 gene_id "W7K_04080"; transcript_id "KOF00482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00482"; +contig39 ena start_codon 4602 4604 . + 0 gene_id "W7K_04080"; transcript_id "KOF00482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 6024 6026 . + 0 gene_id "W7K_04080"; transcript_id "KOF00482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 6047 7156 . - . gene_id "W7K_04085"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 6047 7156 . - . gene_id "W7K_04085"; transcript_id "KOF00483"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 6047 7156 . - . gene_id "W7K_04085"; transcript_id "KOF00483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00483-1"; +contig39 ena CDS 6050 7156 . - 0 gene_id "W7K_04085"; transcript_id "KOF00483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00483"; +contig39 ena start_codon 7154 7156 . - 0 gene_id "W7K_04085"; transcript_id "KOF00483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 6047 6049 . - 0 gene_id "W7K_04085"; transcript_id "KOF00483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 7248 8645 . - . gene_id "W7K_04090"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 7248 8645 . - . gene_id "W7K_04090"; transcript_id "KOF00484"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 7248 8645 . - . gene_id "W7K_04090"; transcript_id "KOF00484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00484-1"; +contig39 ena CDS 7251 8645 . - 0 gene_id "W7K_04090"; transcript_id "KOF00484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00484"; +contig39 ena start_codon 8643 8645 . - 0 gene_id "W7K_04090"; transcript_id "KOF00484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 7248 7250 . - 0 gene_id "W7K_04090"; transcript_id "KOF00484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 8642 9403 . - . gene_id "W7K_04095"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 8642 9403 . - . gene_id "W7K_04095"; transcript_id "KOF00485"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 8642 9403 . - . gene_id "W7K_04095"; transcript_id "KOF00485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00485-1"; +contig39 ena CDS 8645 9403 . - 0 gene_id "W7K_04095"; transcript_id "KOF00485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00485"; +contig39 ena start_codon 9401 9403 . - 0 gene_id "W7K_04095"; transcript_id "KOF00485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 8642 8644 . - 0 gene_id "W7K_04095"; transcript_id "KOF00485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 9565 10842 . + . gene_id "W7K_04100"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 9565 10842 . + . gene_id "W7K_04100"; transcript_id "KOF00486"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 9565 10842 . + . gene_id "W7K_04100"; transcript_id "KOF00486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00486-1"; +contig39 ena CDS 9565 10839 . + 0 gene_id "W7K_04100"; transcript_id "KOF00486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00486"; +contig39 ena start_codon 9565 9567 . + 0 gene_id "W7K_04100"; transcript_id "KOF00486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 10840 10842 . + 0 gene_id "W7K_04100"; transcript_id "KOF00486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 10893 12500 . + . gene_id "W7K_04105"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 10893 12500 . + . gene_id "W7K_04105"; transcript_id "KOF00487"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 10893 12500 . + . gene_id "W7K_04105"; transcript_id "KOF00487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00487-1"; +contig39 ena CDS 10893 12497 . + 0 gene_id "W7K_04105"; transcript_id "KOF00487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00487"; +contig39 ena start_codon 10893 10895 . + 0 gene_id "W7K_04105"; transcript_id "KOF00487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 12498 12500 . + 0 gene_id "W7K_04105"; transcript_id "KOF00487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 12686 14281 . + . gene_id "W7K_04110"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 12686 14281 . + . gene_id "W7K_04110"; transcript_id "KOF00488"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 12686 14281 . + . gene_id "W7K_04110"; transcript_id "KOF00488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00488-1"; +contig39 ena CDS 12686 14278 . + 0 gene_id "W7K_04110"; transcript_id "KOF00488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00488"; +contig39 ena start_codon 12686 12688 . + 0 gene_id "W7K_04110"; transcript_id "KOF00488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 14279 14281 . + 0 gene_id "W7K_04110"; transcript_id "KOF00488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 14390 14839 . - . gene_id "W7K_04115"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 14390 14839 . - . gene_id "W7K_04115"; transcript_id "KOF00530"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 14390 14839 . - . gene_id "W7K_04115"; transcript_id "KOF00530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00530-1"; +contig39 ena CDS 14393 14839 . - 0 gene_id "W7K_04115"; transcript_id "KOF00530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00530"; +contig39 ena start_codon 14837 14839 . - 0 gene_id "W7K_04115"; transcript_id "KOF00530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 14390 14392 . - 0 gene_id "W7K_04115"; transcript_id "KOF00530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 15155 16690 . + . gene_id "W7K_04120"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 15155 16690 . + . gene_id "W7K_04120"; transcript_id "KOF00489"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 15155 16690 . + . gene_id "W7K_04120"; transcript_id "KOF00489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00489-1"; +contig39 ena CDS 15155 16687 . + 0 gene_id "W7K_04120"; transcript_id "KOF00489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00489"; +contig39 ena start_codon 15155 15157 . + 0 gene_id "W7K_04120"; transcript_id "KOF00489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 16688 16690 . + 0 gene_id "W7K_04120"; transcript_id "KOF00489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 16792 18135 . + . gene_id "W7K_04125"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 16792 18135 . + . gene_id "W7K_04125"; transcript_id "KOF00531"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 16792 18135 . + . gene_id "W7K_04125"; transcript_id "KOF00531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00531-1"; +contig39 ena CDS 16792 18132 . + 0 gene_id "W7K_04125"; transcript_id "KOF00531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00531"; +contig39 ena start_codon 16792 16794 . + 0 gene_id "W7K_04125"; transcript_id "KOF00531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 18133 18135 . + 0 gene_id "W7K_04125"; transcript_id "KOF00531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 18221 18682 . + . gene_id "W7K_04130"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 18221 18682 . + . gene_id "W7K_04130"; transcript_id "KOF00490"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 18221 18682 . + . gene_id "W7K_04130"; transcript_id "KOF00490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00490-1"; +contig39 ena CDS 18221 18679 . + 0 gene_id "W7K_04130"; transcript_id "KOF00490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00490"; +contig39 ena start_codon 18221 18223 . + 0 gene_id "W7K_04130"; transcript_id "KOF00490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 18680 18682 . + 0 gene_id "W7K_04130"; transcript_id "KOF00490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 18663 19964 . - . gene_id "W7K_04135"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 18663 19964 . - . gene_id "W7K_04135"; transcript_id "KOF00532"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 18663 19964 . - . gene_id "W7K_04135"; transcript_id "KOF00532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00532-1"; +contig39 ena CDS 18666 19964 . - 0 gene_id "W7K_04135"; transcript_id "KOF00532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00532"; +contig39 ena start_codon 19962 19964 . - 0 gene_id "W7K_04135"; transcript_id "KOF00532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 18663 18665 . - 0 gene_id "W7K_04135"; transcript_id "KOF00532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 20112 20753 . + . gene_id "W7K_04140"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 20112 20753 . + . gene_id "W7K_04140"; transcript_id "KOF00491"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 20112 20753 . + . gene_id "W7K_04140"; transcript_id "KOF00491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00491-1"; +contig39 ena CDS 20112 20750 . + 0 gene_id "W7K_04140"; transcript_id "KOF00491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00491"; +contig39 ena start_codon 20112 20114 . + 0 gene_id "W7K_04140"; transcript_id "KOF00491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 20751 20753 . + 0 gene_id "W7K_04140"; transcript_id "KOF00491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 20899 22395 . - . gene_id "W7K_04145"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 20899 22395 . - . gene_id "W7K_04145"; transcript_id "KOF00492"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 20899 22395 . - . gene_id "W7K_04145"; transcript_id "KOF00492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00492-1"; +contig39 ena CDS 20902 22395 . - 0 gene_id "W7K_04145"; transcript_id "KOF00492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00492"; +contig39 ena start_codon 22393 22395 . - 0 gene_id "W7K_04145"; transcript_id "KOF00492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 20899 20901 . - 0 gene_id "W7K_04145"; transcript_id "KOF00492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 22500 23852 . + . gene_id "W7K_04150"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 22500 23852 . + . gene_id "W7K_04150"; transcript_id "KOF00493"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 22500 23852 . + . gene_id "W7K_04150"; transcript_id "KOF00493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00493-1"; +contig39 ena CDS 22500 23849 . + 0 gene_id "W7K_04150"; transcript_id "KOF00493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00493"; +contig39 ena start_codon 22500 22502 . + 0 gene_id "W7K_04150"; transcript_id "KOF00493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 23850 23852 . + 0 gene_id "W7K_04150"; transcript_id "KOF00493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 23916 24794 . + . gene_id "W7K_04155"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 23916 24794 . + . gene_id "W7K_04155"; transcript_id "KOF00494"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 23916 24794 . + . gene_id "W7K_04155"; transcript_id "KOF00494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00494-1"; +contig39 ena CDS 23916 24791 . + 0 gene_id "W7K_04155"; transcript_id "KOF00494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00494"; +contig39 ena start_codon 23916 23918 . + 0 gene_id "W7K_04155"; transcript_id "KOF00494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 24792 24794 . + 0 gene_id "W7K_04155"; transcript_id "KOF00494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 24919 26205 . + . gene_id "W7K_04160"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 24919 26205 . + . gene_id "W7K_04160"; transcript_id "KOF00495"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 24919 26205 . + . gene_id "W7K_04160"; transcript_id "KOF00495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00495-1"; +contig39 ena CDS 24919 26202 . + 0 gene_id "W7K_04160"; transcript_id "KOF00495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00495"; +contig39 ena start_codon 24919 24921 . + 0 gene_id "W7K_04160"; transcript_id "KOF00495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 26203 26205 . + 0 gene_id "W7K_04160"; transcript_id "KOF00495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 26477 28675 . + . gene_id "W7K_04165"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 26477 28675 . + . gene_id "W7K_04165"; transcript_id "KOF00496"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 26477 28675 . + . gene_id "W7K_04165"; transcript_id "KOF00496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00496-1"; +contig39 ena CDS 26477 28672 . + 0 gene_id "W7K_04165"; transcript_id "KOF00496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00496"; +contig39 ena start_codon 26477 26479 . + 0 gene_id "W7K_04165"; transcript_id "KOF00496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 28673 28675 . + 0 gene_id "W7K_04165"; transcript_id "KOF00496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 28782 29096 . + . gene_id "W7K_04170"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 28782 29096 . + . gene_id "W7K_04170"; transcript_id "KOF00497"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 28782 29096 . + . gene_id "W7K_04170"; transcript_id "KOF00497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00497-1"; +contig39 ena CDS 28782 29093 . + 0 gene_id "W7K_04170"; transcript_id "KOF00497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00497"; +contig39 ena start_codon 28782 28784 . + 0 gene_id "W7K_04170"; transcript_id "KOF00497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 29094 29096 . + 0 gene_id "W7K_04170"; transcript_id "KOF00497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 29093 30721 . + . gene_id "W7K_04175"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 29093 30721 . + . gene_id "W7K_04175"; transcript_id "KOF00498"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 29093 30721 . + . gene_id "W7K_04175"; transcript_id "KOF00498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00498-1"; +contig39 ena CDS 29093 30718 . + 0 gene_id "W7K_04175"; transcript_id "KOF00498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00498"; +contig39 ena start_codon 29093 29095 . + 0 gene_id "W7K_04175"; transcript_id "KOF00498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 30719 30721 . + 0 gene_id "W7K_04175"; transcript_id "KOF00498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 30718 31047 . + . gene_id "W7K_04180"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 30718 31047 . + . gene_id "W7K_04180"; transcript_id "KOF00499"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 30718 31047 . + . gene_id "W7K_04180"; transcript_id "KOF00499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00499-1"; +contig39 ena CDS 30718 31044 . + 0 gene_id "W7K_04180"; transcript_id "KOF00499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00499"; +contig39 ena start_codon 30718 30720 . + 0 gene_id "W7K_04180"; transcript_id "KOF00499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 31045 31047 . + 0 gene_id "W7K_04180"; transcript_id "KOF00499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 31119 33257 . - . gene_id "W7K_04185"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 31119 33257 . - . gene_id "W7K_04185"; transcript_id "KOF00500"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 31119 33257 . - . gene_id "W7K_04185"; transcript_id "KOF00500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00500-1"; +contig39 ena CDS 31122 33257 . - 0 gene_id "W7K_04185"; transcript_id "KOF00500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00500"; +contig39 ena start_codon 33255 33257 . - 0 gene_id "W7K_04185"; transcript_id "KOF00500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 31119 31121 . - 0 gene_id "W7K_04185"; transcript_id "KOF00500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 33403 33930 . - . gene_id "W7K_04190"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 33403 33930 . - . gene_id "W7K_04190"; transcript_id "KOF00501"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 33403 33930 . - . gene_id "W7K_04190"; transcript_id "KOF00501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00501-1"; +contig39 ena CDS 33406 33930 . - 0 gene_id "W7K_04190"; transcript_id "KOF00501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00501"; +contig39 ena start_codon 33928 33930 . - 0 gene_id "W7K_04190"; transcript_id "KOF00501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 33403 33405 . - 0 gene_id "W7K_04190"; transcript_id "KOF00501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 34003 34569 . + . gene_id "W7K_04195"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 34003 34569 . + . gene_id "W7K_04195"; transcript_id "KOF00502"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 34003 34569 . + . gene_id "W7K_04195"; transcript_id "KOF00502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00502-1"; +contig39 ena CDS 34003 34566 . + 0 gene_id "W7K_04195"; transcript_id "KOF00502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00502"; +contig39 ena start_codon 34003 34005 . + 0 gene_id "W7K_04195"; transcript_id "KOF00502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 34567 34569 . + 0 gene_id "W7K_04195"; transcript_id "KOF00502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 34955 35857 . - . gene_id "W7K_04200"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 34955 35857 . - . gene_id "W7K_04200"; transcript_id "KOF00503"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 34955 35857 . - . gene_id "W7K_04200"; transcript_id "KOF00503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00503-1"; +contig39 ena CDS 34958 35857 . - 0 gene_id "W7K_04200"; transcript_id "KOF00503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00503"; +contig39 ena start_codon 35855 35857 . - 0 gene_id "W7K_04200"; transcript_id "KOF00503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 34955 34957 . - 0 gene_id "W7K_04200"; transcript_id "KOF00503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 35854 36657 . - . gene_id "W7K_04205"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 35854 36657 . - . gene_id "W7K_04205"; transcript_id "KOF00504"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 35854 36657 . - . gene_id "W7K_04205"; transcript_id "KOF00504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00504-1"; +contig39 ena CDS 35857 36657 . - 0 gene_id "W7K_04205"; transcript_id "KOF00504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00504"; +contig39 ena start_codon 36655 36657 . - 0 gene_id "W7K_04205"; transcript_id "KOF00504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 35854 35856 . - 0 gene_id "W7K_04205"; transcript_id "KOF00504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 36794 37495 . - . gene_id "W7K_04210"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 36794 37495 . - . gene_id "W7K_04210"; transcript_id "KOF00505"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 36794 37495 . - . gene_id "W7K_04210"; transcript_id "KOF00505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00505-1"; +contig39 ena CDS 36797 37495 . - 0 gene_id "W7K_04210"; transcript_id "KOF00505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00505"; +contig39 ena start_codon 37493 37495 . - 0 gene_id "W7K_04210"; transcript_id "KOF00505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 36794 36796 . - 0 gene_id "W7K_04210"; transcript_id "KOF00505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 37663 38445 . + . gene_id "W7K_04215"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 37663 38445 . + . gene_id "W7K_04215"; transcript_id "KOF00506"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 37663 38445 . + . gene_id "W7K_04215"; transcript_id "KOF00506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00506-1"; +contig39 ena CDS 37663 38442 . + 0 gene_id "W7K_04215"; transcript_id "KOF00506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00506"; +contig39 ena start_codon 37663 37665 . + 0 gene_id "W7K_04215"; transcript_id "KOF00506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 38443 38445 . + 0 gene_id "W7K_04215"; transcript_id "KOF00506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 38450 38803 . + . gene_id "W7K_04220"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 38450 38803 . + . gene_id "W7K_04220"; transcript_id "KOF00507"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 38450 38803 . + . gene_id "W7K_04220"; transcript_id "KOF00507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00507-1"; +contig39 ena CDS 38450 38800 . + 0 gene_id "W7K_04220"; transcript_id "KOF00507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00507"; +contig39 ena start_codon 38450 38452 . + 0 gene_id "W7K_04220"; transcript_id "KOF00507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 38801 38803 . + 0 gene_id "W7K_04220"; transcript_id "KOF00507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 38803 39492 . + . gene_id "W7K_04225"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 38803 39492 . + . gene_id "W7K_04225"; transcript_id "KOF00508"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 38803 39492 . + . gene_id "W7K_04225"; transcript_id "KOF00508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00508-1"; +contig39 ena CDS 38803 39489 . + 0 gene_id "W7K_04225"; transcript_id "KOF00508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00508"; +contig39 ena start_codon 38803 38805 . + 0 gene_id "W7K_04225"; transcript_id "KOF00508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 39490 39492 . + 0 gene_id "W7K_04225"; transcript_id "KOF00508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 39689 40900 . + . gene_id "W7K_04230"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 39689 40900 . + . gene_id "W7K_04230"; transcript_id "KOF00509"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 39689 40900 . + . gene_id "W7K_04230"; transcript_id "KOF00509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00509-1"; +contig39 ena CDS 39689 40897 . + 0 gene_id "W7K_04230"; transcript_id "KOF00509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00509"; +contig39 ena start_codon 39689 39691 . + 0 gene_id "W7K_04230"; transcript_id "KOF00509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 40898 40900 . + 0 gene_id "W7K_04230"; transcript_id "KOF00509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 41123 42139 . + . gene_id "W7K_04235"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 41123 42139 . + . gene_id "W7K_04235"; transcript_id "KOF00510"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 41123 42139 . + . gene_id "W7K_04235"; transcript_id "KOF00510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00510-1"; +contig39 ena CDS 41123 42136 . + 0 gene_id "W7K_04235"; transcript_id "KOF00510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00510"; +contig39 ena start_codon 41123 41125 . + 0 gene_id "W7K_04235"; transcript_id "KOF00510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 42137 42139 . + 0 gene_id "W7K_04235"; transcript_id "KOF00510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 42551 43639 . + . gene_id "W7K_04240"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 42551 43639 . + . gene_id "W7K_04240"; transcript_id "KOF00511"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 42551 43639 . + . gene_id "W7K_04240"; transcript_id "KOF00511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00511-1"; +contig39 ena CDS 42551 43636 . + 0 gene_id "W7K_04240"; transcript_id "KOF00511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00511"; +contig39 ena start_codon 42551 42553 . + 0 gene_id "W7K_04240"; transcript_id "KOF00511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 43637 43639 . + 0 gene_id "W7K_04240"; transcript_id "KOF00511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 43722 44690 . + . gene_id "W7K_04245"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 43722 44690 . + . gene_id "W7K_04245"; transcript_id "KOF00512"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 43722 44690 . + . gene_id "W7K_04245"; transcript_id "KOF00512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00512-1"; +contig39 ena CDS 43722 44687 . + 0 gene_id "W7K_04245"; transcript_id "KOF00512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00512"; +contig39 ena start_codon 43722 43724 . + 0 gene_id "W7K_04245"; transcript_id "KOF00512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 44688 44690 . + 0 gene_id "W7K_04245"; transcript_id "KOF00512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 44690 45553 . + . gene_id "W7K_04250"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 44690 45553 . + . gene_id "W7K_04250"; transcript_id "KOF00513"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 44690 45553 . + . gene_id "W7K_04250"; transcript_id "KOF00513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00513-1"; +contig39 ena CDS 44690 45550 . + 0 gene_id "W7K_04250"; transcript_id "KOF00513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00513"; +contig39 ena start_codon 44690 44692 . + 0 gene_id "W7K_04250"; transcript_id "KOF00513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 45551 45553 . + 0 gene_id "W7K_04250"; transcript_id "KOF00513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 45573 46403 . + . gene_id "W7K_04255"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 45573 46403 . + . gene_id "W7K_04255"; transcript_id "KOF00514"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 45573 46403 . + . gene_id "W7K_04255"; transcript_id "KOF00514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00514-1"; +contig39 ena CDS 45573 46400 . + 0 gene_id "W7K_04255"; transcript_id "KOF00514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00514"; +contig39 ena start_codon 45573 45575 . + 0 gene_id "W7K_04255"; transcript_id "KOF00514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 46401 46403 . + 0 gene_id "W7K_04255"; transcript_id "KOF00514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 46480 47187 . + . gene_id "W7K_04260"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 46480 47187 . + . gene_id "W7K_04260"; transcript_id "KOF00515"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 46480 47187 . + . gene_id "W7K_04260"; transcript_id "KOF00515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00515-1"; +contig39 ena CDS 46480 47184 . + 0 gene_id "W7K_04260"; transcript_id "KOF00515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00515"; +contig39 ena start_codon 46480 46482 . + 0 gene_id "W7K_04260"; transcript_id "KOF00515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 47185 47187 . + 0 gene_id "W7K_04260"; transcript_id "KOF00515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 47447 47803 . + . gene_id "W7K_04265"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 47447 47803 . + . gene_id "W7K_04265"; transcript_id "KOF00516"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 47447 47803 . + . gene_id "W7K_04265"; transcript_id "KOF00516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00516-1"; +contig39 ena CDS 47447 47800 . + 0 gene_id "W7K_04265"; transcript_id "KOF00516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00516"; +contig39 ena start_codon 47447 47449 . + 0 gene_id "W7K_04265"; transcript_id "KOF00516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 47801 47803 . + 0 gene_id "W7K_04265"; transcript_id "KOF00516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 47790 48665 . + . gene_id "W7K_04270"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 47790 48665 . + . gene_id "W7K_04270"; transcript_id "KOF00517"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 47790 48665 . + . gene_id "W7K_04270"; transcript_id "KOF00517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00517-1"; +contig39 ena CDS 47790 48662 . + 0 gene_id "W7K_04270"; transcript_id "KOF00517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00517"; +contig39 ena start_codon 47790 47792 . + 0 gene_id "W7K_04270"; transcript_id "KOF00517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 48663 48665 . + 0 gene_id "W7K_04270"; transcript_id "KOF00517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 48658 49413 . + . gene_id "W7K_04275"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 48658 49413 . + . gene_id "W7K_04275"; transcript_id "KOF00518"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 48658 49413 . + . gene_id "W7K_04275"; transcript_id "KOF00518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00518-1"; +contig39 ena CDS 48658 49410 . + 0 gene_id "W7K_04275"; transcript_id "KOF00518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00518"; +contig39 ena start_codon 48658 48660 . + 0 gene_id "W7K_04275"; transcript_id "KOF00518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 49411 49413 . + 0 gene_id "W7K_04275"; transcript_id "KOF00518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 49440 49961 . + . gene_id "W7K_04280"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 49440 49961 . + . gene_id "W7K_04280"; transcript_id "KOF00519"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 49440 49961 . + . gene_id "W7K_04280"; transcript_id "KOF00519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00519-1"; +contig39 ena CDS 49440 49958 . + 0 gene_id "W7K_04280"; transcript_id "KOF00519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00519"; +contig39 ena start_codon 49440 49442 . + 0 gene_id "W7K_04280"; transcript_id "KOF00519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 49959 49961 . + 0 gene_id "W7K_04280"; transcript_id "KOF00519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 50196 50780 . + . gene_id "W7K_04285"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 50196 50780 . + . gene_id "W7K_04285"; transcript_id "KOF00520"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 50196 50780 . + . gene_id "W7K_04285"; transcript_id "KOF00520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00520-1"; +contig39 ena CDS 50196 50777 . + 0 gene_id "W7K_04285"; transcript_id "KOF00520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00520"; +contig39 ena start_codon 50196 50198 . + 0 gene_id "W7K_04285"; transcript_id "KOF00520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 50778 50780 . + 0 gene_id "W7K_04285"; transcript_id "KOF00520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 51192 54218 . - . gene_id "W7K_04290"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 51192 54218 . - . gene_id "W7K_04290"; transcript_id "KOF00521"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 51192 54218 . - . gene_id "W7K_04290"; transcript_id "KOF00521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00521-1"; +contig39 ena CDS 51195 54218 . - 0 gene_id "W7K_04290"; transcript_id "KOF00521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00521"; +contig39 ena start_codon 54216 54218 . - 0 gene_id "W7K_04290"; transcript_id "KOF00521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 51192 51194 . - 0 gene_id "W7K_04290"; transcript_id "KOF00521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 54396 55805 . - . gene_id "W7K_04295"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 54396 55805 . - . gene_id "W7K_04295"; transcript_id "KOF00522"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 54396 55805 . - . gene_id "W7K_04295"; transcript_id "KOF00522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00522-1"; +contig39 ena CDS 54399 55805 . - 0 gene_id "W7K_04295"; transcript_id "KOF00522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00522"; +contig39 ena start_codon 55803 55805 . - 0 gene_id "W7K_04295"; transcript_id "KOF00522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 54396 54398 . - 0 gene_id "W7K_04295"; transcript_id "KOF00522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 55812 56540 . - . gene_id "W7K_04300"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 55812 56540 . - . gene_id "W7K_04300"; transcript_id "KOF00523"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 55812 56540 . - . gene_id "W7K_04300"; transcript_id "KOF00523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00523-1"; +contig39 ena CDS 55815 56540 . - 0 gene_id "W7K_04300"; transcript_id "KOF00523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00523"; +contig39 ena start_codon 56538 56540 . - 0 gene_id "W7K_04300"; transcript_id "KOF00523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 55812 55814 . - 0 gene_id "W7K_04300"; transcript_id "KOF00523"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 56745 57986 . + . gene_id "W7K_04305"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 56745 57986 . + . gene_id "W7K_04305"; transcript_id "KOF00524"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 56745 57986 . + . gene_id "W7K_04305"; transcript_id "KOF00524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00524-1"; +contig39 ena CDS 56745 57983 . + 0 gene_id "W7K_04305"; transcript_id "KOF00524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00524"; +contig39 ena start_codon 56745 56747 . + 0 gene_id "W7K_04305"; transcript_id "KOF00524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 57984 57986 . + 0 gene_id "W7K_04305"; transcript_id "KOF00524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 57983 59941 . + . gene_id "W7K_04310"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 57983 59941 . + . gene_id "W7K_04310"; transcript_id "KOF00525"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 57983 59941 . + . gene_id "W7K_04310"; transcript_id "KOF00525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00525-1"; +contig39 ena CDS 57983 59938 . + 0 gene_id "W7K_04310"; transcript_id "KOF00525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00525"; +contig39 ena start_codon 57983 57985 . + 0 gene_id "W7K_04310"; transcript_id "KOF00525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 59939 59941 . + 0 gene_id "W7K_04310"; transcript_id "KOF00525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 59938 61377 . + . gene_id "W7K_04315"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 59938 61377 . + . gene_id "W7K_04315"; transcript_id "KOF00526"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 59938 61377 . + . gene_id "W7K_04315"; transcript_id "KOF00526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00526-1"; +contig39 ena CDS 59938 61374 . + 0 gene_id "W7K_04315"; transcript_id "KOF00526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00526"; +contig39 ena start_codon 59938 59940 . + 0 gene_id "W7K_04315"; transcript_id "KOF00526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 61375 61377 . + 0 gene_id "W7K_04315"; transcript_id "KOF00526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 61451 62194 . - . gene_id "W7K_04320"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 61451 62194 . - . gene_id "W7K_04320"; transcript_id "KOF00527"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 61451 62194 . - . gene_id "W7K_04320"; transcript_id "KOF00527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00527-1"; +contig39 ena CDS 61454 62194 . - 0 gene_id "W7K_04320"; transcript_id "KOF00527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00527"; +contig39 ena start_codon 62192 62194 . - 0 gene_id "W7K_04320"; transcript_id "KOF00527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 61451 61453 . - 0 gene_id "W7K_04320"; transcript_id "KOF00527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 62349 62831 . - . gene_id "W7K_04325"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 62349 62831 . - . gene_id "W7K_04325"; transcript_id "KOF00528"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 62349 62831 . - . gene_id "W7K_04325"; transcript_id "KOF00528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00528-1"; +contig39 ena CDS 62352 62831 . - 0 gene_id "W7K_04325"; transcript_id "KOF00528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00528"; +contig39 ena start_codon 62829 62831 . - 0 gene_id "W7K_04325"; transcript_id "KOF00528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 62349 62351 . - 0 gene_id "W7K_04325"; transcript_id "KOF00528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 62951 65410 . - . gene_id "W7K_04330"; gene_source "ena"; gene_biotype "protein_coding"; +contig39 ena transcript 62951 65410 . - . gene_id "W7K_04330"; transcript_id "KOF00529"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena exon 62951 65410 . - . gene_id "W7K_04330"; transcript_id "KOF00529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00529-1"; +contig39 ena CDS 62954 65410 . - 0 gene_id "W7K_04330"; transcript_id "KOF00529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00529"; +contig39 ena start_codon 65408 65410 . - 0 gene_id "W7K_04330"; transcript_id "KOF00529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena stop_codon 62951 62953 . - 0 gene_id "W7K_04330"; transcript_id "KOF00529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig39 ena gene 65539 65623 . + . gene_id "W7K_04335"; gene_source "ena"; gene_biotype "tRNA"; +contig39 ena transcript 65539 65623 . + . gene_id "W7K_04335"; transcript_id "EBT00051077656"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04335"; transcript_source "ena"; transcript_biotype "tRNA"; +contig39 ena exon 65539 65623 . + . gene_id "W7K_04335"; transcript_id "EBT00051077656"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_04335"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_04335-1"; +contig03 ena gene 510 1499 . + . gene_id "W7K_20395"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 510 1499 . + . gene_id "W7K_20395"; transcript_id "KOE97290"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 510 1499 . + . gene_id "W7K_20395"; transcript_id "KOE97290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97290-1"; +contig03 ena CDS 510 1496 . + 0 gene_id "W7K_20395"; transcript_id "KOE97290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97290"; +contig03 ena start_codon 510 512 . + 0 gene_id "W7K_20395"; transcript_id "KOE97290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 1497 1499 . + 0 gene_id "W7K_20395"; transcript_id "KOE97290"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 1514 2197 . + . gene_id "W7K_20400"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 1514 2197 . + . gene_id "W7K_20400"; transcript_id "KOE97291"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 1514 2197 . + . gene_id "W7K_20400"; transcript_id "KOE97291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97291-1"; +contig03 ena CDS 1514 2194 . + 0 gene_id "W7K_20400"; transcript_id "KOE97291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97291"; +contig03 ena start_codon 1514 1516 . + 0 gene_id "W7K_20400"; transcript_id "KOE97291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 2195 2197 . + 0 gene_id "W7K_20400"; transcript_id "KOE97291"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 2247 3707 . - . gene_id "W7K_20405"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 2247 3707 . - . gene_id "W7K_20405"; transcript_id "KOE97292"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 2247 3707 . - . gene_id "W7K_20405"; transcript_id "KOE97292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97292-1"; +contig03 ena CDS 2250 3707 . - 0 gene_id "W7K_20405"; transcript_id "KOE97292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97292"; +contig03 ena start_codon 3705 3707 . - 0 gene_id "W7K_20405"; transcript_id "KOE97292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 2247 2249 . - 0 gene_id "W7K_20405"; transcript_id "KOE97292"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 3688 4971 . - . gene_id "W7K_20410"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 3688 4971 . - . gene_id "W7K_20410"; transcript_id "KOE97293"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 3688 4971 . - . gene_id "W7K_20410"; transcript_id "KOE97293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97293-1"; +contig03 ena CDS 3691 4971 . - 0 gene_id "W7K_20410"; transcript_id "KOE97293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97293"; +contig03 ena start_codon 4969 4971 . - 0 gene_id "W7K_20410"; transcript_id "KOE97293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 3688 3690 . - 0 gene_id "W7K_20410"; transcript_id "KOE97293"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 5030 6157 . - . gene_id "W7K_20415"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 5030 6157 . - . gene_id "W7K_20415"; transcript_id "KOE97294"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 5030 6157 . - . gene_id "W7K_20415"; transcript_id "KOE97294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97294-1"; +contig03 ena CDS 5033 6157 . - 0 gene_id "W7K_20415"; transcript_id "KOE97294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97294"; +contig03 ena start_codon 6155 6157 . - 0 gene_id "W7K_20415"; transcript_id "KOE97294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 5030 5032 . - 0 gene_id "W7K_20415"; transcript_id "KOE97294"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 6279 6644 . + . gene_id "W7K_20420"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 6279 6644 . + . gene_id "W7K_20420"; transcript_id "KOE97295"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 6279 6644 . + . gene_id "W7K_20420"; transcript_id "KOE97295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97295-1"; +contig03 ena CDS 6279 6641 . + 0 gene_id "W7K_20420"; transcript_id "KOE97295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97295"; +contig03 ena start_codon 6279 6281 . + 0 gene_id "W7K_20420"; transcript_id "KOE97295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 6642 6644 . + 0 gene_id "W7K_20420"; transcript_id "KOE97295"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 6650 7525 . + . gene_id "W7K_20425"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 6650 7525 . + . gene_id "W7K_20425"; transcript_id "KOE97345"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 6650 7525 . + . gene_id "W7K_20425"; transcript_id "KOE97345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97345-1"; +contig03 ena CDS 6650 7522 . + 0 gene_id "W7K_20425"; transcript_id "KOE97345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97345"; +contig03 ena start_codon 6650 6652 . + 0 gene_id "W7K_20425"; transcript_id "KOE97345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 7523 7525 . + 0 gene_id "W7K_20425"; transcript_id "KOE97345"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 7850 8086 . + . gene_id "W7K_20430"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 7850 8086 . + . gene_id "W7K_20430"; transcript_id "KOE97296"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 7850 8086 . + . gene_id "W7K_20430"; transcript_id "KOE97296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97296-1"; +contig03 ena CDS 7850 8083 . + 0 gene_id "W7K_20430"; transcript_id "KOE97296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97296"; +contig03 ena start_codon 7850 7852 . + 0 gene_id "W7K_20430"; transcript_id "KOE97296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 8084 8086 . + 0 gene_id "W7K_20430"; transcript_id "KOE97296"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 8387 9757 . + . gene_id "W7K_20435"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 8387 9757 . + . gene_id "W7K_20435"; transcript_id "KOE97297"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 8387 9757 . + . gene_id "W7K_20435"; transcript_id "KOE97297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97297-1"; +contig03 ena CDS 8387 9754 . + 0 gene_id "W7K_20435"; transcript_id "KOE97297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97297"; +contig03 ena start_codon 8387 8389 . + 0 gene_id "W7K_20435"; transcript_id "KOE97297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 9755 9757 . + 0 gene_id "W7K_20435"; transcript_id "KOE97297"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 9881 11065 . + . gene_id "W7K_20440"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 9881 11065 . + . gene_id "W7K_20440"; transcript_id "KOE97298"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 9881 11065 . + . gene_id "W7K_20440"; transcript_id "KOE97298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97298-1"; +contig03 ena CDS 9881 11062 . + 0 gene_id "W7K_20440"; transcript_id "KOE97298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97298"; +contig03 ena start_codon 9881 9883 . + 0 gene_id "W7K_20440"; transcript_id "KOE97298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 11063 11065 . + 0 gene_id "W7K_20440"; transcript_id "KOE97298"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 11065 11859 . + . gene_id "W7K_20445"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 11065 11859 . + . gene_id "W7K_20445"; transcript_id "KOE97299"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 11065 11859 . + . gene_id "W7K_20445"; transcript_id "KOE97299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97299-1"; +contig03 ena CDS 11065 11856 . + 0 gene_id "W7K_20445"; transcript_id "KOE97299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97299"; +contig03 ena start_codon 11065 11067 . + 0 gene_id "W7K_20445"; transcript_id "KOE97299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 11857 11859 . + 0 gene_id "W7K_20445"; transcript_id "KOE97299"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 11849 13204 . + . gene_id "W7K_20450"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 11849 13204 . + . gene_id "W7K_20450"; transcript_id "KOE97300"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 11849 13204 . + . gene_id "W7K_20450"; transcript_id "KOE97300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97300-1"; +contig03 ena CDS 11849 13201 . + 0 gene_id "W7K_20450"; transcript_id "KOE97300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97300"; +contig03 ena start_codon 11849 11851 . + 0 gene_id "W7K_20450"; transcript_id "KOE97300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 13202 13204 . + 0 gene_id "W7K_20450"; transcript_id "KOE97300"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 13204 16614 . + . gene_id "W7K_20455"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 13204 16614 . + . gene_id "W7K_20455"; transcript_id "KOE97301"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 13204 16614 . + . gene_id "W7K_20455"; transcript_id "KOE97301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97301-1"; +contig03 ena CDS 13204 16611 . + 0 gene_id "W7K_20455"; transcript_id "KOE97301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97301"; +contig03 ena start_codon 13204 13206 . + 0 gene_id "W7K_20455"; transcript_id "KOE97301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 16612 16614 . + 0 gene_id "W7K_20455"; transcript_id "KOE97301"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 16782 17132 . + . gene_id "W7K_20460"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 16782 17132 . + . gene_id "W7K_20460"; transcript_id "KOE97302"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 16782 17132 . + . gene_id "W7K_20460"; transcript_id "KOE97302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97302-1"; +contig03 ena CDS 16782 17129 . + 0 gene_id "W7K_20460"; transcript_id "KOE97302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97302"; +contig03 ena start_codon 16782 16784 . + 0 gene_id "W7K_20460"; transcript_id "KOE97302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 17130 17132 . + 0 gene_id "W7K_20460"; transcript_id "KOE97302"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 17216 19129 . - . gene_id "W7K_20465"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 17216 19129 . - . gene_id "W7K_20465"; transcript_id "KOE97303"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 17216 19129 . - . gene_id "W7K_20465"; transcript_id "KOE97303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97303-1"; +contig03 ena CDS 17219 19129 . - 0 gene_id "W7K_20465"; transcript_id "KOE97303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97303"; +contig03 ena start_codon 19127 19129 . - 0 gene_id "W7K_20465"; transcript_id "KOE97303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 17216 17218 . - 0 gene_id "W7K_20465"; transcript_id "KOE97303"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 19126 20235 . - . gene_id "W7K_20470"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 19126 20235 . - . gene_id "W7K_20470"; transcript_id "KOE97346"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 19126 20235 . - . gene_id "W7K_20470"; transcript_id "KOE97346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97346-1"; +contig03 ena CDS 19129 20235 . - 0 gene_id "W7K_20470"; transcript_id "KOE97346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97346"; +contig03 ena start_codon 20233 20235 . - 0 gene_id "W7K_20470"; transcript_id "KOE97346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 19126 19128 . - 0 gene_id "W7K_20470"; transcript_id "KOE97346"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 20290 20916 . - . gene_id "W7K_20475"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 20290 20916 . - . gene_id "W7K_20475"; transcript_id "KOE97304"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 20290 20916 . - . gene_id "W7K_20475"; transcript_id "KOE97304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97304-1"; +contig03 ena CDS 20293 20916 . - 0 gene_id "W7K_20475"; transcript_id "KOE97304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97304"; +contig03 ena start_codon 20914 20916 . - 0 gene_id "W7K_20475"; transcript_id "KOE97304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 20290 20292 . - 0 gene_id "W7K_20475"; transcript_id "KOE97304"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 20920 21285 . - . gene_id "W7K_20480"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 20920 21285 . - . gene_id "W7K_20480"; transcript_id "KOE97305"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 20920 21285 . - . gene_id "W7K_20480"; transcript_id "KOE97305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97305-1"; +contig03 ena CDS 20923 21285 . - 0 gene_id "W7K_20480"; transcript_id "KOE97305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97305"; +contig03 ena start_codon 21283 21285 . - 0 gene_id "W7K_20480"; transcript_id "KOE97305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 20920 20922 . - 0 gene_id "W7K_20480"; transcript_id "KOE97305"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 21290 22513 . - . gene_id "W7K_20485"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 21290 22513 . - . gene_id "W7K_20485"; transcript_id "KOE97306"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 21290 22513 . - . gene_id "W7K_20485"; transcript_id "KOE97306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97306-1"; +contig03 ena CDS 21293 22513 . - 0 gene_id "W7K_20485"; transcript_id "KOE97306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97306"; +contig03 ena start_codon 22511 22513 . - 0 gene_id "W7K_20485"; transcript_id "KOE97306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 21290 21292 . - 0 gene_id "W7K_20485"; transcript_id "KOE97306"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 22510 23616 . - . gene_id "W7K_20490"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 22510 23616 . - . gene_id "W7K_20490"; transcript_id "KOE97307"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 22510 23616 . - . gene_id "W7K_20490"; transcript_id "KOE97307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97307-1"; +contig03 ena CDS 22513 23616 . - 0 gene_id "W7K_20490"; transcript_id "KOE97307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97307"; +contig03 ena start_codon 23614 23616 . - 0 gene_id "W7K_20490"; transcript_id "KOE97307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 22510 22512 . - 0 gene_id "W7K_20490"; transcript_id "KOE97307"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 23613 25013 . - . gene_id "W7K_20495"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 23613 25013 . - . gene_id "W7K_20495"; transcript_id "KOE97308"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 23613 25013 . - . gene_id "W7K_20495"; transcript_id "KOE97308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97308-1"; +contig03 ena CDS 23616 25013 . - 0 gene_id "W7K_20495"; transcript_id "KOE97308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97308"; +contig03 ena start_codon 25011 25013 . - 0 gene_id "W7K_20495"; transcript_id "KOE97308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 23613 23615 . - 0 gene_id "W7K_20495"; transcript_id "KOE97308"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 25014 25757 . - . gene_id "W7K_20500"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 25014 25757 . - . gene_id "W7K_20500"; transcript_id "KOE97309"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 25014 25757 . - . gene_id "W7K_20500"; transcript_id "KOE97309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97309-1"; +contig03 ena CDS 25017 25757 . - 0 gene_id "W7K_20500"; transcript_id "KOE97309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97309"; +contig03 ena start_codon 25755 25757 . - 0 gene_id "W7K_20500"; transcript_id "KOE97309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 25014 25016 . - 0 gene_id "W7K_20500"; transcript_id "KOE97309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 25760 26008 . - . gene_id "W7K_20505"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 25760 26008 . - . gene_id "W7K_20505"; transcript_id "KOE97310"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 25760 26008 . - . gene_id "W7K_20505"; transcript_id "KOE97310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97310-1"; +contig03 ena CDS 25763 26008 . - 0 gene_id "W7K_20505"; transcript_id "KOE97310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97310"; +contig03 ena start_codon 26006 26008 . - 0 gene_id "W7K_20505"; transcript_id "KOE97310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 25760 25762 . - 0 gene_id "W7K_20505"; transcript_id "KOE97310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 26005 26763 . - . gene_id "W7K_20510"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 26005 26763 . - . gene_id "W7K_20510"; transcript_id "KOE97311"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 26005 26763 . - . gene_id "W7K_20510"; transcript_id "KOE97311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97311-1"; +contig03 ena CDS 26008 26763 . - 0 gene_id "W7K_20510"; transcript_id "KOE97311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97311"; +contig03 ena start_codon 26761 26763 . - 0 gene_id "W7K_20510"; transcript_id "KOE97311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 26005 26007 . - 0 gene_id "W7K_20510"; transcript_id "KOE97311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 26760 27743 . - . gene_id "W7K_20515"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 26760 27743 . - . gene_id "W7K_20515"; transcript_id "KOE97312"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 26760 27743 . - . gene_id "W7K_20515"; transcript_id "KOE97312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97312-1"; +contig03 ena CDS 26763 27743 . - 0 gene_id "W7K_20515"; transcript_id "KOE97312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97312"; +contig03 ena start_codon 27741 27743 . - 0 gene_id "W7K_20515"; transcript_id "KOE97312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 26760 26762 . - 0 gene_id "W7K_20515"; transcript_id "KOE97312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 28216 29157 . - . gene_id "W7K_20520"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 28216 29157 . - . gene_id "W7K_20520"; transcript_id "KOE97313"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 28216 29157 . - . gene_id "W7K_20520"; transcript_id "KOE97313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97313-1"; +contig03 ena CDS 28219 29157 . - 0 gene_id "W7K_20520"; transcript_id "KOE97313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97313"; +contig03 ena start_codon 29155 29157 . - 0 gene_id "W7K_20520"; transcript_id "KOE97313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 28216 28218 . - 0 gene_id "W7K_20520"; transcript_id "KOE97313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 29157 29903 . - . gene_id "W7K_20525"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 29157 29903 . - . gene_id "W7K_20525"; transcript_id "KOE97314"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 29157 29903 . - . gene_id "W7K_20525"; transcript_id "KOE97314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97314-1"; +contig03 ena CDS 29160 29903 . - 0 gene_id "W7K_20525"; transcript_id "KOE97314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97314"; +contig03 ena start_codon 29901 29903 . - 0 gene_id "W7K_20525"; transcript_id "KOE97314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 29157 29159 . - 0 gene_id "W7K_20525"; transcript_id "KOE97314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 30166 31221 . + . gene_id "W7K_20530"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 30166 31221 . + . gene_id "W7K_20530"; transcript_id "KOE97315"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 30166 31221 . + . gene_id "W7K_20530"; transcript_id "KOE97315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97315-1"; +contig03 ena CDS 30166 31218 . + 0 gene_id "W7K_20530"; transcript_id "KOE97315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97315"; +contig03 ena start_codon 30166 30168 . + 0 gene_id "W7K_20530"; transcript_id "KOE97315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 31219 31221 . + 0 gene_id "W7K_20530"; transcript_id "KOE97315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 31236 32123 . + . gene_id "W7K_20535"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 31236 32123 . + . gene_id "W7K_20535"; transcript_id "KOE97316"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 31236 32123 . + . gene_id "W7K_20535"; transcript_id "KOE97316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97316-1"; +contig03 ena CDS 31236 32120 . + 0 gene_id "W7K_20535"; transcript_id "KOE97316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97316"; +contig03 ena start_codon 31236 31238 . + 0 gene_id "W7K_20535"; transcript_id "KOE97316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 32121 32123 . + 0 gene_id "W7K_20535"; transcript_id "KOE97316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 32120 32677 . + . gene_id "W7K_20540"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 32120 32677 . + . gene_id "W7K_20540"; transcript_id "KOE97317"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 32120 32677 . + . gene_id "W7K_20540"; transcript_id "KOE97317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97317-1"; +contig03 ena CDS 32120 32674 . + 0 gene_id "W7K_20540"; transcript_id "KOE97317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97317"; +contig03 ena start_codon 32120 32122 . + 0 gene_id "W7K_20540"; transcript_id "KOE97317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 32675 32677 . + 0 gene_id "W7K_20540"; transcript_id "KOE97317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 32674 33567 . + . gene_id "W7K_20545"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 32674 33567 . + . gene_id "W7K_20545"; transcript_id "KOE97318"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 32674 33567 . + . gene_id "W7K_20545"; transcript_id "KOE97318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97318-1"; +contig03 ena CDS 32674 33564 . + 0 gene_id "W7K_20545"; transcript_id "KOE97318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97318"; +contig03 ena start_codon 32674 32676 . + 0 gene_id "W7K_20545"; transcript_id "KOE97318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 33565 33567 . + 0 gene_id "W7K_20545"; transcript_id "KOE97318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 33698 35101 . - . gene_id "W7K_20550"; gene_name "cpsB"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 33698 35101 . - . gene_id "W7K_20550"; transcript_id "KOE97319"; gene_name "cpsB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cpsB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 33698 35101 . - . gene_id "W7K_20550"; transcript_id "KOE97319"; exon_number "1"; gene_name "cpsB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cpsB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97319-1"; +contig03 ena CDS 33701 35101 . - 0 gene_id "W7K_20550"; transcript_id "KOE97319"; exon_number "1"; gene_name "cpsB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cpsB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97319"; +contig03 ena start_codon 35099 35101 . - 0 gene_id "W7K_20550"; transcript_id "KOE97319"; exon_number "1"; gene_name "cpsB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cpsB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 33698 33700 . - 0 gene_id "W7K_20550"; transcript_id "KOE97319"; exon_number "1"; gene_name "cpsB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "cpsB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 35114 36460 . - . gene_id "W7K_20555"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 35114 36460 . - . gene_id "W7K_20555"; transcript_id "KOE97320"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 35114 36460 . - . gene_id "W7K_20555"; transcript_id "KOE97320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97320-1"; +contig03 ena CDS 35117 36460 . - 0 gene_id "W7K_20555"; transcript_id "KOE97320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97320"; +contig03 ena start_codon 36458 36460 . - 0 gene_id "W7K_20555"; transcript_id "KOE97320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 35114 35116 . - 0 gene_id "W7K_20555"; transcript_id "KOE97320"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 36558 39188 . - . gene_id "W7K_20560"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 36558 39188 . - . gene_id "W7K_20560"; transcript_id "KOE97321"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 36558 39188 . - . gene_id "W7K_20560"; transcript_id "KOE97321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97321-1"; +contig03 ena CDS 36561 39188 . - 0 gene_id "W7K_20560"; transcript_id "KOE97321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97321"; +contig03 ena start_codon 39186 39188 . - 0 gene_id "W7K_20560"; transcript_id "KOE97321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 36558 36560 . - 0 gene_id "W7K_20560"; transcript_id "KOE97321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 39347 40078 . + . gene_id "W7K_20565"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 39347 40078 . + . gene_id "W7K_20565"; transcript_id "KOE97322"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 39347 40078 . + . gene_id "W7K_20565"; transcript_id "KOE97322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97322-1"; +contig03 ena CDS 39347 40075 . + 0 gene_id "W7K_20565"; transcript_id "KOE97322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97322"; +contig03 ena start_codon 39347 39349 . + 0 gene_id "W7K_20565"; transcript_id "KOE97322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 40076 40078 . + 0 gene_id "W7K_20565"; transcript_id "KOE97322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 40080 40712 . + . gene_id "W7K_20570"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 40080 40712 . + . gene_id "W7K_20570"; transcript_id "KOE97323"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 40080 40712 . + . gene_id "W7K_20570"; transcript_id "KOE97323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97323-1"; +contig03 ena CDS 40080 40709 . + 0 gene_id "W7K_20570"; transcript_id "KOE97323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97323"; +contig03 ena start_codon 40080 40082 . + 0 gene_id "W7K_20570"; transcript_id "KOE97323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 40710 40712 . + 0 gene_id "W7K_20570"; transcript_id "KOE97323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 40757 41344 . + . gene_id "W7K_20575"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 40757 41344 . + . gene_id "W7K_20575"; transcript_id "KOE97324"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 40757 41344 . + . gene_id "W7K_20575"; transcript_id "KOE97324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97324-1"; +contig03 ena CDS 40757 41341 . + 0 gene_id "W7K_20575"; transcript_id "KOE97324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97324"; +contig03 ena start_codon 40757 40759 . + 0 gene_id "W7K_20575"; transcript_id "KOE97324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 41342 41344 . + 0 gene_id "W7K_20575"; transcript_id "KOE97324"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 41349 41990 . - . gene_id "W7K_20580"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 41349 41990 . - . gene_id "W7K_20580"; transcript_id "KOE97325"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 41349 41990 . - . gene_id "W7K_20580"; transcript_id "KOE97325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97325-1"; +contig03 ena CDS 41352 41990 . - 0 gene_id "W7K_20580"; transcript_id "KOE97325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97325"; +contig03 ena start_codon 41988 41990 . - 0 gene_id "W7K_20580"; transcript_id "KOE97325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 41349 41351 . - 0 gene_id "W7K_20580"; transcript_id "KOE97325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 41987 42913 . - . gene_id "W7K_20585"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 41987 42913 . - . gene_id "W7K_20585"; transcript_id "KOE97326"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 41987 42913 . - . gene_id "W7K_20585"; transcript_id "KOE97326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97326-1"; +contig03 ena CDS 41990 42913 . - 0 gene_id "W7K_20585"; transcript_id "KOE97326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97326"; +contig03 ena start_codon 42911 42913 . - 0 gene_id "W7K_20585"; transcript_id "KOE97326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 41987 41989 . - 0 gene_id "W7K_20585"; transcript_id "KOE97326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 42917 43744 . - . gene_id "W7K_20590"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 42917 43744 . - . gene_id "W7K_20590"; transcript_id "KOE97327"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 42917 43744 . - . gene_id "W7K_20590"; transcript_id "KOE97327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97327-1"; +contig03 ena CDS 42920 43744 . - 0 gene_id "W7K_20590"; transcript_id "KOE97327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97327"; +contig03 ena start_codon 43742 43744 . - 0 gene_id "W7K_20590"; transcript_id "KOE97327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 42917 42919 . - 0 gene_id "W7K_20590"; transcript_id "KOE97327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 43746 44867 . - . gene_id "W7K_20595"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 43746 44867 . - . gene_id "W7K_20595"; transcript_id "KOE97328"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 43746 44867 . - . gene_id "W7K_20595"; transcript_id "KOE97328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97328-1"; +contig03 ena CDS 43749 44867 . - 0 gene_id "W7K_20595"; transcript_id "KOE97328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97328"; +contig03 ena start_codon 44865 44867 . - 0 gene_id "W7K_20595"; transcript_id "KOE97328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 43746 43748 . - 0 gene_id "W7K_20595"; transcript_id "KOE97328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 44960 46219 . + . gene_id "W7K_20600"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 44960 46219 . + . gene_id "W7K_20600"; transcript_id "KOE97329"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 44960 46219 . + . gene_id "W7K_20600"; transcript_id "KOE97329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97329-1"; +contig03 ena CDS 44960 46216 . + 0 gene_id "W7K_20600"; transcript_id "KOE97329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97329"; +contig03 ena start_codon 44960 44962 . + 0 gene_id "W7K_20600"; transcript_id "KOE97329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 46217 46219 . + 0 gene_id "W7K_20600"; transcript_id "KOE97329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 46355 46738 . - . gene_id "W7K_20605"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 46355 46738 . - . gene_id "W7K_20605"; transcript_id "KOE97330"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 46355 46738 . - . gene_id "W7K_20605"; transcript_id "KOE97330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97330-1"; +contig03 ena CDS 46358 46738 . - 0 gene_id "W7K_20605"; transcript_id "KOE97330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97330"; +contig03 ena start_codon 46736 46738 . - 0 gene_id "W7K_20605"; transcript_id "KOE97330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 46355 46357 . - 0 gene_id "W7K_20605"; transcript_id "KOE97330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 46961 48664 . - . gene_id "W7K_20610"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 46961 48664 . - . gene_id "W7K_20610"; transcript_id "KOE97331"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 46961 48664 . - . gene_id "W7K_20610"; transcript_id "KOE97331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97331-1"; +contig03 ena CDS 46964 48664 . - 0 gene_id "W7K_20610"; transcript_id "KOE97331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97331"; +contig03 ena start_codon 48662 48664 . - 0 gene_id "W7K_20610"; transcript_id "KOE97331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 46961 46963 . - 0 gene_id "W7K_20610"; transcript_id "KOE97331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 48931 49305 . - . gene_id "W7K_20615"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 48931 49305 . - . gene_id "W7K_20615"; transcript_id "KOE97347"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 48931 49305 . - . gene_id "W7K_20615"; transcript_id "KOE97347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97347-1"; +contig03 ena CDS 48934 49305 . - 0 gene_id "W7K_20615"; transcript_id "KOE97347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97347"; +contig03 ena start_codon 49303 49305 . - 0 gene_id "W7K_20615"; transcript_id "KOE97347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 48931 48933 . - 0 gene_id "W7K_20615"; transcript_id "KOE97347"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 49386 50162 . + . gene_id "W7K_20620"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 49386 50162 . + . gene_id "W7K_20620"; transcript_id "KOE97332"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 49386 50162 . + . gene_id "W7K_20620"; transcript_id "KOE97332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97332-1"; +contig03 ena CDS 49386 50159 . + 0 gene_id "W7K_20620"; transcript_id "KOE97332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97332"; +contig03 ena start_codon 49386 49388 . + 0 gene_id "W7K_20620"; transcript_id "KOE97332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 50160 50162 . + 0 gene_id "W7K_20620"; transcript_id "KOE97332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 50159 50668 . + . gene_id "W7K_20625"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 50159 50668 . + . gene_id "W7K_20625"; transcript_id "KOE97333"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 50159 50668 . + . gene_id "W7K_20625"; transcript_id "KOE97333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97333-1"; +contig03 ena CDS 50159 50665 . + 0 gene_id "W7K_20625"; transcript_id "KOE97333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97333"; +contig03 ena start_codon 50159 50161 . + 0 gene_id "W7K_20625"; transcript_id "KOE97333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 50666 50668 . + 0 gene_id "W7K_20625"; transcript_id "KOE97333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 50665 51162 . + . gene_id "W7K_20630"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 50665 51162 . + . gene_id "W7K_20630"; transcript_id "KOE97334"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 50665 51162 . + . gene_id "W7K_20630"; transcript_id "KOE97334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97334-1"; +contig03 ena CDS 50665 51159 . + 0 gene_id "W7K_20630"; transcript_id "KOE97334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97334"; +contig03 ena start_codon 50665 50667 . + 0 gene_id "W7K_20630"; transcript_id "KOE97334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 51160 51162 . + 0 gene_id "W7K_20630"; transcript_id "KOE97334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 51267 52088 . - . gene_id "W7K_20635"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 51267 52088 . - . gene_id "W7K_20635"; transcript_id "KOE97335"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 51267 52088 . - . gene_id "W7K_20635"; transcript_id "KOE97335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97335-1"; +contig03 ena CDS 51270 52088 . - 0 gene_id "W7K_20635"; transcript_id "KOE97335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97335"; +contig03 ena start_codon 52086 52088 . - 0 gene_id "W7K_20635"; transcript_id "KOE97335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 51267 51269 . - 0 gene_id "W7K_20635"; transcript_id "KOE97335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 52265 55093 . - . gene_id "W7K_20640"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 52265 55093 . - . gene_id "W7K_20640"; transcript_id "KOE97336"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 52265 55093 . - . gene_id "W7K_20640"; transcript_id "KOE97336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97336-1"; +contig03 ena CDS 52268 55093 . - 0 gene_id "W7K_20640"; transcript_id "KOE97336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97336"; +contig03 ena start_codon 55091 55093 . - 0 gene_id "W7K_20640"; transcript_id "KOE97336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 52265 52267 . - 0 gene_id "W7K_20640"; transcript_id "KOE97336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 55166 55591 . - . gene_id "W7K_20645"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 55166 55591 . - . gene_id "W7K_20645"; transcript_id "KOE97337"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 55166 55591 . - . gene_id "W7K_20645"; transcript_id "KOE97337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97337-1"; +contig03 ena CDS 55169 55591 . - 0 gene_id "W7K_20645"; transcript_id "KOE97337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97337"; +contig03 ena start_codon 55589 55591 . - 0 gene_id "W7K_20645"; transcript_id "KOE97337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 55166 55168 . - 0 gene_id "W7K_20645"; transcript_id "KOE97337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 55674 57152 . - . gene_id "W7K_20650"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 55674 57152 . - . gene_id "W7K_20650"; transcript_id "KOE97338"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 55674 57152 . - . gene_id "W7K_20650"; transcript_id "KOE97338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97338-1"; +contig03 ena CDS 55677 57152 . - 0 gene_id "W7K_20650"; transcript_id "KOE97338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97338"; +contig03 ena start_codon 57150 57152 . - 0 gene_id "W7K_20650"; transcript_id "KOE97338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 55674 55676 . - 0 gene_id "W7K_20650"; transcript_id "KOE97338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 57257 58339 . + . gene_id "W7K_20655"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 57257 58339 . + . gene_id "W7K_20655"; transcript_id "KOE97339"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 57257 58339 . + . gene_id "W7K_20655"; transcript_id "KOE97339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97339-1"; +contig03 ena CDS 57257 58336 . + 0 gene_id "W7K_20655"; transcript_id "KOE97339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97339"; +contig03 ena start_codon 57257 57259 . + 0 gene_id "W7K_20655"; transcript_id "KOE97339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 58337 58339 . + 0 gene_id "W7K_20655"; transcript_id "KOE97339"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 58336 59442 . + . gene_id "W7K_20660"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 58336 59442 . + . gene_id "W7K_20660"; transcript_id "KOE97340"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 58336 59442 . + . gene_id "W7K_20660"; transcript_id "KOE97340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97340-1"; +contig03 ena CDS 58336 59439 . + 0 gene_id "W7K_20660"; transcript_id "KOE97340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97340"; +contig03 ena start_codon 58336 58338 . + 0 gene_id "W7K_20660"; transcript_id "KOE97340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 59440 59442 . + 0 gene_id "W7K_20660"; transcript_id "KOE97340"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 59533 60024 . - . gene_id "W7K_20665"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 59533 60024 . - . gene_id "W7K_20665"; transcript_id "KOE97341"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 59533 60024 . - . gene_id "W7K_20665"; transcript_id "KOE97341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97341-1"; +contig03 ena CDS 59536 60024 . - 0 gene_id "W7K_20665"; transcript_id "KOE97341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97341"; +contig03 ena start_codon 60022 60024 . - 0 gene_id "W7K_20665"; transcript_id "KOE97341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 59533 59535 . - 0 gene_id "W7K_20665"; transcript_id "KOE97341"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 60081 61058 . + . gene_id "W7K_20670"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 60081 61058 . + . gene_id "W7K_20670"; transcript_id "KOE97342"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 60081 61058 . + . gene_id "W7K_20670"; transcript_id "KOE97342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97342-1"; +contig03 ena CDS 60081 61055 . + 0 gene_id "W7K_20670"; transcript_id "KOE97342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97342"; +contig03 ena start_codon 60081 60083 . + 0 gene_id "W7K_20670"; transcript_id "KOE97342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 61056 61058 . + 0 gene_id "W7K_20670"; transcript_id "KOE97342"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 61159 61944 . + . gene_id "W7K_20675"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 61159 61944 . + . gene_id "W7K_20675"; transcript_id "KOE97343"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 61159 61944 . + . gene_id "W7K_20675"; transcript_id "KOE97343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97343-1"; +contig03 ena CDS 61159 61941 . + 0 gene_id "W7K_20675"; transcript_id "KOE97343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97343"; +contig03 ena start_codon 61159 61161 . + 0 gene_id "W7K_20675"; transcript_id "KOE97343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 61942 61944 . + 0 gene_id "W7K_20675"; transcript_id "KOE97343"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena gene 62065 64164 . - . gene_id "W7K_20680"; gene_source "ena"; gene_biotype "protein_coding"; +contig03 ena transcript 62065 64164 . - . gene_id "W7K_20680"; transcript_id "KOE97344"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena exon 62065 64164 . - . gene_id "W7K_20680"; transcript_id "KOE97344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97344-1"; +contig03 ena CDS 62068 64164 . - 0 gene_id "W7K_20680"; transcript_id "KOE97344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97344"; +contig03 ena start_codon 64162 64164 . - 0 gene_id "W7K_20680"; transcript_id "KOE97344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig03 ena stop_codon 62065 62067 . - 0 gene_id "W7K_20680"; transcript_id "KOE97344"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 199 1086 . - . gene_id "W7K_14410"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 199 1086 . - . gene_id "W7K_14410"; transcript_id "KOE98453"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 199 1086 . - . gene_id "W7K_14410"; transcript_id "KOE98453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98453-1"; +contig21 ena CDS 202 1086 . - 0 gene_id "W7K_14410"; transcript_id "KOE98453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98453"; +contig21 ena start_codon 1084 1086 . - 0 gene_id "W7K_14410"; transcript_id "KOE98453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 199 201 . - 0 gene_id "W7K_14410"; transcript_id "KOE98453"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 1240 2139 . - . gene_id "W7K_14415"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 1240 2139 . - . gene_id "W7K_14415"; transcript_id "KOE98454"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 1240 2139 . - . gene_id "W7K_14415"; transcript_id "KOE98454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98454-1"; +contig21 ena CDS 1243 2139 . - 0 gene_id "W7K_14415"; transcript_id "KOE98454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98454"; +contig21 ena start_codon 2137 2139 . - 0 gene_id "W7K_14415"; transcript_id "KOE98454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 1240 1242 . - 0 gene_id "W7K_14415"; transcript_id "KOE98454"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 2300 2692 . - . gene_id "W7K_14420"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 2300 2692 . - . gene_id "W7K_14420"; transcript_id "KOE98455"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 2300 2692 . - . gene_id "W7K_14420"; transcript_id "KOE98455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98455-1"; +contig21 ena CDS 2303 2692 . - 0 gene_id "W7K_14420"; transcript_id "KOE98455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98455"; +contig21 ena start_codon 2690 2692 . - 0 gene_id "W7K_14420"; transcript_id "KOE98455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 2300 2302 . - 0 gene_id "W7K_14420"; transcript_id "KOE98455"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 2724 3188 . - . gene_id "W7K_14425"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 2724 3188 . - . gene_id "W7K_14425"; transcript_id "KOE98456"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 2724 3188 . - . gene_id "W7K_14425"; transcript_id "KOE98456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98456-1"; +contig21 ena CDS 2727 3188 . - 0 gene_id "W7K_14425"; transcript_id "KOE98456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98456"; +contig21 ena start_codon 3186 3188 . - 0 gene_id "W7K_14425"; transcript_id "KOE98456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 2724 2726 . - 0 gene_id "W7K_14425"; transcript_id "KOE98456"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 3193 3936 . - . gene_id "W7K_14430"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 3193 3936 . - . gene_id "W7K_14430"; transcript_id "KOE98457"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 3193 3936 . - . gene_id "W7K_14430"; transcript_id "KOE98457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98457-1"; +contig21 ena CDS 3196 3936 . - 0 gene_id "W7K_14430"; transcript_id "KOE98457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98457"; +contig21 ena start_codon 3934 3936 . - 0 gene_id "W7K_14430"; transcript_id "KOE98457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 3193 3195 . - 0 gene_id "W7K_14430"; transcript_id "KOE98457"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 4116 4733 . + . gene_id "W7K_14435"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 4116 4733 . + . gene_id "W7K_14435"; transcript_id "KOE98458"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 4116 4733 . + . gene_id "W7K_14435"; transcript_id "KOE98458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98458-1"; +contig21 ena CDS 4116 4730 . + 0 gene_id "W7K_14435"; transcript_id "KOE98458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98458"; +contig21 ena start_codon 4116 4118 . + 0 gene_id "W7K_14435"; transcript_id "KOE98458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 4731 4733 . + 0 gene_id "W7K_14435"; transcript_id "KOE98458"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 4778 6664 . + . gene_id "W7K_14440"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 4778 6664 . + . gene_id "W7K_14440"; transcript_id "KOE98459"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 4778 6664 . + . gene_id "W7K_14440"; transcript_id "KOE98459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98459-1"; +contig21 ena CDS 4778 6661 . + 0 gene_id "W7K_14440"; transcript_id "KOE98459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98459"; +contig21 ena start_codon 4778 4780 . + 0 gene_id "W7K_14440"; transcript_id "KOE98459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 6662 6664 . + 0 gene_id "W7K_14440"; transcript_id "KOE98459"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 6666 8897 . + . gene_id "W7K_14445"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 6666 8897 . + . gene_id "W7K_14445"; transcript_id "KOE98460"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 6666 8897 . + . gene_id "W7K_14445"; transcript_id "KOE98460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98460-1"; +contig21 ena CDS 6666 8894 . + 0 gene_id "W7K_14445"; transcript_id "KOE98460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98460"; +contig21 ena start_codon 6666 6668 . + 0 gene_id "W7K_14445"; transcript_id "KOE98460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 8895 8897 . + 0 gene_id "W7K_14445"; transcript_id "KOE98460"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 8899 9369 . - . gene_id "W7K_14450"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 8899 9369 . - . gene_id "W7K_14450"; transcript_id "KOE98461"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 8899 9369 . - . gene_id "W7K_14450"; transcript_id "KOE98461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98461-1"; +contig21 ena CDS 8902 9369 . - 0 gene_id "W7K_14450"; transcript_id "KOE98461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98461"; +contig21 ena start_codon 9367 9369 . - 0 gene_id "W7K_14450"; transcript_id "KOE98461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 8899 8901 . - 0 gene_id "W7K_14450"; transcript_id "KOE98461"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 9512 9721 . - . gene_id "W7K_14455"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 9512 9721 . - . gene_id "W7K_14455"; transcript_id "KOE98462"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 9512 9721 . - . gene_id "W7K_14455"; transcript_id "KOE98462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98462-1"; +contig21 ena CDS 9515 9721 . - 0 gene_id "W7K_14455"; transcript_id "KOE98462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98462"; +contig21 ena start_codon 9719 9721 . - 0 gene_id "W7K_14455"; transcript_id "KOE98462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 9512 9514 . - 0 gene_id "W7K_14455"; transcript_id "KOE98462"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 9822 10025 . - . gene_id "W7K_14460"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 9822 10025 . - . gene_id "W7K_14460"; transcript_id "KOE98463"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 9822 10025 . - . gene_id "W7K_14460"; transcript_id "KOE98463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98463-1"; +contig21 ena CDS 9825 10025 . - 0 gene_id "W7K_14460"; transcript_id "KOE98463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98463"; +contig21 ena start_codon 10023 10025 . - 0 gene_id "W7K_14460"; transcript_id "KOE98463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 9822 9824 . - 0 gene_id "W7K_14460"; transcript_id "KOE98463"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 10124 10747 . - . gene_id "W7K_14465"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 10124 10747 . - . gene_id "W7K_14465"; transcript_id "KOE98464"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 10124 10747 . - . gene_id "W7K_14465"; transcript_id "KOE98464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98464-1"; +contig21 ena CDS 10127 10747 . - 0 gene_id "W7K_14465"; transcript_id "KOE98464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98464"; +contig21 ena start_codon 10745 10747 . - 0 gene_id "W7K_14465"; transcript_id "KOE98464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 10124 10126 . - 0 gene_id "W7K_14465"; transcript_id "KOE98464"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 10869 10945 . + . gene_id "W7K_14470"; gene_source "ena"; gene_biotype "tRNA"; +contig21 ena transcript 10869 10945 . + . gene_id "W7K_14470"; transcript_id "EBT00051077618"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_14470"; transcript_source "ena"; transcript_biotype "tRNA"; +contig21 ena exon 10869 10945 . + . gene_id "W7K_14470"; transcript_id "EBT00051077618"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_14470"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_14470-1"; +contig21 ena gene 11001 11075 . + . gene_id "W7K_14475"; gene_source "ena"; gene_biotype "tRNA"; +contig21 ena transcript 11001 11075 . + . gene_id "W7K_14475"; transcript_id "EBT00051077619"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_14475"; transcript_source "ena"; transcript_biotype "tRNA"; +contig21 ena exon 11001 11075 . + . gene_id "W7K_14475"; transcript_id "EBT00051077619"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_14475"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_14475-1"; +contig21 ena gene 11394 11786 . - . gene_id "W7K_14480"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 11394 11786 . - . gene_id "W7K_14480"; transcript_id "KOE98465"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 11394 11786 . - . gene_id "W7K_14480"; transcript_id "KOE98465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98465-1"; +contig21 ena CDS 11397 11786 . - 0 gene_id "W7K_14480"; transcript_id "KOE98465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98465"; +contig21 ena start_codon 11784 11786 . - 0 gene_id "W7K_14480"; transcript_id "KOE98465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 11394 11396 . - 0 gene_id "W7K_14480"; transcript_id "KOE98465"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 11789 12217 . - . gene_id "W7K_14485"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 11789 12217 . - . gene_id "W7K_14485"; transcript_id "KOE98466"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 11789 12217 . - . gene_id "W7K_14485"; transcript_id "KOE98466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98466-1"; +contig21 ena CDS 11792 12217 . - 0 gene_id "W7K_14485"; transcript_id "KOE98466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98466"; +contig21 ena start_codon 12215 12217 . - 0 gene_id "W7K_14485"; transcript_id "KOE98466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 11789 11791 . - 0 gene_id "W7K_14485"; transcript_id "KOE98466"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 12415 13059 . + . gene_id "W7K_14490"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 12415 13059 . + . gene_id "W7K_14490"; transcript_id "KOE98467"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 12415 13059 . + . gene_id "W7K_14490"; transcript_id "KOE98467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98467-1"; +contig21 ena CDS 12415 13056 . + 0 gene_id "W7K_14490"; transcript_id "KOE98467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98467"; +contig21 ena start_codon 12415 12417 . + 0 gene_id "W7K_14490"; transcript_id "KOE98467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 13057 13059 . + 0 gene_id "W7K_14490"; transcript_id "KOE98467"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 13145 13465 . - . gene_id "W7K_14495"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 13145 13465 . - . gene_id "W7K_14495"; transcript_id "KOE98468"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 13145 13465 . - . gene_id "W7K_14495"; transcript_id "KOE98468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98468-1"; +contig21 ena CDS 13148 13465 . - 0 gene_id "W7K_14495"; transcript_id "KOE98468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98468"; +contig21 ena start_codon 13463 13465 . - 0 gene_id "W7K_14495"; transcript_id "KOE98468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 13145 13147 . - 0 gene_id "W7K_14495"; transcript_id "KOE98468"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 13633 14427 . - . gene_id "W7K_14500"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 13633 14427 . - . gene_id "W7K_14500"; transcript_id "KOE98469"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 13633 14427 . - . gene_id "W7K_14500"; transcript_id "KOE98469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98469-1"; +contig21 ena CDS 13636 14427 . - 0 gene_id "W7K_14500"; transcript_id "KOE98469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98469"; +contig21 ena start_codon 14425 14427 . - 0 gene_id "W7K_14500"; transcript_id "KOE98469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 13633 13635 . - 0 gene_id "W7K_14500"; transcript_id "KOE98469"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 14577 15266 . + . gene_id "W7K_14505"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 14577 15266 . + . gene_id "W7K_14505"; transcript_id "KOE98508"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 14577 15266 . + . gene_id "W7K_14505"; transcript_id "KOE98508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98508-1"; +contig21 ena CDS 14577 15263 . + 0 gene_id "W7K_14505"; transcript_id "KOE98508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98508"; +contig21 ena start_codon 14577 14579 . + 0 gene_id "W7K_14505"; transcript_id "KOE98508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 15264 15266 . + 0 gene_id "W7K_14505"; transcript_id "KOE98508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 15329 16090 . + . gene_id "W7K_14510"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 15329 16090 . + . gene_id "W7K_14510"; transcript_id "KOE98470"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 15329 16090 . + . gene_id "W7K_14510"; transcript_id "KOE98470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98470-1"; +contig21 ena CDS 15329 16087 . + 0 gene_id "W7K_14510"; transcript_id "KOE98470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98470"; +contig21 ena start_codon 15329 15331 . + 0 gene_id "W7K_14510"; transcript_id "KOE98470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 16088 16090 . + 0 gene_id "W7K_14510"; transcript_id "KOE98470"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 16188 16904 . - . gene_id "W7K_14515"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 16188 16904 . - . gene_id "W7K_14515"; transcript_id "KOE98471"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 16188 16904 . - . gene_id "W7K_14515"; transcript_id "KOE98471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98471-1"; +contig21 ena CDS 16191 16904 . - 0 gene_id "W7K_14515"; transcript_id "KOE98471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98471"; +contig21 ena start_codon 16902 16904 . - 0 gene_id "W7K_14515"; transcript_id "KOE98471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 16188 16190 . - 0 gene_id "W7K_14515"; transcript_id "KOE98471"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 16901 17695 . - . gene_id "W7K_14520"; gene_name "trpC"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 16901 17695 . - . gene_id "W7K_14520"; transcript_id "KOE98472"; gene_name "trpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 16901 17695 . - . gene_id "W7K_14520"; transcript_id "KOE98472"; exon_number "1"; gene_name "trpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98472-1"; +contig21 ena CDS 16904 17695 . - 0 gene_id "W7K_14520"; transcript_id "KOE98472"; exon_number "1"; gene_name "trpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98472"; +contig21 ena start_codon 17693 17695 . - 0 gene_id "W7K_14520"; transcript_id "KOE98472"; exon_number "1"; gene_name "trpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 16901 16903 . - 0 gene_id "W7K_14520"; transcript_id "KOE98472"; exon_number "1"; gene_name "trpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 17770 18801 . - . gene_id "W7K_14525"; gene_name "trpD"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 17770 18801 . - . gene_id "W7K_14525"; transcript_id "KOE98473"; gene_name "trpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 17770 18801 . - . gene_id "W7K_14525"; transcript_id "KOE98473"; exon_number "1"; gene_name "trpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98473-1"; +contig21 ena CDS 17773 18801 . - 0 gene_id "W7K_14525"; transcript_id "KOE98473"; exon_number "1"; gene_name "trpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98473"; +contig21 ena start_codon 18799 18801 . - 0 gene_id "W7K_14525"; transcript_id "KOE98473"; exon_number "1"; gene_name "trpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 17770 17772 . - 0 gene_id "W7K_14525"; transcript_id "KOE98473"; exon_number "1"; gene_name "trpD"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "trpD-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 18818 19405 . - . gene_id "W7K_14530"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 18818 19405 . - . gene_id "W7K_14530"; transcript_id "KOE98474"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 18818 19405 . - . gene_id "W7K_14530"; transcript_id "KOE98474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98474-1"; +contig21 ena CDS 18821 19405 . - 0 gene_id "W7K_14530"; transcript_id "KOE98474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98474"; +contig21 ena start_codon 19403 19405 . - 0 gene_id "W7K_14530"; transcript_id "KOE98474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 18818 18820 . - 0 gene_id "W7K_14530"; transcript_id "KOE98474"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 19408 20187 . - . gene_id "W7K_14535"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 19408 20187 . - . gene_id "W7K_14535"; transcript_id "KOE98475"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 19408 20187 . - . gene_id "W7K_14535"; transcript_id "KOE98475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98475-1"; +contig21 ena CDS 19411 20187 . - 0 gene_id "W7K_14535"; transcript_id "KOE98475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98475"; +contig21 ena start_codon 20185 20187 . - 0 gene_id "W7K_14535"; transcript_id "KOE98475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 19408 19410 . - 0 gene_id "W7K_14535"; transcript_id "KOE98475"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 20255 21730 . - . gene_id "W7K_14540"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 20255 21730 . - . gene_id "W7K_14540"; transcript_id "KOE98476"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 20255 21730 . - . gene_id "W7K_14540"; transcript_id "KOE98476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98476-1"; +contig21 ena CDS 20258 21730 . - 0 gene_id "W7K_14540"; transcript_id "KOE98476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98476"; +contig21 ena start_codon 21728 21730 . - 0 gene_id "W7K_14540"; transcript_id "KOE98476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 20255 20257 . - 0 gene_id "W7K_14540"; transcript_id "KOE98476"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 21909 24266 . - . gene_id "W7K_14545"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 21909 24266 . - . gene_id "W7K_14545"; transcript_id "KOE98477"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 21909 24266 . - . gene_id "W7K_14545"; transcript_id "KOE98477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98477-1"; +contig21 ena CDS 21912 24266 . - 0 gene_id "W7K_14545"; transcript_id "KOE98477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98477"; +contig21 ena start_codon 24264 24266 . - 0 gene_id "W7K_14545"; transcript_id "KOE98477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 21909 21911 . - 0 gene_id "W7K_14545"; transcript_id "KOE98477"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 24420 25235 . + . gene_id "W7K_14550"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 24420 25235 . + . gene_id "W7K_14550"; transcript_id "KOE98478"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 24420 25235 . + . gene_id "W7K_14550"; transcript_id "KOE98478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98478-1"; +contig21 ena CDS 24420 25232 . + 0 gene_id "W7K_14550"; transcript_id "KOE98478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98478"; +contig21 ena start_codon 24420 24422 . + 0 gene_id "W7K_14550"; transcript_id "KOE98478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 25233 25235 . + 0 gene_id "W7K_14550"; transcript_id "KOE98478"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 25251 26186 . - . gene_id "W7K_14555"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 25251 26186 . - . gene_id "W7K_14555"; transcript_id "KOE98479"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 25251 26186 . - . gene_id "W7K_14555"; transcript_id "KOE98479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98479-1"; +contig21 ena CDS 25254 26186 . - 0 gene_id "W7K_14555"; transcript_id "KOE98479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98479"; +contig21 ena start_codon 26184 26186 . - 0 gene_id "W7K_14555"; transcript_id "KOE98479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 25251 25253 . - 0 gene_id "W7K_14555"; transcript_id "KOE98479"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 26468 26950 . - . gene_id "W7K_14560"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 26468 26950 . - . gene_id "W7K_14560"; transcript_id "KOE98509"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 26468 26950 . - . gene_id "W7K_14560"; transcript_id "KOE98509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98509-1"; +contig21 ena CDS 26471 26950 . - 0 gene_id "W7K_14560"; transcript_id "KOE98509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98509"; +contig21 ena start_codon 26948 26950 . - 0 gene_id "W7K_14560"; transcript_id "KOE98509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 26468 26470 . - 0 gene_id "W7K_14560"; transcript_id "KOE98509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 26963 27640 . - . gene_id "W7K_14565"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 26963 27640 . - . gene_id "W7K_14565"; transcript_id "KOE98480"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 26963 27640 . - . gene_id "W7K_14565"; transcript_id "KOE98480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98480-1"; +contig21 ena CDS 26966 27640 . - 0 gene_id "W7K_14565"; transcript_id "KOE98480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98480"; +contig21 ena start_codon 27638 27640 . - 0 gene_id "W7K_14565"; transcript_id "KOE98480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 26963 26965 . - 0 gene_id "W7K_14565"; transcript_id "KOE98480"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 27698 28027 . - . gene_id "W7K_14570"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 27698 28027 . - . gene_id "W7K_14570"; transcript_id "KOE98481"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 27698 28027 . - . gene_id "W7K_14570"; transcript_id "KOE98481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98481-1"; +contig21 ena CDS 27701 28027 . - 0 gene_id "W7K_14570"; transcript_id "KOE98481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98481"; +contig21 ena start_codon 28025 28027 . - 0 gene_id "W7K_14570"; transcript_id "KOE98481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 27698 27700 . - 0 gene_id "W7K_14570"; transcript_id "KOE98481"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 28169 29095 . + . gene_id "W7K_14575"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 28169 29095 . + . gene_id "W7K_14575"; transcript_id "KOE98482"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 28169 29095 . + . gene_id "W7K_14575"; transcript_id "KOE98482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98482-1"; +contig21 ena CDS 28169 29092 . + 0 gene_id "W7K_14575"; transcript_id "KOE98482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98482"; +contig21 ena start_codon 28169 28171 . + 0 gene_id "W7K_14575"; transcript_id "KOE98482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 29093 29095 . + 0 gene_id "W7K_14575"; transcript_id "KOE98482"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 29232 29717 . + . gene_id "W7K_14580"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 29232 29717 . + . gene_id "W7K_14580"; transcript_id "KOE98483"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 29232 29717 . + . gene_id "W7K_14580"; transcript_id "KOE98483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98483-1"; +contig21 ena CDS 29232 29714 . + 0 gene_id "W7K_14580"; transcript_id "KOE98483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98483"; +contig21 ena start_codon 29232 29234 . + 0 gene_id "W7K_14580"; transcript_id "KOE98483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 29715 29717 . + 0 gene_id "W7K_14580"; transcript_id "KOE98483"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 30050 32881 . + . gene_id "W7K_14585"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 30050 32881 . + . gene_id "W7K_14585"; transcript_id "KOE98484"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 30050 32881 . + . gene_id "W7K_14585"; transcript_id "KOE98484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98484-1"; +contig21 ena CDS 30050 32878 . + 0 gene_id "W7K_14585"; transcript_id "KOE98484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98484"; +contig21 ena start_codon 30050 30052 . + 0 gene_id "W7K_14585"; transcript_id "KOE98484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 32879 32881 . + 0 gene_id "W7K_14585"; transcript_id "KOE98484"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 32881 33273 . + . gene_id "W7K_14590"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 32881 33273 . + . gene_id "W7K_14590"; transcript_id "KOE98485"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 32881 33273 . + . gene_id "W7K_14590"; transcript_id "KOE98485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98485-1"; +contig21 ena CDS 32881 33270 . + 0 gene_id "W7K_14590"; transcript_id "KOE98485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98485"; +contig21 ena start_codon 32881 32883 . + 0 gene_id "W7K_14590"; transcript_id "KOE98485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 33271 33273 . + 0 gene_id "W7K_14590"; transcript_id "KOE98485"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 33270 34805 . + . gene_id "W7K_14595"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 33270 34805 . + . gene_id "W7K_14595"; transcript_id "KOE98486"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 33270 34805 . + . gene_id "W7K_14595"; transcript_id "KOE98486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98486-1"; +contig21 ena CDS 33270 34802 . + 0 gene_id "W7K_14595"; transcript_id "KOE98486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98486"; +contig21 ena start_codon 33270 33272 . + 0 gene_id "W7K_14595"; transcript_id "KOE98486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 34803 34805 . + 0 gene_id "W7K_14595"; transcript_id "KOE98486"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 34802 35308 . + . gene_id "W7K_14600"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 34802 35308 . + . gene_id "W7K_14600"; transcript_id "KOE98487"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 34802 35308 . + . gene_id "W7K_14600"; transcript_id "KOE98487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98487-1"; +contig21 ena CDS 34802 35305 . + 0 gene_id "W7K_14600"; transcript_id "KOE98487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98487"; +contig21 ena start_codon 34802 34804 . + 0 gene_id "W7K_14600"; transcript_id "KOE98487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 35306 35308 . + 0 gene_id "W7K_14600"; transcript_id "KOE98487"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 35305 35589 . + . gene_id "W7K_14605"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 35305 35589 . + . gene_id "W7K_14605"; transcript_id "KOE98488"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 35305 35589 . + . gene_id "W7K_14605"; transcript_id "KOE98488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98488-1"; +contig21 ena CDS 35305 35586 . + 0 gene_id "W7K_14605"; transcript_id "KOE98488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98488"; +contig21 ena start_codon 35305 35307 . + 0 gene_id "W7K_14605"; transcript_id "KOE98488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 35587 35589 . + 0 gene_id "W7K_14605"; transcript_id "KOE98488"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 35586 35975 . + . gene_id "W7K_14610"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 35586 35975 . + . gene_id "W7K_14610"; transcript_id "KOE98489"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 35586 35975 . + . gene_id "W7K_14610"; transcript_id "KOE98489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98489-1"; +contig21 ena CDS 35586 35972 . + 0 gene_id "W7K_14610"; transcript_id "KOE98489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98489"; +contig21 ena start_codon 35586 35588 . + 0 gene_id "W7K_14610"; transcript_id "KOE98489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 35973 35975 . + 0 gene_id "W7K_14610"; transcript_id "KOE98489"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 36111 37076 . - . gene_id "W7K_14615"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 36111 37076 . - . gene_id "W7K_14615"; transcript_id "KOE98490"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 36111 37076 . - . gene_id "W7K_14615"; transcript_id "KOE98490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98490-1"; +contig21 ena CDS 36114 37076 . - 0 gene_id "W7K_14615"; transcript_id "KOE98490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98490"; +contig21 ena start_codon 37074 37076 . - 0 gene_id "W7K_14615"; transcript_id "KOE98490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 36111 36113 . - 0 gene_id "W7K_14615"; transcript_id "KOE98490"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 37151 37807 . - . gene_id "W7K_14620"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 37151 37807 . - . gene_id "W7K_14620"; transcript_id "KOE98491"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 37151 37807 . - . gene_id "W7K_14620"; transcript_id "KOE98491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98491-1"; +contig21 ena CDS 37154 37807 . - 0 gene_id "W7K_14620"; transcript_id "KOE98491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98491"; +contig21 ena start_codon 37805 37807 . - 0 gene_id "W7K_14620"; transcript_id "KOE98491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 37151 37153 . - 0 gene_id "W7K_14620"; transcript_id "KOE98491"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 37933 38469 . + . gene_id "W7K_14625"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 37933 38469 . + . gene_id "W7K_14625"; transcript_id "KOE98492"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 37933 38469 . + . gene_id "W7K_14625"; transcript_id "KOE98492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98492-1"; +contig21 ena CDS 37933 38466 . + 0 gene_id "W7K_14625"; transcript_id "KOE98492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98492"; +contig21 ena start_codon 37933 37935 . + 0 gene_id "W7K_14625"; transcript_id "KOE98492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 38467 38469 . + 0 gene_id "W7K_14625"; transcript_id "KOE98492"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 38545 39852 . - . gene_id "W7K_14630"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 38545 39852 . - . gene_id "W7K_14630"; transcript_id "KOE98493"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 38545 39852 . - . gene_id "W7K_14630"; transcript_id "KOE98493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98493-1"; +contig21 ena CDS 38548 39852 . - 0 gene_id "W7K_14630"; transcript_id "KOE98493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98493"; +contig21 ena start_codon 39850 39852 . - 0 gene_id "W7K_14630"; transcript_id "KOE98493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 38545 38547 . - 0 gene_id "W7K_14630"; transcript_id "KOE98493"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 39955 41025 . - . gene_id "W7K_14635"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 39955 41025 . - . gene_id "W7K_14635"; transcript_id "KOE98510"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 39955 41025 . - . gene_id "W7K_14635"; transcript_id "KOE98510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98510-1"; +contig21 ena CDS 39958 41025 . - 0 gene_id "W7K_14635"; transcript_id "KOE98510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98510"; +contig21 ena start_codon 41023 41025 . - 0 gene_id "W7K_14635"; transcript_id "KOE98510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 39955 39957 . - 0 gene_id "W7K_14635"; transcript_id "KOE98510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 41197 41691 . + . gene_id "W7K_14640"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 41197 41691 . + . gene_id "W7K_14640"; transcript_id "KOE98494"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 41197 41691 . + . gene_id "W7K_14640"; transcript_id "KOE98494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98494-1"; +contig21 ena CDS 41197 41688 . + 0 gene_id "W7K_14640"; transcript_id "KOE98494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98494"; +contig21 ena start_codon 41197 41199 . + 0 gene_id "W7K_14640"; transcript_id "KOE98494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 41689 41691 . + 0 gene_id "W7K_14640"; transcript_id "KOE98494"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 41773 42912 . - . gene_id "W7K_14645"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 41773 42912 . - . gene_id "W7K_14645"; transcript_id "KOE98495"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 41773 42912 . - . gene_id "W7K_14645"; transcript_id "KOE98495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98495-1"; +contig21 ena CDS 41776 42912 . - 0 gene_id "W7K_14645"; transcript_id "KOE98495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98495"; +contig21 ena start_codon 42910 42912 . - 0 gene_id "W7K_14645"; transcript_id "KOE98495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 41773 41775 . - 0 gene_id "W7K_14645"; transcript_id "KOE98495"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 43114 43719 . - . gene_id "W7K_14650"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 43114 43719 . - . gene_id "W7K_14650"; transcript_id "KOE98496"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 43114 43719 . - . gene_id "W7K_14650"; transcript_id "KOE98496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98496-1"; +contig21 ena CDS 43117 43719 . - 0 gene_id "W7K_14650"; transcript_id "KOE98496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98496"; +contig21 ena start_codon 43717 43719 . - 0 gene_id "W7K_14650"; transcript_id "KOE98496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 43114 43116 . - 0 gene_id "W7K_14650"; transcript_id "KOE98496"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 43739 45238 . - . gene_id "W7K_14655"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 43739 45238 . - . gene_id "W7K_14655"; transcript_id "KOE98497"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 43739 45238 . - . gene_id "W7K_14655"; transcript_id "KOE98497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98497-1"; +contig21 ena CDS 43742 45238 . - 0 gene_id "W7K_14655"; transcript_id "KOE98497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98497"; +contig21 ena start_codon 45236 45238 . - 0 gene_id "W7K_14655"; transcript_id "KOE98497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 43739 43741 . - 0 gene_id "W7K_14655"; transcript_id "KOE98497"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 45420 46295 . - . gene_id "W7K_14660"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 45420 46295 . - . gene_id "W7K_14660"; transcript_id "KOE98498"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 45420 46295 . - . gene_id "W7K_14660"; transcript_id "KOE98498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98498-1"; +contig21 ena CDS 45423 46295 . - 0 gene_id "W7K_14660"; transcript_id "KOE98498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98498"; +contig21 ena start_codon 46293 46295 . - 0 gene_id "W7K_14660"; transcript_id "KOE98498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 45420 45422 . - 0 gene_id "W7K_14660"; transcript_id "KOE98498"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 46631 47713 . + . gene_id "W7K_14665"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 46631 47713 . + . gene_id "W7K_14665"; transcript_id "KOE98499"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 46631 47713 . + . gene_id "W7K_14665"; transcript_id "KOE98499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98499-1"; +contig21 ena CDS 46631 47710 . + 0 gene_id "W7K_14665"; transcript_id "KOE98499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98499"; +contig21 ena start_codon 46631 46633 . + 0 gene_id "W7K_14665"; transcript_id "KOE98499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 47711 47713 . + 0 gene_id "W7K_14665"; transcript_id "KOE98499"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 47706 48773 . + . gene_id "W7K_14670"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 47706 48773 . + . gene_id "W7K_14670"; transcript_id "KOE98500"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 47706 48773 . + . gene_id "W7K_14670"; transcript_id "KOE98500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98500-1"; +contig21 ena CDS 47706 48770 . + 0 gene_id "W7K_14670"; transcript_id "KOE98500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98500"; +contig21 ena start_codon 47706 47708 . + 0 gene_id "W7K_14670"; transcript_id "KOE98500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 48771 48773 . + 0 gene_id "W7K_14670"; transcript_id "KOE98500"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 48775 49128 . + . gene_id "W7K_14675"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 48775 49128 . + . gene_id "W7K_14675"; transcript_id "KOE98511"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 48775 49128 . + . gene_id "W7K_14675"; transcript_id "KOE98511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98511-1"; +contig21 ena CDS 48775 49125 . + 0 gene_id "W7K_14675"; transcript_id "KOE98511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98511"; +contig21 ena start_codon 48775 48777 . + 0 gene_id "W7K_14675"; transcript_id "KOE98511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 49126 49128 . + 0 gene_id "W7K_14675"; transcript_id "KOE98511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 49125 50504 . + . gene_id "W7K_14680"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 49125 50504 . + . gene_id "W7K_14680"; transcript_id "KOE98501"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 49125 50504 . + . gene_id "W7K_14680"; transcript_id "KOE98501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98501-1"; +contig21 ena CDS 49125 50501 . + 0 gene_id "W7K_14680"; transcript_id "KOE98501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98501"; +contig21 ena start_codon 49125 49127 . + 0 gene_id "W7K_14680"; transcript_id "KOE98501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 50502 50504 . + 0 gene_id "W7K_14680"; transcript_id "KOE98501"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 50676 51062 . - . gene_id "W7K_14685"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 50676 51062 . - . gene_id "W7K_14685"; transcript_id "KOE98502"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 50676 51062 . - . gene_id "W7K_14685"; transcript_id "KOE98502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98502-1"; +contig21 ena CDS 50679 51062 . - 0 gene_id "W7K_14685"; transcript_id "KOE98502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98502"; +contig21 ena start_codon 51060 51062 . - 0 gene_id "W7K_14685"; transcript_id "KOE98502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 50676 50678 . - 0 gene_id "W7K_14685"; transcript_id "KOE98502"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 51180 51887 . - . gene_id "W7K_14690"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 51180 51887 . - . gene_id "W7K_14690"; transcript_id "KOE98503"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 51180 51887 . - . gene_id "W7K_14690"; transcript_id "KOE98503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98503-1"; +contig21 ena CDS 51183 51887 . - 0 gene_id "W7K_14690"; transcript_id "KOE98503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98503"; +contig21 ena start_codon 51885 51887 . - 0 gene_id "W7K_14690"; transcript_id "KOE98503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 51180 51182 . - 0 gene_id "W7K_14690"; transcript_id "KOE98503"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 51887 52522 . - . gene_id "W7K_14695"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 51887 52522 . - . gene_id "W7K_14695"; transcript_id "KOE98512"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 51887 52522 . - . gene_id "W7K_14695"; transcript_id "KOE98512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98512-1"; +contig21 ena CDS 51890 52522 . - 0 gene_id "W7K_14695"; transcript_id "KOE98512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98512"; +contig21 ena start_codon 52520 52522 . - 0 gene_id "W7K_14695"; transcript_id "KOE98512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 51887 51889 . - 0 gene_id "W7K_14695"; transcript_id "KOE98512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 52628 54166 . + . gene_id "W7K_14700"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 52628 54166 . + . gene_id "W7K_14700"; transcript_id "KOE98504"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 52628 54166 . + . gene_id "W7K_14700"; transcript_id "KOE98504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98504-1"; +contig21 ena CDS 52628 54163 . + 0 gene_id "W7K_14700"; transcript_id "KOE98504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98504"; +contig21 ena start_codon 52628 52630 . + 0 gene_id "W7K_14700"; transcript_id "KOE98504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 54164 54166 . + 0 gene_id "W7K_14700"; transcript_id "KOE98504"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 54262 55188 . - . gene_id "W7K_14705"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 54262 55188 . - . gene_id "W7K_14705"; transcript_id "KOE98505"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 54262 55188 . - . gene_id "W7K_14705"; transcript_id "KOE98505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98505-1"; +contig21 ena CDS 54265 55188 . - 0 gene_id "W7K_14705"; transcript_id "KOE98505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98505"; +contig21 ena start_codon 55186 55188 . - 0 gene_id "W7K_14705"; transcript_id "KOE98505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 54262 54264 . - 0 gene_id "W7K_14705"; transcript_id "KOE98505"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 55351 57042 . + . gene_id "W7K_14710"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 55351 57042 . + . gene_id "W7K_14710"; transcript_id "KOE98506"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 55351 57042 . + . gene_id "W7K_14710"; transcript_id "KOE98506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98506-1"; +contig21 ena CDS 55351 57039 . + 0 gene_id "W7K_14710"; transcript_id "KOE98506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98506"; +contig21 ena start_codon 55351 55353 . + 0 gene_id "W7K_14710"; transcript_id "KOE98506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 57040 57042 . + 0 gene_id "W7K_14710"; transcript_id "KOE98506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 57286 59391 . + . gene_id "W7K_14715"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 57286 59391 . + . gene_id "W7K_14715"; transcript_id "KOE98513"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 57286 59391 . + . gene_id "W7K_14715"; transcript_id "KOE98513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98513-1"; +contig21 ena CDS 57286 59388 . + 0 gene_id "W7K_14715"; transcript_id "KOE98513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98513"; +contig21 ena start_codon 57286 57288 . + 0 gene_id "W7K_14715"; transcript_id "KOE98513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 59389 59391 . + 0 gene_id "W7K_14715"; transcript_id "KOE98513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena gene 59614 60528 . - . gene_id "W7K_14720"; gene_source "ena"; gene_biotype "protein_coding"; +contig21 ena transcript 59614 60528 . - . gene_id "W7K_14720"; transcript_id "KOE98507"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena exon 59614 60528 . - . gene_id "W7K_14720"; transcript_id "KOE98507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98507-1"; +contig21 ena CDS 59617 60528 . - 0 gene_id "W7K_14720"; transcript_id "KOE98507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98507"; +contig21 ena start_codon 60526 60528 . - 0 gene_id "W7K_14720"; transcript_id "KOE98507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig21 ena stop_codon 59614 59616 . - 0 gene_id "W7K_14720"; transcript_id "KOE98507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 488 2065 . - . gene_id "W7K_10495"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 488 2065 . - . gene_id "W7K_10495"; transcript_id "KOE99225"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 488 2065 . - . gene_id "W7K_10495"; transcript_id "KOE99225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99225-1"; +contig26 ena CDS 491 2065 . - 0 gene_id "W7K_10495"; transcript_id "KOE99225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99225"; +contig26 ena start_codon 2063 2065 . - 0 gene_id "W7K_10495"; transcript_id "KOE99225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 488 490 . - 0 gene_id "W7K_10495"; transcript_id "KOE99225"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 2495 4339 . + . gene_id "W7K_10500"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 2495 4339 . + . gene_id "W7K_10500"; transcript_id "KOE99226"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 2495 4339 . + . gene_id "W7K_10500"; transcript_id "KOE99226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99226-1"; +contig26 ena CDS 2495 4336 . + 0 gene_id "W7K_10500"; transcript_id "KOE99226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99226"; +contig26 ena start_codon 2495 2497 . + 0 gene_id "W7K_10500"; transcript_id "KOE99226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 4337 4339 . + 0 gene_id "W7K_10500"; transcript_id "KOE99226"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 4433 5104 . + . gene_id "W7K_10505"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 4433 5104 . + . gene_id "W7K_10505"; transcript_id "KOE99227"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 4433 5104 . + . gene_id "W7K_10505"; transcript_id "KOE99227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99227-1"; +contig26 ena CDS 4433 5101 . + 0 gene_id "W7K_10505"; transcript_id "KOE99227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99227"; +contig26 ena start_codon 4433 4435 . + 0 gene_id "W7K_10505"; transcript_id "KOE99227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 5102 5104 . + 0 gene_id "W7K_10505"; transcript_id "KOE99227"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 5365 7689 . + . gene_id "W7K_10510"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 5365 7689 . + . gene_id "W7K_10510"; transcript_id "KOE99228"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 5365 7689 . + . gene_id "W7K_10510"; transcript_id "KOE99228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99228-1"; +contig26 ena CDS 5365 7686 . + 0 gene_id "W7K_10510"; transcript_id "KOE99228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99228"; +contig26 ena start_codon 5365 5367 . + 0 gene_id "W7K_10510"; transcript_id "KOE99228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 7687 7689 . + 0 gene_id "W7K_10510"; transcript_id "KOE99228"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 7804 8703 . + . gene_id "W7K_10515"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 7804 8703 . + . gene_id "W7K_10515"; transcript_id "KOE99229"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 7804 8703 . + . gene_id "W7K_10515"; transcript_id "KOE99229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99229-1"; +contig26 ena CDS 7804 8700 . + 0 gene_id "W7K_10515"; transcript_id "KOE99229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99229"; +contig26 ena start_codon 7804 7806 . + 0 gene_id "W7K_10515"; transcript_id "KOE99229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 8701 8703 . + 0 gene_id "W7K_10515"; transcript_id "KOE99229"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 8753 11611 . + . gene_id "W7K_10520"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 8753 11611 . + . gene_id "W7K_10520"; transcript_id "KOE99230"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 8753 11611 . + . gene_id "W7K_10520"; transcript_id "KOE99230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99230-1"; +contig26 ena CDS 8753 11608 . + 0 gene_id "W7K_10520"; transcript_id "KOE99230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99230"; +contig26 ena start_codon 8753 8755 . + 0 gene_id "W7K_10520"; transcript_id "KOE99230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 11609 11611 . + 0 gene_id "W7K_10520"; transcript_id "KOE99230"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 11782 11991 . + . gene_id "W7K_10525"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 11782 11991 . + . gene_id "W7K_10525"; transcript_id "KOE99231"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 11782 11991 . + . gene_id "W7K_10525"; transcript_id "KOE99231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99231-1"; +contig26 ena CDS 11782 11988 . + 0 gene_id "W7K_10525"; transcript_id "KOE99231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99231"; +contig26 ena start_codon 11782 11784 . + 0 gene_id "W7K_10525"; transcript_id "KOE99231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 11989 11991 . + 0 gene_id "W7K_10525"; transcript_id "KOE99231"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 12047 13168 . - . gene_id "W7K_10530"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 12047 13168 . - . gene_id "W7K_10530"; transcript_id "KOE99232"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 12047 13168 . - . gene_id "W7K_10530"; transcript_id "KOE99232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99232-1"; +contig26 ena CDS 12050 13168 . - 0 gene_id "W7K_10530"; transcript_id "KOE99232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99232"; +contig26 ena start_codon 13166 13168 . - 0 gene_id "W7K_10530"; transcript_id "KOE99232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 12047 12049 . - 0 gene_id "W7K_10530"; transcript_id "KOE99232"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 13321 13857 . - . gene_id "W7K_10535"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 13321 13857 . - . gene_id "W7K_10535"; transcript_id "KOE99233"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 13321 13857 . - . gene_id "W7K_10535"; transcript_id "KOE99233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99233-1"; +contig26 ena CDS 13324 13857 . - 0 gene_id "W7K_10535"; transcript_id "KOE99233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99233"; +contig26 ena start_codon 13855 13857 . - 0 gene_id "W7K_10535"; transcript_id "KOE99233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 13321 13323 . - 0 gene_id "W7K_10535"; transcript_id "KOE99233"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 14041 14514 . + . gene_id "W7K_10540"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 14041 14514 . + . gene_id "W7K_10540"; transcript_id "KOE99234"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 14041 14514 . + . gene_id "W7K_10540"; transcript_id "KOE99234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99234-1"; +contig26 ena CDS 14041 14511 . + 0 gene_id "W7K_10540"; transcript_id "KOE99234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99234"; +contig26 ena start_codon 14041 14043 . + 0 gene_id "W7K_10540"; transcript_id "KOE99234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 14512 14514 . + 0 gene_id "W7K_10540"; transcript_id "KOE99234"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 14587 15087 . + . gene_id "W7K_10545"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 14587 15087 . + . gene_id "W7K_10545"; transcript_id "KOE99235"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 14587 15087 . + . gene_id "W7K_10545"; transcript_id "KOE99235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99235-1"; +contig26 ena CDS 14587 15084 . + 0 gene_id "W7K_10545"; transcript_id "KOE99235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99235"; +contig26 ena start_codon 14587 14589 . + 0 gene_id "W7K_10545"; transcript_id "KOE99235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 15085 15087 . + 0 gene_id "W7K_10545"; transcript_id "KOE99235"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 15192 16127 . + . gene_id "W7K_10550"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 15192 16127 . + . gene_id "W7K_10550"; transcript_id "KOE99236"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 15192 16127 . + . gene_id "W7K_10550"; transcript_id "KOE99236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99236-1"; +contig26 ena CDS 15192 16124 . + 0 gene_id "W7K_10550"; transcript_id "KOE99236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99236"; +contig26 ena start_codon 15192 15194 . + 0 gene_id "W7K_10550"; transcript_id "KOE99236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 16125 16127 . + 0 gene_id "W7K_10550"; transcript_id "KOE99236"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 16356 19274 . + . gene_id "W7K_10555"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 16356 19274 . + . gene_id "W7K_10555"; transcript_id "KOE99237"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 16356 19274 . + . gene_id "W7K_10555"; transcript_id "KOE99237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99237-1"; +contig26 ena CDS 16356 19271 . + 0 gene_id "W7K_10555"; transcript_id "KOE99237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99237"; +contig26 ena start_codon 16356 16358 . + 0 gene_id "W7K_10555"; transcript_id "KOE99237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 19272 19274 . + 0 gene_id "W7K_10555"; transcript_id "KOE99237"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 19425 19682 . - . gene_id "W7K_10560"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 19425 19682 . - . gene_id "W7K_10560"; transcript_id "KOE99238"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 19425 19682 . - . gene_id "W7K_10560"; transcript_id "KOE99238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99238-1"; +contig26 ena CDS 19428 19682 . - 0 gene_id "W7K_10560"; transcript_id "KOE99238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99238"; +contig26 ena start_codon 19680 19682 . - 0 gene_id "W7K_10560"; transcript_id "KOE99238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 19425 19427 . - 0 gene_id "W7K_10560"; transcript_id "KOE99238"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 19789 20376 . + . gene_id "W7K_10565"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 19789 20376 . + . gene_id "W7K_10565"; transcript_id "KOE99239"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 19789 20376 . + . gene_id "W7K_10565"; transcript_id "KOE99239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99239-1"; +contig26 ena CDS 19789 20373 . + 0 gene_id "W7K_10565"; transcript_id "KOE99239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99239"; +contig26 ena start_codon 19789 19791 . + 0 gene_id "W7K_10565"; transcript_id "KOE99239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 20374 20376 . + 0 gene_id "W7K_10565"; transcript_id "KOE99239"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 20408 20875 . + . gene_id "W7K_10570"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 20408 20875 . + . gene_id "W7K_10570"; transcript_id "KOE99240"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 20408 20875 . + . gene_id "W7K_10570"; transcript_id "KOE99240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99240-1"; +contig26 ena CDS 20408 20872 . + 0 gene_id "W7K_10570"; transcript_id "KOE99240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99240"; +contig26 ena start_codon 20408 20410 . + 0 gene_id "W7K_10570"; transcript_id "KOE99240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 20873 20875 . + 0 gene_id "W7K_10570"; transcript_id "KOE99240"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 20862 21590 . + . gene_id "W7K_10575"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 20862 21590 . + . gene_id "W7K_10575"; transcript_id "KOE99273"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 20862 21590 . + . gene_id "W7K_10575"; transcript_id "KOE99273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99273-1"; +contig26 ena CDS 20862 21587 . + 0 gene_id "W7K_10575"; transcript_id "KOE99273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99273"; +contig26 ena start_codon 20862 20864 . + 0 gene_id "W7K_10575"; transcript_id "KOE99273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 21588 21590 . + 0 gene_id "W7K_10575"; transcript_id "KOE99273"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 21600 22025 . + . gene_id "W7K_10580"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 21600 22025 . + . gene_id "W7K_10580"; transcript_id "KOE99241"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 21600 22025 . + . gene_id "W7K_10580"; transcript_id "KOE99241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99241-1"; +contig26 ena CDS 21600 22022 . + 0 gene_id "W7K_10580"; transcript_id "KOE99241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99241"; +contig26 ena start_codon 21600 21602 . + 0 gene_id "W7K_10580"; transcript_id "KOE99241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 22023 22025 . + 0 gene_id "W7K_10580"; transcript_id "KOE99241"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 22022 22741 . + . gene_id "W7K_10585"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 22022 22741 . + . gene_id "W7K_10585"; transcript_id "KOE99242"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 22022 22741 . + . gene_id "W7K_10585"; transcript_id "KOE99242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99242-1"; +contig26 ena CDS 22022 22738 . + 0 gene_id "W7K_10585"; transcript_id "KOE99242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99242"; +contig26 ena start_codon 22022 22024 . + 0 gene_id "W7K_10585"; transcript_id "KOE99242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 22739 22741 . + 0 gene_id "W7K_10585"; transcript_id "KOE99242"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 22821 24848 . - . gene_id "W7K_10590"; gene_name "hppA"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 22821 24848 . - . gene_id "W7K_10590"; transcript_id "KOE99243"; gene_name "hppA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hppA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 22821 24848 . - . gene_id "W7K_10590"; transcript_id "KOE99243"; exon_number "1"; gene_name "hppA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hppA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99243-1"; +contig26 ena CDS 22824 24848 . - 0 gene_id "W7K_10590"; transcript_id "KOE99243"; exon_number "1"; gene_name "hppA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hppA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99243"; +contig26 ena start_codon 24846 24848 . - 0 gene_id "W7K_10590"; transcript_id "KOE99243"; exon_number "1"; gene_name "hppA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hppA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 22821 22823 . - 0 gene_id "W7K_10590"; transcript_id "KOE99243"; exon_number "1"; gene_name "hppA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hppA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 25157 25660 . + . gene_id "W7K_10595"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 25157 25660 . + . gene_id "W7K_10595"; transcript_id "KOE99244"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 25157 25660 . + . gene_id "W7K_10595"; transcript_id "KOE99244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99244-1"; +contig26 ena CDS 25157 25657 . + 0 gene_id "W7K_10595"; transcript_id "KOE99244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99244"; +contig26 ena start_codon 25157 25159 . + 0 gene_id "W7K_10595"; transcript_id "KOE99244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 25658 25660 . + 0 gene_id "W7K_10595"; transcript_id "KOE99244"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 25735 26127 . - . gene_id "W7K_10600"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 25735 26127 . - . gene_id "W7K_10600"; transcript_id "KOE99274"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 25735 26127 . - . gene_id "W7K_10600"; transcript_id "KOE99274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99274-1"; +contig26 ena CDS 25738 26127 . - 0 gene_id "W7K_10600"; transcript_id "KOE99274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99274"; +contig26 ena start_codon 26125 26127 . - 0 gene_id "W7K_10600"; transcript_id "KOE99274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 25735 25737 . - 0 gene_id "W7K_10600"; transcript_id "KOE99274"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 26247 27041 . - . gene_id "W7K_10605"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 26247 27041 . - . gene_id "W7K_10605"; transcript_id "KOE99245"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 26247 27041 . - . gene_id "W7K_10605"; transcript_id "KOE99245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99245-1"; +contig26 ena CDS 26250 27041 . - 0 gene_id "W7K_10605"; transcript_id "KOE99245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99245"; +contig26 ena start_codon 27039 27041 . - 0 gene_id "W7K_10605"; transcript_id "KOE99245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 26247 26249 . - 0 gene_id "W7K_10605"; transcript_id "KOE99245"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 27247 28503 . - . gene_id "W7K_10610"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 27247 28503 . - . gene_id "W7K_10610"; transcript_id "KOE99246"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 27247 28503 . - . gene_id "W7K_10610"; transcript_id "KOE99246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99246-1"; +contig26 ena CDS 27250 28503 . - 0 gene_id "W7K_10610"; transcript_id "KOE99246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99246"; +contig26 ena start_codon 28501 28503 . - 0 gene_id "W7K_10610"; transcript_id "KOE99246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 27247 27249 . - 0 gene_id "W7K_10610"; transcript_id "KOE99246"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 28640 29203 . + . gene_id "W7K_10615"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 28640 29203 . + . gene_id "W7K_10615"; transcript_id "KOE99247"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 28640 29203 . + . gene_id "W7K_10615"; transcript_id "KOE99247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99247-1"; +contig26 ena CDS 28640 29200 . + 0 gene_id "W7K_10615"; transcript_id "KOE99247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99247"; +contig26 ena start_codon 28640 28642 . + 0 gene_id "W7K_10615"; transcript_id "KOE99247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 29201 29203 . + 0 gene_id "W7K_10615"; transcript_id "KOE99247"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 29532 30896 . + . gene_id "W7K_10620"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 29532 30896 . + . gene_id "W7K_10620"; transcript_id "KOE99248"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 29532 30896 . + . gene_id "W7K_10620"; transcript_id "KOE99248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99248-1"; +contig26 ena CDS 29532 30893 . + 0 gene_id "W7K_10620"; transcript_id "KOE99248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99248"; +contig26 ena start_codon 29532 29534 . + 0 gene_id "W7K_10620"; transcript_id "KOE99248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 30894 30896 . + 0 gene_id "W7K_10620"; transcript_id "KOE99248"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 30893 31471 . + . gene_id "W7K_10625"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 30893 31471 . + . gene_id "W7K_10625"; transcript_id "KOE99249"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 30893 31471 . + . gene_id "W7K_10625"; transcript_id "KOE99249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99249-1"; +contig26 ena CDS 30893 31468 . + 0 gene_id "W7K_10625"; transcript_id "KOE99249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99249"; +contig26 ena start_codon 30893 30895 . + 0 gene_id "W7K_10625"; transcript_id "KOE99249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 31469 31471 . + 0 gene_id "W7K_10625"; transcript_id "KOE99249"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 31569 33563 . - . gene_id "W7K_10630"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 31569 33563 . - . gene_id "W7K_10630"; transcript_id "KOE99250"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 31569 33563 . - . gene_id "W7K_10630"; transcript_id "KOE99250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99250-1"; +contig26 ena CDS 31572 33563 . - 0 gene_id "W7K_10630"; transcript_id "KOE99250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99250"; +contig26 ena start_codon 33561 33563 . - 0 gene_id "W7K_10630"; transcript_id "KOE99250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 31569 31571 . - 0 gene_id "W7K_10630"; transcript_id "KOE99250"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 33649 34311 . + . gene_id "W7K_10635"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 33649 34311 . + . gene_id "W7K_10635"; transcript_id "KOE99251"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 33649 34311 . + . gene_id "W7K_10635"; transcript_id "KOE99251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99251-1"; +contig26 ena CDS 33649 34308 . + 0 gene_id "W7K_10635"; transcript_id "KOE99251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99251"; +contig26 ena start_codon 33649 33651 . + 0 gene_id "W7K_10635"; transcript_id "KOE99251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 34309 34311 . + 0 gene_id "W7K_10635"; transcript_id "KOE99251"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 34308 34814 . + . gene_id "W7K_10640"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 34308 34814 . + . gene_id "W7K_10640"; transcript_id "KOE99252"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 34308 34814 . + . gene_id "W7K_10640"; transcript_id "KOE99252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99252-1"; +contig26 ena CDS 34308 34811 . + 0 gene_id "W7K_10640"; transcript_id "KOE99252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99252"; +contig26 ena start_codon 34308 34310 . + 0 gene_id "W7K_10640"; transcript_id "KOE99252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 34812 34814 . + 0 gene_id "W7K_10640"; transcript_id "KOE99252"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 34972 35334 . + . gene_id "W7K_10645"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 34972 35334 . + . gene_id "W7K_10645"; transcript_id "KOE99253"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 34972 35334 . + . gene_id "W7K_10645"; transcript_id "KOE99253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99253-1"; +contig26 ena CDS 34972 35331 . + 0 gene_id "W7K_10645"; transcript_id "KOE99253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99253"; +contig26 ena start_codon 34972 34974 . + 0 gene_id "W7K_10645"; transcript_id "KOE99253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 35332 35334 . + 0 gene_id "W7K_10645"; transcript_id "KOE99253"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 35409 36092 . - . gene_id "W7K_10650"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 35409 36092 . - . gene_id "W7K_10650"; transcript_id "KOE99254"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 35409 36092 . - . gene_id "W7K_10650"; transcript_id "KOE99254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99254-1"; +contig26 ena CDS 35412 36092 . - 0 gene_id "W7K_10650"; transcript_id "KOE99254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99254"; +contig26 ena start_codon 36090 36092 . - 0 gene_id "W7K_10650"; transcript_id "KOE99254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 35409 35411 . - 0 gene_id "W7K_10650"; transcript_id "KOE99254"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 36201 37019 . + . gene_id "W7K_10655"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 36201 37019 . + . gene_id "W7K_10655"; transcript_id "KOE99275"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 36201 37019 . + . gene_id "W7K_10655"; transcript_id "KOE99275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99275-1"; +contig26 ena CDS 36201 37016 . + 0 gene_id "W7K_10655"; transcript_id "KOE99275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99275"; +contig26 ena start_codon 36201 36203 . + 0 gene_id "W7K_10655"; transcript_id "KOE99275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 37017 37019 . + 0 gene_id "W7K_10655"; transcript_id "KOE99275"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 37113 38105 . + . gene_id "W7K_10660"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 37113 38105 . + . gene_id "W7K_10660"; transcript_id "KOE99255"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 37113 38105 . + . gene_id "W7K_10660"; transcript_id "KOE99255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99255-1"; +contig26 ena CDS 37113 38102 . + 0 gene_id "W7K_10660"; transcript_id "KOE99255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99255"; +contig26 ena start_codon 37113 37115 . + 0 gene_id "W7K_10660"; transcript_id "KOE99255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 38103 38105 . + 0 gene_id "W7K_10660"; transcript_id "KOE99255"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 38141 39088 . + . gene_id "W7K_10665"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 38141 39088 . + . gene_id "W7K_10665"; transcript_id "KOE99256"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 38141 39088 . + . gene_id "W7K_10665"; transcript_id "KOE99256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99256-1"; +contig26 ena CDS 38141 39085 . + 0 gene_id "W7K_10665"; transcript_id "KOE99256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99256"; +contig26 ena start_codon 38141 38143 . + 0 gene_id "W7K_10665"; transcript_id "KOE99256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 39086 39088 . + 0 gene_id "W7K_10665"; transcript_id "KOE99256"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 39154 40026 . - . gene_id "W7K_10670"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 39154 40026 . - . gene_id "W7K_10670"; transcript_id "KOE99257"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 39154 40026 . - . gene_id "W7K_10670"; transcript_id "KOE99257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99257-1"; +contig26 ena CDS 39157 40026 . - 0 gene_id "W7K_10670"; transcript_id "KOE99257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99257"; +contig26 ena start_codon 40024 40026 . - 0 gene_id "W7K_10670"; transcript_id "KOE99257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 39154 39156 . - 0 gene_id "W7K_10670"; transcript_id "KOE99257"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 40090 41316 . + . gene_id "W7K_10675"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 40090 41316 . + . gene_id "W7K_10675"; transcript_id "KOE99258"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 40090 41316 . + . gene_id "W7K_10675"; transcript_id "KOE99258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99258-1"; +contig26 ena CDS 40090 41313 . + 0 gene_id "W7K_10675"; transcript_id "KOE99258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99258"; +contig26 ena start_codon 40090 40092 . + 0 gene_id "W7K_10675"; transcript_id "KOE99258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 41314 41316 . + 0 gene_id "W7K_10675"; transcript_id "KOE99258"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 41410 42012 . - . gene_id "W7K_10680"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 41410 42012 . - . gene_id "W7K_10680"; transcript_id "KOE99259"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 41410 42012 . - . gene_id "W7K_10680"; transcript_id "KOE99259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99259-1"; +contig26 ena CDS 41413 42012 . - 0 gene_id "W7K_10680"; transcript_id "KOE99259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99259"; +contig26 ena start_codon 42010 42012 . - 0 gene_id "W7K_10680"; transcript_id "KOE99259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 41410 41412 . - 0 gene_id "W7K_10680"; transcript_id "KOE99259"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 42136 42585 . + . gene_id "W7K_10685"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 42136 42585 . + . gene_id "W7K_10685"; transcript_id "KOE99260"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 42136 42585 . + . gene_id "W7K_10685"; transcript_id "KOE99260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99260-1"; +contig26 ena CDS 42136 42582 . + 0 gene_id "W7K_10685"; transcript_id "KOE99260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99260"; +contig26 ena start_codon 42136 42138 . + 0 gene_id "W7K_10685"; transcript_id "KOE99260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 42583 42585 . + 0 gene_id "W7K_10685"; transcript_id "KOE99260"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 42656 43945 . - . gene_id "W7K_10690"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 42656 43945 . - . gene_id "W7K_10690"; transcript_id "KOE99261"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 42656 43945 . - . gene_id "W7K_10690"; transcript_id "KOE99261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99261-1"; +contig26 ena CDS 42659 43945 . - 0 gene_id "W7K_10690"; transcript_id "KOE99261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99261"; +contig26 ena start_codon 43943 43945 . - 0 gene_id "W7K_10690"; transcript_id "KOE99261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 42656 42658 . - 0 gene_id "W7K_10690"; transcript_id "KOE99261"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 43962 44588 . - . gene_id "W7K_10695"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 43962 44588 . - . gene_id "W7K_10695"; transcript_id "KOE99262"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 43962 44588 . - . gene_id "W7K_10695"; transcript_id "KOE99262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99262-1"; +contig26 ena CDS 43965 44588 . - 0 gene_id "W7K_10695"; transcript_id "KOE99262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99262"; +contig26 ena start_codon 44586 44588 . - 0 gene_id "W7K_10695"; transcript_id "KOE99262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 43962 43964 . - 0 gene_id "W7K_10695"; transcript_id "KOE99262"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 44656 44847 . + . gene_id "W7K_10700"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 44656 44847 . + . gene_id "W7K_10700"; transcript_id "KOE99263"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 44656 44847 . + . gene_id "W7K_10700"; transcript_id "KOE99263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99263-1"; +contig26 ena CDS 44656 44844 . + 0 gene_id "W7K_10700"; transcript_id "KOE99263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99263"; +contig26 ena start_codon 44656 44658 . + 0 gene_id "W7K_10700"; transcript_id "KOE99263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 44845 44847 . + 0 gene_id "W7K_10700"; transcript_id "KOE99263"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 44926 45771 . - . gene_id "W7K_10705"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 44926 45771 . - . gene_id "W7K_10705"; transcript_id "KOE99264"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 44926 45771 . - . gene_id "W7K_10705"; transcript_id "KOE99264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99264-1"; +contig26 ena CDS 44929 45771 . - 0 gene_id "W7K_10705"; transcript_id "KOE99264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99264"; +contig26 ena start_codon 45769 45771 . - 0 gene_id "W7K_10705"; transcript_id "KOE99264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 44926 44928 . - 0 gene_id "W7K_10705"; transcript_id "KOE99264"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 45954 46397 . - . gene_id "W7K_10710"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 45954 46397 . - . gene_id "W7K_10710"; transcript_id "KOE99265"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 45954 46397 . - . gene_id "W7K_10710"; transcript_id "KOE99265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99265-1"; +contig26 ena CDS 45957 46397 . - 0 gene_id "W7K_10710"; transcript_id "KOE99265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99265"; +contig26 ena start_codon 46395 46397 . - 0 gene_id "W7K_10710"; transcript_id "KOE99265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 45954 45956 . - 0 gene_id "W7K_10710"; transcript_id "KOE99265"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 46419 47066 . - . gene_id "W7K_10715"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 46419 47066 . - . gene_id "W7K_10715"; transcript_id "KOE99266"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 46419 47066 . - . gene_id "W7K_10715"; transcript_id "KOE99266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99266-1"; +contig26 ena CDS 46422 47066 . - 0 gene_id "W7K_10715"; transcript_id "KOE99266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99266"; +contig26 ena start_codon 47064 47066 . - 0 gene_id "W7K_10715"; transcript_id "KOE99266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 46419 46421 . - 0 gene_id "W7K_10715"; transcript_id "KOE99266"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 47089 47568 . - . gene_id "W7K_10720"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 47089 47568 . - . gene_id "W7K_10720"; transcript_id "KOE99267"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 47089 47568 . - . gene_id "W7K_10720"; transcript_id "KOE99267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99267-1"; +contig26 ena CDS 47092 47568 . - 0 gene_id "W7K_10720"; transcript_id "KOE99267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99267"; +contig26 ena start_codon 47566 47568 . - 0 gene_id "W7K_10720"; transcript_id "KOE99267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 47089 47091 . - 0 gene_id "W7K_10720"; transcript_id "KOE99267"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 47565 48158 . - . gene_id "W7K_10725"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 47565 48158 . - . gene_id "W7K_10725"; transcript_id "KOE99268"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 47565 48158 . - . gene_id "W7K_10725"; transcript_id "KOE99268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99268-1"; +contig26 ena CDS 47568 48158 . - 0 gene_id "W7K_10725"; transcript_id "KOE99268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99268"; +contig26 ena start_codon 48156 48158 . - 0 gene_id "W7K_10725"; transcript_id "KOE99268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 47565 47567 . - 0 gene_id "W7K_10725"; transcript_id "KOE99268"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 48525 48821 . - . gene_id "W7K_10730"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 48525 48821 . - . gene_id "W7K_10730"; transcript_id "KOE99269"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 48525 48821 . - . gene_id "W7K_10730"; transcript_id "KOE99269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99269-1"; +contig26 ena CDS 48528 48821 . - 0 gene_id "W7K_10730"; transcript_id "KOE99269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99269"; +contig26 ena start_codon 48819 48821 . - 0 gene_id "W7K_10730"; transcript_id "KOE99269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 48525 48527 . - 0 gene_id "W7K_10730"; transcript_id "KOE99269"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 48818 49039 . - . gene_id "W7K_10735"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 48818 49039 . - . gene_id "W7K_10735"; transcript_id "KOE99270"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 48818 49039 . - . gene_id "W7K_10735"; transcript_id "KOE99270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99270-1"; +contig26 ena CDS 48821 49039 . - 0 gene_id "W7K_10735"; transcript_id "KOE99270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99270"; +contig26 ena start_codon 49037 49039 . - 0 gene_id "W7K_10735"; transcript_id "KOE99270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 48818 48820 . - 0 gene_id "W7K_10735"; transcript_id "KOE99270"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 49193 49741 . + . gene_id "W7K_10740"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 49193 49741 . + . gene_id "W7K_10740"; transcript_id "KOE99271"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 49193 49741 . + . gene_id "W7K_10740"; transcript_id "KOE99271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99271-1"; +contig26 ena CDS 49193 49738 . + 0 gene_id "W7K_10740"; transcript_id "KOE99271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99271"; +contig26 ena start_codon 49193 49195 . + 0 gene_id "W7K_10740"; transcript_id "KOE99271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 49739 49741 . + 0 gene_id "W7K_10740"; transcript_id "KOE99271"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena gene 49741 51069 . + . gene_id "W7K_10745"; gene_source "ena"; gene_biotype "protein_coding"; +contig26 ena transcript 49741 51069 . + . gene_id "W7K_10745"; transcript_id "KOE99272"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena exon 49741 51069 . + . gene_id "W7K_10745"; transcript_id "KOE99272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99272-1"; +contig26 ena CDS 49741 51066 . + 0 gene_id "W7K_10745"; transcript_id "KOE99272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99272"; +contig26 ena start_codon 49741 49743 . + 0 gene_id "W7K_10745"; transcript_id "KOE99272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig26 ena stop_codon 51067 51069 . + 0 gene_id "W7K_10745"; transcript_id "KOE99272"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 463 1359 . + . gene_id "W7K_09135"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 463 1359 . + . gene_id "W7K_09135"; transcript_id "KOE99506"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 463 1359 . + . gene_id "W7K_09135"; transcript_id "KOE99506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99506-1"; +contig30 ena CDS 463 1356 . + 0 gene_id "W7K_09135"; transcript_id "KOE99506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99506"; +contig30 ena start_codon 463 465 . + 0 gene_id "W7K_09135"; transcript_id "KOE99506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 1357 1359 . + 0 gene_id "W7K_09135"; transcript_id "KOE99506"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 1359 2312 . + . gene_id "W7K_09140"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 1359 2312 . + . gene_id "W7K_09140"; transcript_id "KOE99507"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 1359 2312 . + . gene_id "W7K_09140"; transcript_id "KOE99507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99507-1"; +contig30 ena CDS 1359 2309 . + 0 gene_id "W7K_09140"; transcript_id "KOE99507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99507"; +contig30 ena start_codon 1359 1361 . + 0 gene_id "W7K_09140"; transcript_id "KOE99507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 2310 2312 . + 0 gene_id "W7K_09140"; transcript_id "KOE99507"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 2409 2684 . + . gene_id "W7K_09145"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 2409 2684 . + . gene_id "W7K_09145"; transcript_id "KOE99508"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 2409 2684 . + . gene_id "W7K_09145"; transcript_id "KOE99508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99508-1"; +contig30 ena CDS 2409 2681 . + 0 gene_id "W7K_09145"; transcript_id "KOE99508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99508"; +contig30 ena start_codon 2409 2411 . + 0 gene_id "W7K_09145"; transcript_id "KOE99508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 2682 2684 . + 0 gene_id "W7K_09145"; transcript_id "KOE99508"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 2699 4009 . + . gene_id "W7K_09150"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 2699 4009 . + . gene_id "W7K_09150"; transcript_id "KOE99509"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 2699 4009 . + . gene_id "W7K_09150"; transcript_id "KOE99509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99509-1"; +contig30 ena CDS 2699 4006 . + 0 gene_id "W7K_09150"; transcript_id "KOE99509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99509"; +contig30 ena start_codon 2699 2701 . + 0 gene_id "W7K_09150"; transcript_id "KOE99509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 4007 4009 . + 0 gene_id "W7K_09150"; transcript_id "KOE99509"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 4132 4626 . + . gene_id "W7K_09155"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 4132 4626 . + . gene_id "W7K_09155"; transcript_id "KOE99539"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 4132 4626 . + . gene_id "W7K_09155"; transcript_id "KOE99539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99539-1"; +contig30 ena CDS 4132 4623 . + 0 gene_id "W7K_09155"; transcript_id "KOE99539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99539"; +contig30 ena start_codon 4132 4134 . + 0 gene_id "W7K_09155"; transcript_id "KOE99539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 4624 4626 . + 0 gene_id "W7K_09155"; transcript_id "KOE99539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 4661 6343 . + . gene_id "W7K_09160"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 4661 6343 . + . gene_id "W7K_09160"; transcript_id "KOE99540"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 4661 6343 . + . gene_id "W7K_09160"; transcript_id "KOE99540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99540-1"; +contig30 ena CDS 4661 6340 . + 0 gene_id "W7K_09160"; transcript_id "KOE99540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99540"; +contig30 ena start_codon 4661 4663 . + 0 gene_id "W7K_09160"; transcript_id "KOE99540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 6341 6343 . + 0 gene_id "W7K_09160"; transcript_id "KOE99540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 6509 7144 . + . gene_id "W7K_09165"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 6509 7144 . + . gene_id "W7K_09165"; transcript_id "KOE99510"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 6509 7144 . + . gene_id "W7K_09165"; transcript_id "KOE99510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99510-1"; +contig30 ena CDS 6509 7141 . + 0 gene_id "W7K_09165"; transcript_id "KOE99510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99510"; +contig30 ena start_codon 6509 6511 . + 0 gene_id "W7K_09165"; transcript_id "KOE99510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 7142 7144 . + 0 gene_id "W7K_09165"; transcript_id "KOE99510"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 7349 8386 . + . gene_id "W7K_09170"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 7349 8386 . + . gene_id "W7K_09170"; transcript_id "KOE99511"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 7349 8386 . + . gene_id "W7K_09170"; transcript_id "KOE99511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99511-1"; +contig30 ena CDS 7349 8383 . + 0 gene_id "W7K_09170"; transcript_id "KOE99511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99511"; +contig30 ena start_codon 7349 7351 . + 0 gene_id "W7K_09170"; transcript_id "KOE99511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 8384 8386 . + 0 gene_id "W7K_09170"; transcript_id "KOE99511"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 8497 8988 . + . gene_id "W7K_09175"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 8497 8988 . + . gene_id "W7K_09175"; transcript_id "KOE99512"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 8497 8988 . + . gene_id "W7K_09175"; transcript_id "KOE99512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99512-1"; +contig30 ena CDS 8497 8985 . + 0 gene_id "W7K_09175"; transcript_id "KOE99512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99512"; +contig30 ena start_codon 8497 8499 . + 0 gene_id "W7K_09175"; transcript_id "KOE99512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 8986 8988 . + 0 gene_id "W7K_09175"; transcript_id "KOE99512"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 9099 11747 . + . gene_id "W7K_09180"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 9099 11747 . + . gene_id "W7K_09180"; transcript_id "KOE99513"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 9099 11747 . + . gene_id "W7K_09180"; transcript_id "KOE99513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99513-1"; +contig30 ena CDS 9099 11744 . + 0 gene_id "W7K_09180"; transcript_id "KOE99513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99513"; +contig30 ena start_codon 9099 9101 . + 0 gene_id "W7K_09180"; transcript_id "KOE99513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 11745 11747 . + 0 gene_id "W7K_09180"; transcript_id "KOE99513"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 11895 12098 . + . gene_id "W7K_09185"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 11895 12098 . + . gene_id "W7K_09185"; transcript_id "KOE99514"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 11895 12098 . + . gene_id "W7K_09185"; transcript_id "KOE99514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99514-1"; +contig30 ena CDS 11895 12095 . + 0 gene_id "W7K_09185"; transcript_id "KOE99514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99514"; +contig30 ena start_codon 11895 11897 . + 0 gene_id "W7K_09185"; transcript_id "KOE99514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 12096 12098 . + 0 gene_id "W7K_09185"; transcript_id "KOE99514"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 12177 12269 . + . gene_id "W7K_09190"; gene_source "ena"; gene_biotype "tRNA"; +contig30 ena transcript 12177 12269 . + . gene_id "W7K_09190"; transcript_id "EBT00051077638"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_09190"; transcript_source "ena"; transcript_biotype "tRNA"; +contig30 ena exon 12177 12269 . + . gene_id "W7K_09190"; transcript_id "EBT00051077638"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_09190"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_09190-1"; +contig30 ena gene 12365 12820 . - . gene_id "W7K_09195"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 12365 12820 . - . gene_id "W7K_09195"; transcript_id "KOE99515"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 12365 12820 . - . gene_id "W7K_09195"; transcript_id "KOE99515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99515-1"; +contig30 ena CDS 12368 12820 . - 0 gene_id "W7K_09195"; transcript_id "KOE99515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99515"; +contig30 ena start_codon 12818 12820 . - 0 gene_id "W7K_09195"; transcript_id "KOE99515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 12365 12367 . - 0 gene_id "W7K_09195"; transcript_id "KOE99515"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 12935 15265 . - . gene_id "W7K_09200"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 12935 15265 . - . gene_id "W7K_09200"; transcript_id "KOE99516"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 12935 15265 . - . gene_id "W7K_09200"; transcript_id "KOE99516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99516-1"; +contig30 ena CDS 12938 15265 . - 0 gene_id "W7K_09200"; transcript_id "KOE99516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99516"; +contig30 ena start_codon 15263 15265 . - 0 gene_id "W7K_09200"; transcript_id "KOE99516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 12935 12937 . - 0 gene_id "W7K_09200"; transcript_id "KOE99516"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 15405 16340 . + . gene_id "W7K_09205"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 15405 16340 . + . gene_id "W7K_09205"; transcript_id "KOE99517"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 15405 16340 . + . gene_id "W7K_09205"; transcript_id "KOE99517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99517-1"; +contig30 ena CDS 15405 16337 . + 0 gene_id "W7K_09205"; transcript_id "KOE99517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99517"; +contig30 ena start_codon 15405 15407 . + 0 gene_id "W7K_09205"; transcript_id "KOE99517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 16338 16340 . + 0 gene_id "W7K_09205"; transcript_id "KOE99517"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 16479 18623 . + . gene_id "W7K_09210"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 16479 18623 . + . gene_id "W7K_09210"; transcript_id "KOE99541"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 16479 18623 . + . gene_id "W7K_09210"; transcript_id "KOE99541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99541-1"; +contig30 ena CDS 16479 18620 . + 0 gene_id "W7K_09210"; transcript_id "KOE99541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99541"; +contig30 ena start_codon 16479 16481 . + 0 gene_id "W7K_09210"; transcript_id "KOE99541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 18621 18623 . + 0 gene_id "W7K_09210"; transcript_id "KOE99541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 18641 19747 . - . gene_id "W7K_09215"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 18641 19747 . - . gene_id "W7K_09215"; transcript_id "KOE99518"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 18641 19747 . - . gene_id "W7K_09215"; transcript_id "KOE99518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99518-1"; +contig30 ena CDS 18644 19747 . - 0 gene_id "W7K_09215"; transcript_id "KOE99518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99518"; +contig30 ena start_codon 19745 19747 . - 0 gene_id "W7K_09215"; transcript_id "KOE99518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 18641 18643 . - 0 gene_id "W7K_09215"; transcript_id "KOE99518"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 19747 22242 . - . gene_id "W7K_09220"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 19747 22242 . - . gene_id "W7K_09220"; transcript_id "KOE99519"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 19747 22242 . - . gene_id "W7K_09220"; transcript_id "KOE99519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99519-1"; +contig30 ena CDS 19750 22242 . - 0 gene_id "W7K_09220"; transcript_id "KOE99519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99519"; +contig30 ena start_codon 22240 22242 . - 0 gene_id "W7K_09220"; transcript_id "KOE99519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 19747 19749 . - 0 gene_id "W7K_09220"; transcript_id "KOE99519"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 22329 23486 . - . gene_id "W7K_09225"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 22329 23486 . - . gene_id "W7K_09225"; transcript_id "KOE99520"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 22329 23486 . - . gene_id "W7K_09225"; transcript_id "KOE99520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99520-1"; +contig30 ena CDS 22332 23486 . - 0 gene_id "W7K_09225"; transcript_id "KOE99520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99520"; +contig30 ena start_codon 23484 23486 . - 0 gene_id "W7K_09225"; transcript_id "KOE99520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 22329 22331 . - 0 gene_id "W7K_09225"; transcript_id "KOE99520"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 23483 24712 . - . gene_id "W7K_09230"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 23483 24712 . - . gene_id "W7K_09230"; transcript_id "KOE99521"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 23483 24712 . - . gene_id "W7K_09230"; transcript_id "KOE99521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99521-1"; +contig30 ena CDS 23486 24712 . - 0 gene_id "W7K_09230"; transcript_id "KOE99521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99521"; +contig30 ena start_codon 24710 24712 . - 0 gene_id "W7K_09230"; transcript_id "KOE99521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 23483 23485 . - 0 gene_id "W7K_09230"; transcript_id "KOE99521"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 24904 25386 . + . gene_id "W7K_09235"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 24904 25386 . + . gene_id "W7K_09235"; transcript_id "KOE99522"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 24904 25386 . + . gene_id "W7K_09235"; transcript_id "KOE99522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99522-1"; +contig30 ena CDS 24904 25383 . + 0 gene_id "W7K_09235"; transcript_id "KOE99522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99522"; +contig30 ena start_codon 24904 24906 . + 0 gene_id "W7K_09235"; transcript_id "KOE99522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 25384 25386 . + 0 gene_id "W7K_09235"; transcript_id "KOE99522"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 25438 28110 . - . gene_id "W7K_09240"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 25438 28110 . - . gene_id "W7K_09240"; transcript_id "KOE99523"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 25438 28110 . - . gene_id "W7K_09240"; transcript_id "KOE99523"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99523-1"; +contig30 ena CDS 25441 28110 . - 0 gene_id "W7K_09240"; transcript_id "KOE99523"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99523"; +contig30 ena start_codon 28108 28110 . - 0 gene_id "W7K_09240"; transcript_id "KOE99523"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 25438 25440 . - 0 gene_id "W7K_09240"; transcript_id "KOE99523"; exon_number "1"; gene_name "aceE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "aceE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 28355 28753 . - . gene_id "W7K_09245"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 28355 28753 . - . gene_id "W7K_09245"; transcript_id "KOE99524"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 28355 28753 . - . gene_id "W7K_09245"; transcript_id "KOE99524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99524-1"; +contig30 ena CDS 28358 28753 . - 0 gene_id "W7K_09245"; transcript_id "KOE99524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99524"; +contig30 ena start_codon 28751 28753 . - 0 gene_id "W7K_09245"; transcript_id "KOE99524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 28355 28357 . - 0 gene_id "W7K_09245"; transcript_id "KOE99524"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 28792 29307 . + . gene_id "W7K_09250"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 28792 29307 . + . gene_id "W7K_09250"; transcript_id "KOE99525"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 28792 29307 . + . gene_id "W7K_09250"; transcript_id "KOE99525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99525-1"; +contig30 ena CDS 28792 29304 . + 0 gene_id "W7K_09250"; transcript_id "KOE99525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99525"; +contig30 ena start_codon 28792 28794 . + 0 gene_id "W7K_09250"; transcript_id "KOE99525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 29305 29307 . + 0 gene_id "W7K_09250"; transcript_id "KOE99525"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 29304 30326 . + . gene_id "W7K_09255"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 29304 30326 . + . gene_id "W7K_09255"; transcript_id "KOE99526"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 29304 30326 . + . gene_id "W7K_09255"; transcript_id "KOE99526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99526-1"; +contig30 ena CDS 29304 30323 . + 0 gene_id "W7K_09255"; transcript_id "KOE99526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99526"; +contig30 ena start_codon 29304 29306 . + 0 gene_id "W7K_09255"; transcript_id "KOE99526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 30324 30326 . + 0 gene_id "W7K_09255"; transcript_id "KOE99526"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 30468 33401 . + . gene_id "W7K_09260"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 30468 33401 . + . gene_id "W7K_09260"; transcript_id "KOE99527"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 30468 33401 . + . gene_id "W7K_09260"; transcript_id "KOE99527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99527-1"; +contig30 ena CDS 30468 33398 . + 0 gene_id "W7K_09260"; transcript_id "KOE99527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99527"; +contig30 ena start_codon 30468 30470 . + 0 gene_id "W7K_09260"; transcript_id "KOE99527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 33399 33401 . + 0 gene_id "W7K_09260"; transcript_id "KOE99527"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 33412 35007 . + . gene_id "W7K_09265"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 33412 35007 . + . gene_id "W7K_09265"; transcript_id "KOE99528"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 33412 35007 . + . gene_id "W7K_09265"; transcript_id "KOE99528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99528-1"; +contig30 ena CDS 33412 35004 . + 0 gene_id "W7K_09265"; transcript_id "KOE99528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99528"; +contig30 ena start_codon 33412 33414 . + 0 gene_id "W7K_09265"; transcript_id "KOE99528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 35005 35007 . + 0 gene_id "W7K_09265"; transcript_id "KOE99528"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 35108 37216 . - . gene_id "W7K_09270"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 35108 37216 . - . gene_id "W7K_09270"; transcript_id "KOE99529"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 35108 37216 . - . gene_id "W7K_09270"; transcript_id "KOE99529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99529-1"; +contig30 ena CDS 35111 37216 . - 0 gene_id "W7K_09270"; transcript_id "KOE99529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99529"; +contig30 ena start_codon 37214 37216 . - 0 gene_id "W7K_09270"; transcript_id "KOE99529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 35108 35110 . - 0 gene_id "W7K_09270"; transcript_id "KOE99529"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 37225 39603 . - . gene_id "W7K_09275"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 37225 39603 . - . gene_id "W7K_09275"; transcript_id "KOE99530"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 37225 39603 . - . gene_id "W7K_09275"; transcript_id "KOE99530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99530-1"; +contig30 ena CDS 37228 39603 . - 0 gene_id "W7K_09275"; transcript_id "KOE99530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99530"; +contig30 ena start_codon 39601 39603 . - 0 gene_id "W7K_09275"; transcript_id "KOE99530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 37225 37227 . - 0 gene_id "W7K_09275"; transcript_id "KOE99530"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 39719 40645 . - . gene_id "W7K_09280"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 39719 40645 . - . gene_id "W7K_09280"; transcript_id "KOE99531"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 39719 40645 . - . gene_id "W7K_09280"; transcript_id "KOE99531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99531-1"; +contig30 ena CDS 39722 40645 . - 0 gene_id "W7K_09280"; transcript_id "KOE99531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99531"; +contig30 ena start_codon 40643 40645 . - 0 gene_id "W7K_09280"; transcript_id "KOE99531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 39719 39721 . - 0 gene_id "W7K_09280"; transcript_id "KOE99531"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 40642 41988 . - . gene_id "W7K_09285"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 40642 41988 . - . gene_id "W7K_09285"; transcript_id "KOE99532"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 40642 41988 . - . gene_id "W7K_09285"; transcript_id "KOE99532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99532-1"; +contig30 ena CDS 40645 41988 . - 0 gene_id "W7K_09285"; transcript_id "KOE99532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99532"; +contig30 ena start_codon 41986 41988 . - 0 gene_id "W7K_09285"; transcript_id "KOE99532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 40642 40644 . - 0 gene_id "W7K_09285"; transcript_id "KOE99532"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 42172 43290 . + . gene_id "W7K_09290"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 42172 43290 . + . gene_id "W7K_09290"; transcript_id "KOE99533"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 42172 43290 . + . gene_id "W7K_09290"; transcript_id "KOE99533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99533-1"; +contig30 ena CDS 42172 43287 . + 0 gene_id "W7K_09290"; transcript_id "KOE99533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99533"; +contig30 ena start_codon 42172 42174 . + 0 gene_id "W7K_09290"; transcript_id "KOE99533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 43288 43290 . + 0 gene_id "W7K_09290"; transcript_id "KOE99533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 43372 44511 . - . gene_id "W7K_09295"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 43372 44511 . - . gene_id "W7K_09295"; transcript_id "KOE99534"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 43372 44511 . - . gene_id "W7K_09295"; transcript_id "KOE99534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99534-1"; +contig30 ena CDS 43375 44511 . - 0 gene_id "W7K_09295"; transcript_id "KOE99534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99534"; +contig30 ena start_codon 44509 44511 . - 0 gene_id "W7K_09295"; transcript_id "KOE99534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 43372 43374 . - 0 gene_id "W7K_09295"; transcript_id "KOE99534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 44696 45391 . + . gene_id "W7K_09300"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 44696 45391 . + . gene_id "W7K_09300"; transcript_id "KOE99535"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 44696 45391 . + . gene_id "W7K_09300"; transcript_id "KOE99535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99535-1"; +contig30 ena CDS 44696 45388 . + 0 gene_id "W7K_09300"; transcript_id "KOE99535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99535"; +contig30 ena start_codon 44696 44698 . + 0 gene_id "W7K_09300"; transcript_id "KOE99535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 45389 45391 . + 0 gene_id "W7K_09300"; transcript_id "KOE99535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 45524 47722 . + . gene_id "W7K_09305"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 45524 47722 . + . gene_id "W7K_09305"; transcript_id "KOE99536"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 45524 47722 . + . gene_id "W7K_09305"; transcript_id "KOE99536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99536-1"; +contig30 ena CDS 45524 47719 . + 0 gene_id "W7K_09305"; transcript_id "KOE99536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99536"; +contig30 ena start_codon 45524 45526 . + 0 gene_id "W7K_09305"; transcript_id "KOE99536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 47720 47722 . + 0 gene_id "W7K_09305"; transcript_id "KOE99536"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 47836 48537 . - . gene_id "W7K_09310"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 47836 48537 . - . gene_id "W7K_09310"; transcript_id "KOE99537"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 47836 48537 . - . gene_id "W7K_09310"; transcript_id "KOE99537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99537-1"; +contig30 ena CDS 47839 48537 . - 0 gene_id "W7K_09310"; transcript_id "KOE99537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99537"; +contig30 ena start_codon 48535 48537 . - 0 gene_id "W7K_09310"; transcript_id "KOE99537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 47836 47838 . - 0 gene_id "W7K_09310"; transcript_id "KOE99537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 48678 49598 . + . gene_id "W7K_09315"; gene_source "ena"; gene_biotype "protein_coding"; +contig30 ena transcript 48678 49598 . + . gene_id "W7K_09315"; transcript_id "KOE99538"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena exon 48678 49598 . + . gene_id "W7K_09315"; transcript_id "KOE99538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99538-1"; +contig30 ena CDS 48678 49595 . + 0 gene_id "W7K_09315"; transcript_id "KOE99538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99538"; +contig30 ena start_codon 48678 48680 . + 0 gene_id "W7K_09315"; transcript_id "KOE99538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena stop_codon 49596 49598 . + 0 gene_id "W7K_09315"; transcript_id "KOE99538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig30 ena gene 50148 50224 . - . gene_id "W7K_09320"; gene_source "ena"; gene_biotype "tRNA"; +contig30 ena transcript 50148 50224 . - . gene_id "W7K_09320"; transcript_id "EBT00051077639"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_09320"; transcript_source "ena"; transcript_biotype "tRNA"; +contig30 ena exon 50148 50224 . - . gene_id "W7K_09320"; transcript_id "EBT00051077639"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_09320"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_09320-1"; +contig43 ena gene 391 1602 . - . gene_id "W7K_02305"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 391 1602 . - . gene_id "W7K_02305"; transcript_id "KOF00830"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 391 1602 . - . gene_id "W7K_02305"; transcript_id "KOF00830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00830-1"; +contig43 ena CDS 394 1602 . - 0 gene_id "W7K_02305"; transcript_id "KOF00830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00830"; +contig43 ena start_codon 1600 1602 . - 0 gene_id "W7K_02305"; transcript_id "KOF00830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 391 393 . - 0 gene_id "W7K_02305"; transcript_id "KOF00830"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 1770 3242 . + . gene_id "W7K_02310"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 1770 3242 . + . gene_id "W7K_02310"; transcript_id "KOF00831"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 1770 3242 . + . gene_id "W7K_02310"; transcript_id "KOF00831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00831-1"; +contig43 ena CDS 1770 3239 . + 0 gene_id "W7K_02310"; transcript_id "KOF00831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00831"; +contig43 ena start_codon 1770 1772 . + 0 gene_id "W7K_02310"; transcript_id "KOF00831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 3240 3242 . + 0 gene_id "W7K_02310"; transcript_id "KOF00831"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 3299 4435 . + . gene_id "W7K_02315"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 3299 4435 . + . gene_id "W7K_02315"; transcript_id "KOF00832"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 3299 4435 . + . gene_id "W7K_02315"; transcript_id "KOF00832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00832-1"; +contig43 ena CDS 3299 4432 . + 0 gene_id "W7K_02315"; transcript_id "KOF00832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00832"; +contig43 ena start_codon 3299 3301 . + 0 gene_id "W7K_02315"; transcript_id "KOF00832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 4433 4435 . + 0 gene_id "W7K_02315"; transcript_id "KOF00832"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 4515 4745 . - . gene_id "W7K_02320"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 4515 4745 . - . gene_id "W7K_02320"; transcript_id "KOF00833"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 4515 4745 . - . gene_id "W7K_02320"; transcript_id "KOF00833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00833-1"; +contig43 ena CDS 4518 4745 . - 0 gene_id "W7K_02320"; transcript_id "KOF00833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00833"; +contig43 ena start_codon 4743 4745 . - 0 gene_id "W7K_02320"; transcript_id "KOF00833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 4515 4517 . - 0 gene_id "W7K_02320"; transcript_id "KOF00833"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 4823 6196 . - . gene_id "W7K_02325"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 4823 6196 . - . gene_id "W7K_02325"; transcript_id "KOF00834"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 4823 6196 . - . gene_id "W7K_02325"; transcript_id "KOF00834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00834-1"; +contig43 ena CDS 4826 6196 . - 0 gene_id "W7K_02325"; transcript_id "KOF00834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00834"; +contig43 ena start_codon 6194 6196 . - 0 gene_id "W7K_02325"; transcript_id "KOF00834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 4823 4825 . - 0 gene_id "W7K_02325"; transcript_id "KOF00834"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 6193 6993 . - . gene_id "W7K_02330"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 6193 6993 . - . gene_id "W7K_02330"; transcript_id "KOF00835"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 6193 6993 . - . gene_id "W7K_02330"; transcript_id "KOF00835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00835-1"; +contig43 ena CDS 6196 6993 . - 0 gene_id "W7K_02330"; transcript_id "KOF00835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00835"; +contig43 ena start_codon 6991 6993 . - 0 gene_id "W7K_02330"; transcript_id "KOF00835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 6193 6195 . - 0 gene_id "W7K_02330"; transcript_id "KOF00835"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 7156 7815 . + . gene_id "W7K_02335"; gene_name "pyrE"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 7156 7815 . + . gene_id "W7K_02335"; transcript_id "KOF00836"; gene_name "pyrE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 7156 7815 . + . gene_id "W7K_02335"; transcript_id "KOF00836"; exon_number "1"; gene_name "pyrE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00836-1"; +contig43 ena CDS 7156 7812 . + 0 gene_id "W7K_02335"; transcript_id "KOF00836"; exon_number "1"; gene_name "pyrE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00836"; +contig43 ena start_codon 7156 7158 . + 0 gene_id "W7K_02335"; transcript_id "KOF00836"; exon_number "1"; gene_name "pyrE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 7813 7815 . + 0 gene_id "W7K_02335"; transcript_id "KOF00836"; exon_number "1"; gene_name "pyrE"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrE-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 7834 8496 . + . gene_id "W7K_02340"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 7834 8496 . + . gene_id "W7K_02340"; transcript_id "KOF00837"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 7834 8496 . + . gene_id "W7K_02340"; transcript_id "KOF00837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00837-1"; +contig43 ena CDS 7834 8493 . + 0 gene_id "W7K_02340"; transcript_id "KOF00837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00837"; +contig43 ena start_codon 7834 7836 . + 0 gene_id "W7K_02340"; transcript_id "KOF00837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 8494 8496 . + 0 gene_id "W7K_02340"; transcript_id "KOF00837"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 8671 8763 . + . gene_id "W7K_02345"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 8671 8763 . + . gene_id "W7K_02345"; transcript_id "KOF00871"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 8671 8763 . + . gene_id "W7K_02345"; transcript_id "KOF00871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00871-1"; +contig43 ena CDS 8671 8760 . + 0 gene_id "W7K_02345"; transcript_id "KOF00871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00871"; +contig43 ena start_codon 8671 8673 . + 0 gene_id "W7K_02345"; transcript_id "KOF00871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 8761 8763 . + 0 gene_id "W7K_02345"; transcript_id "KOF00871"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 8776 10485 . + . gene_id "W7K_02350"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 8776 10485 . + . gene_id "W7K_02350"; transcript_id "KOF00838"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 8776 10485 . + . gene_id "W7K_02350"; transcript_id "KOF00838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00838-1"; +contig43 ena CDS 8776 10482 . + 0 gene_id "W7K_02350"; transcript_id "KOF00838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00838"; +contig43 ena start_codon 8776 8778 . + 0 gene_id "W7K_02350"; transcript_id "KOF00838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 10483 10485 . + 0 gene_id "W7K_02350"; transcript_id "KOF00838"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 10496 12553 . + . gene_id "W7K_02355"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 10496 12553 . + . gene_id "W7K_02355"; transcript_id "KOF00839"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 10496 12553 . + . gene_id "W7K_02355"; transcript_id "KOF00839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00839-1"; +contig43 ena CDS 10496 12550 . + 0 gene_id "W7K_02355"; transcript_id "KOF00839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00839"; +contig43 ena start_codon 10496 10498 . + 0 gene_id "W7K_02355"; transcript_id "KOF00839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 12551 12553 . + 0 gene_id "W7K_02355"; transcript_id "KOF00839"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 12550 13200 . + . gene_id "W7K_02360"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 12550 13200 . + . gene_id "W7K_02360"; transcript_id "KOF00840"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 12550 13200 . + . gene_id "W7K_02360"; transcript_id "KOF00840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00840-1"; +contig43 ena CDS 12550 13197 . + 0 gene_id "W7K_02360"; transcript_id "KOF00840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00840"; +contig43 ena start_codon 12550 12552 . + 0 gene_id "W7K_02360"; transcript_id "KOF00840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 13198 13200 . + 0 gene_id "W7K_02360"; transcript_id "KOF00840"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 13252 15912 . + . gene_id "W7K_02365"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 13252 15912 . + . gene_id "W7K_02365"; transcript_id "KOF00841"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 13252 15912 . + . gene_id "W7K_02365"; transcript_id "KOF00841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00841-1"; +contig43 ena CDS 13252 15909 . + 0 gene_id "W7K_02365"; transcript_id "KOF00841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00841"; +contig43 ena start_codon 13252 13254 . + 0 gene_id "W7K_02365"; transcript_id "KOF00841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 15910 15912 . + 0 gene_id "W7K_02365"; transcript_id "KOF00841"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 15893 16606 . + . gene_id "W7K_02370"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 15893 16606 . + . gene_id "W7K_02370"; transcript_id "KOF00842"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 15893 16606 . + . gene_id "W7K_02370"; transcript_id "KOF00842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00842-1"; +contig43 ena CDS 15893 16603 . + 0 gene_id "W7K_02370"; transcript_id "KOF00842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00842"; +contig43 ena start_codon 15893 15895 . + 0 gene_id "W7K_02370"; transcript_id "KOF00842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 16604 16606 . + 0 gene_id "W7K_02370"; transcript_id "KOF00842"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 16830 19181 . - . gene_id "W7K_02375"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 16830 19181 . - . gene_id "W7K_02375"; transcript_id "KOF00843"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 16830 19181 . - . gene_id "W7K_02375"; transcript_id "KOF00843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00843-1"; +contig43 ena CDS 16833 19181 . - 0 gene_id "W7K_02375"; transcript_id "KOF00843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00843"; +contig43 ena start_codon 19179 19181 . - 0 gene_id "W7K_02375"; transcript_id "KOF00843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 16830 16832 . - 0 gene_id "W7K_02375"; transcript_id "KOF00843"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 19194 19667 . - . gene_id "W7K_02380"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 19194 19667 . - . gene_id "W7K_02380"; transcript_id "KOF00844"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 19194 19667 . - . gene_id "W7K_02380"; transcript_id "KOF00844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00844-1"; +contig43 ena CDS 19197 19667 . - 0 gene_id "W7K_02380"; transcript_id "KOF00844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00844"; +contig43 ena start_codon 19665 19667 . - 0 gene_id "W7K_02380"; transcript_id "KOF00844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 19194 19196 . - 0 gene_id "W7K_02380"; transcript_id "KOF00844"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 19664 20926 . - . gene_id "W7K_02385"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 19664 20926 . - . gene_id "W7K_02385"; transcript_id "KOF00845"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 19664 20926 . - . gene_id "W7K_02385"; transcript_id "KOF00845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00845-1"; +contig43 ena CDS 19667 20926 . - 0 gene_id "W7K_02385"; transcript_id "KOF00845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00845"; +contig43 ena start_codon 20924 20926 . - 0 gene_id "W7K_02385"; transcript_id "KOF00845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 19664 19666 . - 0 gene_id "W7K_02385"; transcript_id "KOF00845"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 21155 21781 . + . gene_id "W7K_02390"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 21155 21781 . + . gene_id "W7K_02390"; transcript_id "KOF00846"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 21155 21781 . + . gene_id "W7K_02390"; transcript_id "KOF00846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00846-1"; +contig43 ena CDS 21155 21778 . + 0 gene_id "W7K_02390"; transcript_id "KOF00846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00846"; +contig43 ena start_codon 21155 21157 . + 0 gene_id "W7K_02390"; transcript_id "KOF00846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 21779 21781 . + 0 gene_id "W7K_02390"; transcript_id "KOF00846"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 21852 22556 . + . gene_id "W7K_02395"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 21852 22556 . + . gene_id "W7K_02395"; transcript_id "KOF00872"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 21852 22556 . + . gene_id "W7K_02395"; transcript_id "KOF00872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00872-1"; +contig43 ena CDS 21852 22553 . + 0 gene_id "W7K_02395"; transcript_id "KOF00872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00872"; +contig43 ena start_codon 21852 21854 . + 0 gene_id "W7K_02395"; transcript_id "KOF00872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 22554 22556 . + 0 gene_id "W7K_02395"; transcript_id "KOF00872"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 22671 24359 . + . gene_id "W7K_02400"; gene_name "argS"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 22671 24359 . + . gene_id "W7K_02400"; transcript_id "KOF00847"; gene_name "argS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "argS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 22671 24359 . + . gene_id "W7K_02400"; transcript_id "KOF00847"; exon_number "1"; gene_name "argS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "argS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00847-1"; +contig43 ena CDS 22671 24356 . + 0 gene_id "W7K_02400"; transcript_id "KOF00847"; exon_number "1"; gene_name "argS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "argS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00847"; +contig43 ena start_codon 22671 22673 . + 0 gene_id "W7K_02400"; transcript_id "KOF00847"; exon_number "1"; gene_name "argS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "argS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 24357 24359 . + 0 gene_id "W7K_02400"; transcript_id "KOF00847"; exon_number "1"; gene_name "argS"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "argS-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 24381 25283 . + . gene_id "W7K_02405"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 24381 25283 . + . gene_id "W7K_02405"; transcript_id "KOF00848"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 24381 25283 . + . gene_id "W7K_02405"; transcript_id "KOF00848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00848-1"; +contig43 ena CDS 24381 25280 . + 0 gene_id "W7K_02405"; transcript_id "KOF00848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00848"; +contig43 ena start_codon 24381 24383 . + 0 gene_id "W7K_02405"; transcript_id "KOF00848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 25281 25283 . + 0 gene_id "W7K_02405"; transcript_id "KOF00848"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 25411 26163 . - . gene_id "W7K_02410"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 25411 26163 . - . gene_id "W7K_02410"; transcript_id "KOF00849"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 25411 26163 . - . gene_id "W7K_02410"; transcript_id "KOF00849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00849-1"; +contig43 ena CDS 25414 26163 . - 0 gene_id "W7K_02410"; transcript_id "KOF00849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00849"; +contig43 ena start_codon 26161 26163 . - 0 gene_id "W7K_02410"; transcript_id "KOF00849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 25411 25413 . - 0 gene_id "W7K_02410"; transcript_id "KOF00849"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 26263 26751 . - . gene_id "W7K_02415"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 26263 26751 . - . gene_id "W7K_02415"; transcript_id "KOF00850"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 26263 26751 . - . gene_id "W7K_02415"; transcript_id "KOF00850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00850-1"; +contig43 ena CDS 26266 26751 . - 0 gene_id "W7K_02415"; transcript_id "KOF00850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00850"; +contig43 ena start_codon 26749 26751 . - 0 gene_id "W7K_02415"; transcript_id "KOF00850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 26263 26265 . - 0 gene_id "W7K_02415"; transcript_id "KOF00850"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 26836 27303 . + . gene_id "W7K_02420"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 26836 27303 . + . gene_id "W7K_02420"; transcript_id "KOF00851"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 26836 27303 . + . gene_id "W7K_02420"; transcript_id "KOF00851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00851-1"; +contig43 ena CDS 26836 27300 . + 0 gene_id "W7K_02420"; transcript_id "KOF00851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00851"; +contig43 ena start_codon 26836 26838 . + 0 gene_id "W7K_02420"; transcript_id "KOF00851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 27301 27303 . + 0 gene_id "W7K_02420"; transcript_id "KOF00851"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 27272 28159 . - . gene_id "W7K_02425"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 27272 28159 . - . gene_id "W7K_02425"; transcript_id "KOF00852"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 27272 28159 . - . gene_id "W7K_02425"; transcript_id "KOF00852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00852-1"; +contig43 ena CDS 27275 28159 . - 0 gene_id "W7K_02425"; transcript_id "KOF00852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00852"; +contig43 ena start_codon 28157 28159 . - 0 gene_id "W7K_02425"; transcript_id "KOF00852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 27272 27274 . - 0 gene_id "W7K_02425"; transcript_id "KOF00852"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 28259 29452 . + . gene_id "W7K_02430"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 28259 29452 . + . gene_id "W7K_02430"; transcript_id "KOF00853"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 28259 29452 . + . gene_id "W7K_02430"; transcript_id "KOF00853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00853-1"; +contig43 ena CDS 28259 29449 . + 0 gene_id "W7K_02430"; transcript_id "KOF00853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00853"; +contig43 ena start_codon 28259 28261 . + 0 gene_id "W7K_02430"; transcript_id "KOF00853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 29450 29452 . + 0 gene_id "W7K_02430"; transcript_id "KOF00853"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 29449 30147 . - . gene_id "W7K_02435"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 29449 30147 . - . gene_id "W7K_02435"; transcript_id "KOF00873"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 29449 30147 . - . gene_id "W7K_02435"; transcript_id "KOF00873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00873-1"; +contig43 ena CDS 29452 30147 . - 0 gene_id "W7K_02435"; transcript_id "KOF00873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00873"; +contig43 ena start_codon 30145 30147 . - 0 gene_id "W7K_02435"; transcript_id "KOF00873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 29449 29451 . - 0 gene_id "W7K_02435"; transcript_id "KOF00873"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 30278 30715 . + . gene_id "W7K_02440"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 30278 30715 . + . gene_id "W7K_02440"; transcript_id "KOF00854"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 30278 30715 . + . gene_id "W7K_02440"; transcript_id "KOF00854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00854-1"; +contig43 ena CDS 30278 30712 . + 0 gene_id "W7K_02440"; transcript_id "KOF00854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00854"; +contig43 ena start_codon 30278 30280 . + 0 gene_id "W7K_02440"; transcript_id "KOF00854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 30713 30715 . + 0 gene_id "W7K_02440"; transcript_id "KOF00854"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 30722 31411 . - . gene_id "W7K_02445"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 30722 31411 . - . gene_id "W7K_02445"; transcript_id "KOF00855"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 30722 31411 . - . gene_id "W7K_02445"; transcript_id "KOF00855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00855-1"; +contig43 ena CDS 30725 31411 . - 0 gene_id "W7K_02445"; transcript_id "KOF00855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00855"; +contig43 ena start_codon 31409 31411 . - 0 gene_id "W7K_02445"; transcript_id "KOF00855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 30722 30724 . - 0 gene_id "W7K_02445"; transcript_id "KOF00855"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 31602 32174 . - . gene_id "W7K_02450"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 31602 32174 . - . gene_id "W7K_02450"; transcript_id "KOF00856"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 31602 32174 . - . gene_id "W7K_02450"; transcript_id "KOF00856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00856-1"; +contig43 ena CDS 31605 32174 . - 0 gene_id "W7K_02450"; transcript_id "KOF00856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00856"; +contig43 ena start_codon 32172 32174 . - 0 gene_id "W7K_02450"; transcript_id "KOF00856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 31602 31604 . - 0 gene_id "W7K_02450"; transcript_id "KOF00856"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 32386 34788 . + . gene_id "W7K_02455"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 32386 34788 . + . gene_id "W7K_02455"; transcript_id "KOF00857"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 32386 34788 . + . gene_id "W7K_02455"; transcript_id "KOF00857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00857-1"; +contig43 ena CDS 32386 34785 . + 0 gene_id "W7K_02455"; transcript_id "KOF00857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00857"; +contig43 ena start_codon 32386 32388 . + 0 gene_id "W7K_02455"; transcript_id "KOF00857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 34786 34788 . + 0 gene_id "W7K_02455"; transcript_id "KOF00857"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 34880 35239 . + . gene_id "W7K_02460"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 34880 35239 . + . gene_id "W7K_02460"; transcript_id "KOF00858"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 34880 35239 . + . gene_id "W7K_02460"; transcript_id "KOF00858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00858-1"; +contig43 ena CDS 34880 35236 . + 0 gene_id "W7K_02460"; transcript_id "KOF00858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00858"; +contig43 ena start_codon 34880 34882 . + 0 gene_id "W7K_02460"; transcript_id "KOF00858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 35237 35239 . + 0 gene_id "W7K_02460"; transcript_id "KOF00858"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 35255 35947 . - . gene_id "W7K_02465"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 35255 35947 . - . gene_id "W7K_02465"; transcript_id "KOF00859"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 35255 35947 . - . gene_id "W7K_02465"; transcript_id "KOF00859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00859-1"; +contig43 ena CDS 35258 35947 . - 0 gene_id "W7K_02465"; transcript_id "KOF00859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00859"; +contig43 ena start_codon 35945 35947 . - 0 gene_id "W7K_02465"; transcript_id "KOF00859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 35255 35257 . - 0 gene_id "W7K_02465"; transcript_id "KOF00859"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 36055 36948 . - . gene_id "W7K_02470"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 36055 36948 . - . gene_id "W7K_02470"; transcript_id "KOF00860"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 36055 36948 . - . gene_id "W7K_02470"; transcript_id "KOF00860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00860-1"; +contig43 ena CDS 36058 36948 . - 0 gene_id "W7K_02470"; transcript_id "KOF00860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00860"; +contig43 ena start_codon 36946 36948 . - 0 gene_id "W7K_02470"; transcript_id "KOF00860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 36055 36057 . - 0 gene_id "W7K_02470"; transcript_id "KOF00860"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 37439 38872 . + . gene_id "W7K_02475"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 37439 38872 . + . gene_id "W7K_02475"; transcript_id "KOF00861"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 37439 38872 . + . gene_id "W7K_02475"; transcript_id "KOF00861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00861-1"; +contig43 ena CDS 37439 38869 . + 0 gene_id "W7K_02475"; transcript_id "KOF00861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00861"; +contig43 ena start_codon 37439 37441 . + 0 gene_id "W7K_02475"; transcript_id "KOF00861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 38870 38872 . + 0 gene_id "W7K_02475"; transcript_id "KOF00861"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 38974 39339 . + . gene_id "W7K_02480"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 38974 39339 . + . gene_id "W7K_02480"; transcript_id "KOF00862"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 38974 39339 . + . gene_id "W7K_02480"; transcript_id "KOF00862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00862-1"; +contig43 ena CDS 38974 39336 . + 0 gene_id "W7K_02480"; transcript_id "KOF00862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00862"; +contig43 ena start_codon 38974 38976 . + 0 gene_id "W7K_02480"; transcript_id "KOF00862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 39337 39339 . + 0 gene_id "W7K_02480"; transcript_id "KOF00862"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 39348 39818 . + . gene_id "W7K_02485"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 39348 39818 . + . gene_id "W7K_02485"; transcript_id "KOF00863"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 39348 39818 . + . gene_id "W7K_02485"; transcript_id "KOF00863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00863-1"; +contig43 ena CDS 39348 39815 . + 0 gene_id "W7K_02485"; transcript_id "KOF00863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00863"; +contig43 ena start_codon 39348 39350 . + 0 gene_id "W7K_02485"; transcript_id "KOF00863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 39816 39818 . + 0 gene_id "W7K_02485"; transcript_id "KOF00863"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 39815 40282 . + . gene_id "W7K_02490"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 39815 40282 . + . gene_id "W7K_02490"; transcript_id "KOF00864"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 39815 40282 . + . gene_id "W7K_02490"; transcript_id "KOF00864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00864-1"; +contig43 ena CDS 39815 40279 . + 0 gene_id "W7K_02490"; transcript_id "KOF00864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00864"; +contig43 ena start_codon 39815 39817 . + 0 gene_id "W7K_02490"; transcript_id "KOF00864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 40280 40282 . + 0 gene_id "W7K_02490"; transcript_id "KOF00864"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 40350 41459 . + . gene_id "W7K_02495"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 40350 41459 . + . gene_id "W7K_02495"; transcript_id "KOF00865"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 40350 41459 . + . gene_id "W7K_02495"; transcript_id "KOF00865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00865-1"; +contig43 ena CDS 40350 41456 . + 0 gene_id "W7K_02495"; transcript_id "KOF00865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00865"; +contig43 ena start_codon 40350 40352 . + 0 gene_id "W7K_02495"; transcript_id "KOF00865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 41457 41459 . + 0 gene_id "W7K_02495"; transcript_id "KOF00865"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 41551 42018 . + . gene_id "W7K_02500"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 41551 42018 . + . gene_id "W7K_02500"; transcript_id "KOF00866"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 41551 42018 . + . gene_id "W7K_02500"; transcript_id "KOF00866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00866-1"; +contig43 ena CDS 41551 42015 . + 0 gene_id "W7K_02500"; transcript_id "KOF00866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00866"; +contig43 ena start_codon 41551 41553 . + 0 gene_id "W7K_02500"; transcript_id "KOF00866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 42016 42018 . + 0 gene_id "W7K_02500"; transcript_id "KOF00866"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 42092 42811 . + . gene_id "W7K_02505"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 42092 42811 . + . gene_id "W7K_02505"; transcript_id "KOF00867"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 42092 42811 . + . gene_id "W7K_02505"; transcript_id "KOF00867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00867-1"; +contig43 ena CDS 42092 42808 . + 0 gene_id "W7K_02505"; transcript_id "KOF00867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00867"; +contig43 ena start_codon 42092 42094 . + 0 gene_id "W7K_02505"; transcript_id "KOF00867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 42809 42811 . + 0 gene_id "W7K_02505"; transcript_id "KOF00867"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 42815 44182 . + . gene_id "W7K_02510"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 42815 44182 . + . gene_id "W7K_02510"; transcript_id "KOF00868"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 42815 44182 . + . gene_id "W7K_02510"; transcript_id "KOF00868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00868-1"; +contig43 ena CDS 42815 44179 . + 0 gene_id "W7K_02510"; transcript_id "KOF00868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00868"; +contig43 ena start_codon 42815 42817 . + 0 gene_id "W7K_02510"; transcript_id "KOF00868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 44180 44182 . + 0 gene_id "W7K_02510"; transcript_id "KOF00868"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 44317 45420 . + . gene_id "W7K_02515"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 44317 45420 . + . gene_id "W7K_02515"; transcript_id "KOF00869"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 44317 45420 . + . gene_id "W7K_02515"; transcript_id "KOF00869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00869-1"; +contig43 ena CDS 44317 45417 . + 0 gene_id "W7K_02515"; transcript_id "KOF00869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00869"; +contig43 ena start_codon 44317 44319 . + 0 gene_id "W7K_02515"; transcript_id "KOF00869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 45418 45420 . + 0 gene_id "W7K_02515"; transcript_id "KOF00869"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena gene 45417 45953 . + . gene_id "W7K_02520"; gene_source "ena"; gene_biotype "protein_coding"; +contig43 ena transcript 45417 45953 . + . gene_id "W7K_02520"; transcript_id "KOF00870"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena exon 45417 45953 . + . gene_id "W7K_02520"; transcript_id "KOF00870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00870-1"; +contig43 ena CDS 45417 45950 . + 0 gene_id "W7K_02520"; transcript_id "KOF00870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00870"; +contig43 ena start_codon 45417 45419 . + 0 gene_id "W7K_02520"; transcript_id "KOF00870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig43 ena stop_codon 45951 45953 . + 0 gene_id "W7K_02520"; transcript_id "KOF00870"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 1 916 . - . gene_id "W7K_08925"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 1 916 . - . gene_id "W7K_08925"; transcript_id "KOE99542"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 1 916 . - . gene_id "W7K_08925"; transcript_id "KOE99542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99542-1"; +contig31 ena CDS 1 916 . - 0 gene_id "W7K_08925"; transcript_id "KOE99542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99542"; +contig31 ena start_codon 914 916 . - 0 gene_id "W7K_08925"; transcript_id "KOE99542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 913 1722 . - . gene_id "W7K_08930"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 913 1722 . - . gene_id "W7K_08930"; transcript_id "KOE99543"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 913 1722 . - . gene_id "W7K_08930"; transcript_id "KOE99543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99543-1"; +contig31 ena CDS 916 1722 . - 0 gene_id "W7K_08930"; transcript_id "KOE99543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99543"; +contig31 ena start_codon 1720 1722 . - 0 gene_id "W7K_08930"; transcript_id "KOE99543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 913 915 . - 0 gene_id "W7K_08930"; transcript_id "KOE99543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 1850 2518 . - . gene_id "W7K_08935"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 1850 2518 . - . gene_id "W7K_08935"; transcript_id "KOE99544"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 1850 2518 . - . gene_id "W7K_08935"; transcript_id "KOE99544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99544-1"; +contig31 ena CDS 1853 2518 . - 0 gene_id "W7K_08935"; transcript_id "KOE99544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99544"; +contig31 ena start_codon 2516 2518 . - 0 gene_id "W7K_08935"; transcript_id "KOE99544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 1850 1852 . - 0 gene_id "W7K_08935"; transcript_id "KOE99544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 2531 3037 . - . gene_id "W7K_08940"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 2531 3037 . - . gene_id "W7K_08940"; transcript_id "KOE99545"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 2531 3037 . - . gene_id "W7K_08940"; transcript_id "KOE99545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99545-1"; +contig31 ena CDS 2534 3037 . - 0 gene_id "W7K_08940"; transcript_id "KOE99545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99545"; +contig31 ena start_codon 3035 3037 . - 0 gene_id "W7K_08940"; transcript_id "KOE99545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 2531 2533 . - 0 gene_id "W7K_08940"; transcript_id "KOE99545"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 3034 4434 . - . gene_id "W7K_08945"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 3034 4434 . - . gene_id "W7K_08945"; transcript_id "KOE99546"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 3034 4434 . - . gene_id "W7K_08945"; transcript_id "KOE99546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99546-1"; +contig31 ena CDS 3037 4434 . - 0 gene_id "W7K_08945"; transcript_id "KOE99546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99546"; +contig31 ena start_codon 4432 4434 . - 0 gene_id "W7K_08945"; transcript_id "KOE99546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 3034 3036 . - 0 gene_id "W7K_08945"; transcript_id "KOE99546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 4519 4998 . - . gene_id "W7K_08950"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 4519 4998 . - . gene_id "W7K_08950"; transcript_id "KOE99547"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 4519 4998 . - . gene_id "W7K_08950"; transcript_id "KOE99547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99547-1"; +contig31 ena CDS 4522 4998 . - 0 gene_id "W7K_08950"; transcript_id "KOE99547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99547"; +contig31 ena start_codon 4996 4998 . - 0 gene_id "W7K_08950"; transcript_id "KOE99547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 4519 4521 . - 0 gene_id "W7K_08950"; transcript_id "KOE99547"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 5091 5651 . - . gene_id "W7K_08955"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 5091 5651 . - . gene_id "W7K_08955"; transcript_id "KOE99548"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 5091 5651 . - . gene_id "W7K_08955"; transcript_id "KOE99548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99548-1"; +contig31 ena CDS 5094 5651 . - 0 gene_id "W7K_08955"; transcript_id "KOE99548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99548"; +contig31 ena start_codon 5649 5651 . - 0 gene_id "W7K_08955"; transcript_id "KOE99548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 5091 5093 . - 0 gene_id "W7K_08955"; transcript_id "KOE99548"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 5816 6709 . + . gene_id "W7K_08960"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 5816 6709 . + . gene_id "W7K_08960"; transcript_id "KOE99549"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 5816 6709 . + . gene_id "W7K_08960"; transcript_id "KOE99549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99549-1"; +contig31 ena CDS 5816 6706 . + 0 gene_id "W7K_08960"; transcript_id "KOE99549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99549"; +contig31 ena start_codon 5816 5818 . + 0 gene_id "W7K_08960"; transcript_id "KOE99549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 6707 6709 . + 0 gene_id "W7K_08960"; transcript_id "KOE99549"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 6742 7257 . + . gene_id "W7K_08965"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 6742 7257 . + . gene_id "W7K_08965"; transcript_id "KOE99550"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 6742 7257 . + . gene_id "W7K_08965"; transcript_id "KOE99550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99550-1"; +contig31 ena CDS 6742 7254 . + 0 gene_id "W7K_08965"; transcript_id "KOE99550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99550"; +contig31 ena start_codon 6742 6744 . + 0 gene_id "W7K_08965"; transcript_id "KOE99550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 7255 7257 . + 0 gene_id "W7K_08965"; transcript_id "KOE99550"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 7454 7777 . - . gene_id "W7K_08970"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 7454 7777 . - . gene_id "W7K_08970"; transcript_id "KOE99551"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 7454 7777 . - . gene_id "W7K_08970"; transcript_id "KOE99551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99551-1"; +contig31 ena CDS 7457 7777 . - 0 gene_id "W7K_08970"; transcript_id "KOE99551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99551"; +contig31 ena start_codon 7775 7777 . - 0 gene_id "W7K_08970"; transcript_id "KOE99551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 7454 7456 . - 0 gene_id "W7K_08970"; transcript_id "KOE99551"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 7970 9394 . + . gene_id "W7K_08975"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 7970 9394 . + . gene_id "W7K_08975"; transcript_id "KOE99552"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 7970 9394 . + . gene_id "W7K_08975"; transcript_id "KOE99552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99552-1"; +contig31 ena CDS 7970 9391 . + 0 gene_id "W7K_08975"; transcript_id "KOE99552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99552"; +contig31 ena start_codon 7970 7972 . + 0 gene_id "W7K_08975"; transcript_id "KOE99552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 9392 9394 . + 0 gene_id "W7K_08975"; transcript_id "KOE99552"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 9844 9918 . - . gene_id "W7K_08980"; gene_source "ena"; gene_biotype "tRNA"; +contig31 ena transcript 9844 9918 . - . gene_id "W7K_08980"; transcript_id "EBT00051077640"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_08980"; transcript_source "ena"; transcript_biotype "tRNA"; +contig31 ena exon 9844 9918 . - . gene_id "W7K_08980"; transcript_id "EBT00051077640"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_08980"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_08980-1"; +contig31 ena gene 9971 11344 . + . gene_id "W7K_08985"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 9971 11344 . + . gene_id "W7K_08985"; transcript_id "KOE99553"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 9971 11344 . + . gene_id "W7K_08985"; transcript_id "KOE99553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99553-1"; +contig31 ena CDS 9971 11341 . + 0 gene_id "W7K_08985"; transcript_id "KOE99553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99553"; +contig31 ena start_codon 9971 9973 . + 0 gene_id "W7K_08985"; transcript_id "KOE99553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 11342 11344 . + 0 gene_id "W7K_08985"; transcript_id "KOE99553"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 11348 11833 . + . gene_id "W7K_08990"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 11348 11833 . + . gene_id "W7K_08990"; transcript_id "KOE99554"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 11348 11833 . + . gene_id "W7K_08990"; transcript_id "KOE99554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99554-1"; +contig31 ena CDS 11348 11830 . + 0 gene_id "W7K_08990"; transcript_id "KOE99554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99554"; +contig31 ena start_codon 11348 11350 . + 0 gene_id "W7K_08990"; transcript_id "KOE99554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 11831 11833 . + 0 gene_id "W7K_08990"; transcript_id "KOE99554"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 11868 12683 . + . gene_id "W7K_08995"; gene_name "panB"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 11868 12683 . + . gene_id "W7K_08995"; transcript_id "KOE99555"; gene_name "panB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "panB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 11868 12683 . + . gene_id "W7K_08995"; transcript_id "KOE99555"; exon_number "1"; gene_name "panB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "panB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99555-1"; +contig31 ena CDS 11868 12680 . + 0 gene_id "W7K_08995"; transcript_id "KOE99555"; exon_number "1"; gene_name "panB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "panB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99555"; +contig31 ena start_codon 11868 11870 . + 0 gene_id "W7K_08995"; transcript_id "KOE99555"; exon_number "1"; gene_name "panB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "panB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 12681 12683 . + 0 gene_id "W7K_08995"; transcript_id "KOE99555"; exon_number "1"; gene_name "panB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "panB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 12680 13519 . + . gene_id "W7K_09000"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 12680 13519 . + . gene_id "W7K_09000"; transcript_id "KOE99556"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 12680 13519 . + . gene_id "W7K_09000"; transcript_id "KOE99556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99556-1"; +contig31 ena CDS 12680 13516 . + 0 gene_id "W7K_09000"; transcript_id "KOE99556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99556"; +contig31 ena start_codon 12680 12682 . + 0 gene_id "W7K_09000"; transcript_id "KOE99556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 13517 13519 . + 0 gene_id "W7K_09000"; transcript_id "KOE99556"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 13586 14083 . + . gene_id "W7K_09005"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 13586 14083 . + . gene_id "W7K_09005"; transcript_id "KOE99557"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 13586 14083 . + . gene_id "W7K_09005"; transcript_id "KOE99557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99557-1"; +contig31 ena CDS 13586 14080 . + 0 gene_id "W7K_09005"; transcript_id "KOE99557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99557"; +contig31 ena start_codon 13586 13588 . + 0 gene_id "W7K_09005"; transcript_id "KOE99557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 14081 14083 . + 0 gene_id "W7K_09005"; transcript_id "KOE99557"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 14171 14551 . + . gene_id "W7K_09010"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 14171 14551 . + . gene_id "W7K_09010"; transcript_id "KOE99558"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 14171 14551 . + . gene_id "W7K_09010"; transcript_id "KOE99558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99558-1"; +contig31 ena CDS 14171 14548 . + 0 gene_id "W7K_09010"; transcript_id "KOE99558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99558"; +contig31 ena start_codon 14171 14173 . + 0 gene_id "W7K_09010"; transcript_id "KOE99558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 14549 14551 . + 0 gene_id "W7K_09010"; transcript_id "KOE99558"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 14548 16062 . + . gene_id "W7K_09015"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 14548 16062 . + . gene_id "W7K_09015"; transcript_id "KOE99559"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 14548 16062 . + . gene_id "W7K_09015"; transcript_id "KOE99559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99559-1"; +contig31 ena CDS 14548 16059 . + 0 gene_id "W7K_09015"; transcript_id "KOE99559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99559"; +contig31 ena start_codon 14548 14550 . + 0 gene_id "W7K_09015"; transcript_id "KOE99559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 16060 16062 . + 0 gene_id "W7K_09015"; transcript_id "KOE99559"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 16379 16585 . + . gene_id "W7K_09020"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 16379 16585 . + . gene_id "W7K_09020"; transcript_id "KOE99560"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 16379 16585 . + . gene_id "W7K_09020"; transcript_id "KOE99560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99560-1"; +contig31 ena CDS 16379 16582 . + 0 gene_id "W7K_09020"; transcript_id "KOE99560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99560"; +contig31 ena start_codon 16379 16381 . + 0 gene_id "W7K_09020"; transcript_id "KOE99560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 16583 16585 . + 0 gene_id "W7K_09020"; transcript_id "KOE99560"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 16668 19565 . + . gene_id "W7K_09025"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 16668 19565 . + . gene_id "W7K_09025"; transcript_id "KOE99561"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 16668 19565 . + . gene_id "W7K_09025"; transcript_id "KOE99561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99561-1"; +contig31 ena CDS 16668 19562 . + 0 gene_id "W7K_09025"; transcript_id "KOE99561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99561"; +contig31 ena start_codon 16668 16670 . + 0 gene_id "W7K_09025"; transcript_id "KOE99561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 19563 19565 . + 0 gene_id "W7K_09025"; transcript_id "KOE99561"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 19587 20150 . - . gene_id "W7K_09030"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 19587 20150 . - . gene_id "W7K_09030"; transcript_id "KOE99562"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 19587 20150 . - . gene_id "W7K_09030"; transcript_id "KOE99562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99562-1"; +contig31 ena CDS 19590 20150 . - 0 gene_id "W7K_09030"; transcript_id "KOE99562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99562"; +contig31 ena start_codon 20148 20150 . - 0 gene_id "W7K_09030"; transcript_id "KOE99562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 19587 19589 . - 0 gene_id "W7K_09030"; transcript_id "KOE99562"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 20147 21373 . - . gene_id "W7K_09035"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 20147 21373 . - . gene_id "W7K_09035"; transcript_id "KOE99563"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 20147 21373 . - . gene_id "W7K_09035"; transcript_id "KOE99563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99563-1"; +contig31 ena CDS 20150 21373 . - 0 gene_id "W7K_09035"; transcript_id "KOE99563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99563"; +contig31 ena start_codon 21371 21373 . - 0 gene_id "W7K_09035"; transcript_id "KOE99563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 20147 20149 . - 0 gene_id "W7K_09035"; transcript_id "KOE99563"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 21488 22753 . + . gene_id "W7K_09040"; gene_name "ispG"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 21488 22753 . + . gene_id "W7K_09040"; transcript_id "KOE99564"; gene_name "ispG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 21488 22753 . + . gene_id "W7K_09040"; transcript_id "KOE99564"; exon_number "1"; gene_name "ispG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99564-1"; +contig31 ena CDS 21488 22750 . + 0 gene_id "W7K_09040"; transcript_id "KOE99564"; exon_number "1"; gene_name "ispG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99564"; +contig31 ena start_codon 21488 21490 . + 0 gene_id "W7K_09040"; transcript_id "KOE99564"; exon_number "1"; gene_name "ispG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 22751 22753 . + 0 gene_id "W7K_09040"; transcript_id "KOE99564"; exon_number "1"; gene_name "ispG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ispG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 22734 23483 . + . gene_id "W7K_09045"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 22734 23483 . + . gene_id "W7K_09045"; transcript_id "KOE99565"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 22734 23483 . + . gene_id "W7K_09045"; transcript_id "KOE99565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99565-1"; +contig31 ena CDS 22734 23480 . + 0 gene_id "W7K_09045"; transcript_id "KOE99565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99565"; +contig31 ena start_codon 22734 22736 . + 0 gene_id "W7K_09045"; transcript_id "KOE99565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 23481 23483 . + 0 gene_id "W7K_09045"; transcript_id "KOE99565"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 23685 24332 . + . gene_id "W7K_09050"; gene_name "sirA"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 23685 24332 . + . gene_id "W7K_09050"; transcript_id "KOE99566"; gene_name "sirA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sirA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 23685 24332 . + . gene_id "W7K_09050"; transcript_id "KOE99566"; exon_number "1"; gene_name "sirA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sirA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99566-1"; +contig31 ena CDS 23685 24329 . + 0 gene_id "W7K_09050"; transcript_id "KOE99566"; exon_number "1"; gene_name "sirA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sirA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99566"; +contig31 ena start_codon 23685 23687 . + 0 gene_id "W7K_09050"; transcript_id "KOE99566"; exon_number "1"; gene_name "sirA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sirA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 24330 24332 . + 0 gene_id "W7K_09050"; transcript_id "KOE99566"; exon_number "1"; gene_name "sirA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "sirA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 24431 25090 . - . gene_id "W7K_09055"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 24431 25090 . - . gene_id "W7K_09055"; transcript_id "KOE99567"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 24431 25090 . - . gene_id "W7K_09055"; transcript_id "KOE99567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99567-1"; +contig31 ena CDS 24434 25090 . - 0 gene_id "W7K_09055"; transcript_id "KOE99567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99567"; +contig31 ena start_codon 25088 25090 . - 0 gene_id "W7K_09055"; transcript_id "KOE99567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 24431 24433 . - 0 gene_id "W7K_09055"; transcript_id "KOE99567"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 25296 27212 . - . gene_id "W7K_09060"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 25296 27212 . - . gene_id "W7K_09060"; transcript_id "KOE99568"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 25296 27212 . - . gene_id "W7K_09060"; transcript_id "KOE99568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99568-1"; +contig31 ena CDS 25299 27212 . - 0 gene_id "W7K_09060"; transcript_id "KOE99568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99568"; +contig31 ena start_codon 27210 27212 . - 0 gene_id "W7K_09060"; transcript_id "KOE99568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 25296 25298 . - 0 gene_id "W7K_09060"; transcript_id "KOE99568"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 27271 27993 . - . gene_id "W7K_09065"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 27271 27993 . - . gene_id "W7K_09065"; transcript_id "KOE99569"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 27271 27993 . - . gene_id "W7K_09065"; transcript_id "KOE99569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99569-1"; +contig31 ena CDS 27274 27993 . - 0 gene_id "W7K_09065"; transcript_id "KOE99569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99569"; +contig31 ena start_codon 27991 27993 . - 0 gene_id "W7K_09065"; transcript_id "KOE99569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 27271 27273 . - 0 gene_id "W7K_09065"; transcript_id "KOE99569"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 27990 28997 . - . gene_id "W7K_09070"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 27990 28997 . - . gene_id "W7K_09070"; transcript_id "KOE99570"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 27990 28997 . - . gene_id "W7K_09070"; transcript_id "KOE99570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99570-1"; +contig31 ena CDS 27993 28997 . - 0 gene_id "W7K_09070"; transcript_id "KOE99570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99570"; +contig31 ena start_codon 28995 28997 . - 0 gene_id "W7K_09070"; transcript_id "KOE99570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 27990 27992 . - 0 gene_id "W7K_09070"; transcript_id "KOE99570"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 28994 30430 . - . gene_id "W7K_09075"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 28994 30430 . - . gene_id "W7K_09075"; transcript_id "KOE99571"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 28994 30430 . - . gene_id "W7K_09075"; transcript_id "KOE99571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99571-1"; +contig31 ena CDS 28997 30430 . - 0 gene_id "W7K_09075"; transcript_id "KOE99571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99571"; +contig31 ena start_codon 30428 30430 . - 0 gene_id "W7K_09075"; transcript_id "KOE99571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 28994 28996 . - 0 gene_id "W7K_09075"; transcript_id "KOE99571"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 30783 31865 . + . gene_id "W7K_09080"; gene_name "ugpC"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 30783 31865 . + . gene_id "W7K_09080"; transcript_id "KOE99572"; gene_name "ugpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ugpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 30783 31865 . + . gene_id "W7K_09080"; transcript_id "KOE99572"; exon_number "1"; gene_name "ugpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ugpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99572-1"; +contig31 ena CDS 30783 31862 . + 0 gene_id "W7K_09080"; transcript_id "KOE99572"; exon_number "1"; gene_name "ugpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ugpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99572"; +contig31 ena start_codon 30783 30785 . + 0 gene_id "W7K_09080"; transcript_id "KOE99572"; exon_number "1"; gene_name "ugpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ugpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 31863 31865 . + 0 gene_id "W7K_09080"; transcript_id "KOE99572"; exon_number "1"; gene_name "ugpC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "ugpC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 31967 32842 . - . gene_id "W7K_09085"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 31967 32842 . - . gene_id "W7K_09085"; transcript_id "KOE99573"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 31967 32842 . - . gene_id "W7K_09085"; transcript_id "KOE99573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99573-1"; +contig31 ena CDS 31970 32842 . - 0 gene_id "W7K_09085"; transcript_id "KOE99573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99573"; +contig31 ena start_codon 32840 32842 . - 0 gene_id "W7K_09085"; transcript_id "KOE99573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 31967 31969 . - 0 gene_id "W7K_09085"; transcript_id "KOE99573"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 33109 33501 . + . gene_id "W7K_09090"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 33109 33501 . + . gene_id "W7K_09090"; transcript_id "KOE99574"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 33109 33501 . + . gene_id "W7K_09090"; transcript_id "KOE99574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99574-1"; +contig31 ena CDS 33109 33498 . + 0 gene_id "W7K_09090"; transcript_id "KOE99574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99574"; +contig31 ena start_codon 33109 33111 . + 0 gene_id "W7K_09090"; transcript_id "KOE99574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 33499 33501 . + 0 gene_id "W7K_09090"; transcript_id "KOE99574"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 33498 33884 . + . gene_id "W7K_09095"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 33498 33884 . + . gene_id "W7K_09095"; transcript_id "KOE99575"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 33498 33884 . + . gene_id "W7K_09095"; transcript_id "KOE99575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99575-1"; +contig31 ena CDS 33498 33881 . + 0 gene_id "W7K_09095"; transcript_id "KOE99575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99575"; +contig31 ena start_codon 33498 33500 . + 0 gene_id "W7K_09095"; transcript_id "KOE99575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 33882 33884 . + 0 gene_id "W7K_09095"; transcript_id "KOE99575"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 33916 35706 . + . gene_id "W7K_09100"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 33916 35706 . + . gene_id "W7K_09100"; transcript_id "KOE99576"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 33916 35706 . + . gene_id "W7K_09100"; transcript_id "KOE99576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99576-1"; +contig31 ena CDS 33916 35703 . + 0 gene_id "W7K_09100"; transcript_id "KOE99576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99576"; +contig31 ena start_codon 33916 33918 . + 0 gene_id "W7K_09100"; transcript_id "KOE99576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 35704 35706 . + 0 gene_id "W7K_09100"; transcript_id "KOE99576"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 35773 36558 . + . gene_id "W7K_09105"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 35773 36558 . + . gene_id "W7K_09105"; transcript_id "KOE99577"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 35773 36558 . + . gene_id "W7K_09105"; transcript_id "KOE99577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99577-1"; +contig31 ena CDS 35773 36555 . + 0 gene_id "W7K_09105"; transcript_id "KOE99577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99577"; +contig31 ena start_codon 35773 35775 . + 0 gene_id "W7K_09105"; transcript_id "KOE99577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 36556 36558 . + 0 gene_id "W7K_09105"; transcript_id "KOE99577"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 36632 36880 . + . gene_id "W7K_09110"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 36632 36880 . + . gene_id "W7K_09110"; transcript_id "KOE99578"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 36632 36880 . + . gene_id "W7K_09110"; transcript_id "KOE99578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99578-1"; +contig31 ena CDS 36632 36877 . + 0 gene_id "W7K_09110"; transcript_id "KOE99578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99578"; +contig31 ena start_codon 36632 36634 . + 0 gene_id "W7K_09110"; transcript_id "KOE99578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 36878 36880 . + 0 gene_id "W7K_09110"; transcript_id "KOE99578"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 36831 37280 . + . gene_id "W7K_09115"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 36831 37280 . + . gene_id "W7K_09115"; transcript_id "KOE99579"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 36831 37280 . + . gene_id "W7K_09115"; transcript_id "KOE99579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99579-1"; +contig31 ena CDS 36831 37277 . + 0 gene_id "W7K_09115"; transcript_id "KOE99579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99579"; +contig31 ena start_codon 36831 36833 . + 0 gene_id "W7K_09115"; transcript_id "KOE99579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 37278 37280 . + 0 gene_id "W7K_09115"; transcript_id "KOE99579"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 37304 38545 . + . gene_id "W7K_09120"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 37304 38545 . + . gene_id "W7K_09120"; transcript_id "KOE99580"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 37304 38545 . + . gene_id "W7K_09120"; transcript_id "KOE99580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99580-1"; +contig31 ena CDS 37304 38542 . + 0 gene_id "W7K_09120"; transcript_id "KOE99580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99580"; +contig31 ena start_codon 37304 37306 . + 0 gene_id "W7K_09120"; transcript_id "KOE99580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 38543 38545 . + 0 gene_id "W7K_09120"; transcript_id "KOE99580"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 38538 39251 . + . gene_id "W7K_09125"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 38538 39251 . + . gene_id "W7K_09125"; transcript_id "KOE99581"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 38538 39251 . + . gene_id "W7K_09125"; transcript_id "KOE99581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99581-1"; +contig31 ena CDS 38538 39248 . + 0 gene_id "W7K_09125"; transcript_id "KOE99581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99581"; +contig31 ena start_codon 38538 38540 . + 0 gene_id "W7K_09125"; transcript_id "KOE99581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 39249 39251 . + 0 gene_id "W7K_09125"; transcript_id "KOE99581"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena gene 39473 39922 . + . gene_id "W7K_09130"; gene_source "ena"; gene_biotype "protein_coding"; +contig31 ena transcript 39473 39922 . + . gene_id "W7K_09130"; transcript_id "KOE99582"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena exon 39473 39922 . + . gene_id "W7K_09130"; transcript_id "KOE99582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE99582-1"; +contig31 ena CDS 39473 39919 . + 0 gene_id "W7K_09130"; transcript_id "KOE99582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE99582"; +contig31 ena start_codon 39473 39475 . + 0 gene_id "W7K_09130"; transcript_id "KOE99582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig31 ena stop_codon 39920 39922 . + 0 gene_id "W7K_09130"; transcript_id "KOE99582"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 160 675 . + . gene_id "W7K_15310"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 160 675 . + . gene_id "W7K_15310"; transcript_id "KOE98309"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 160 675 . + . gene_id "W7K_15310"; transcript_id "KOE98309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98309-1"; +contig17 ena CDS 160 672 . + 0 gene_id "W7K_15310"; transcript_id "KOE98309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98309"; +contig17 ena start_codon 160 162 . + 0 gene_id "W7K_15310"; transcript_id "KOE98309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 673 675 . + 0 gene_id "W7K_15310"; transcript_id "KOE98309"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 686 1690 . + . gene_id "W7K_15315"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 686 1690 . + . gene_id "W7K_15315"; transcript_id "KOE98310"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 686 1690 . + . gene_id "W7K_15315"; transcript_id "KOE98310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98310-1"; +contig17 ena CDS 686 1687 . + 0 gene_id "W7K_15315"; transcript_id "KOE98310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98310"; +contig17 ena start_codon 686 688 . + 0 gene_id "W7K_15315"; transcript_id "KOE98310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 1688 1690 . + 0 gene_id "W7K_15315"; transcript_id "KOE98310"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 1687 2022 . + . gene_id "W7K_15320"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 1687 2022 . + . gene_id "W7K_15320"; transcript_id "KOE98311"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 1687 2022 . + . gene_id "W7K_15320"; transcript_id "KOE98311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98311-1"; +contig17 ena CDS 1687 2019 . + 0 gene_id "W7K_15320"; transcript_id "KOE98311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98311"; +contig17 ena start_codon 1687 1689 . + 0 gene_id "W7K_15320"; transcript_id "KOE98311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 2020 2022 . + 0 gene_id "W7K_15320"; transcript_id "KOE98311"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 2040 2438 . + . gene_id "W7K_15325"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 2040 2438 . + . gene_id "W7K_15325"; transcript_id "KOE98335"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 2040 2438 . + . gene_id "W7K_15325"; transcript_id "KOE98335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98335-1"; +contig17 ena CDS 2040 2435 . + 0 gene_id "W7K_15325"; transcript_id "KOE98335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98335"; +contig17 ena start_codon 2040 2042 . + 0 gene_id "W7K_15325"; transcript_id "KOE98335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 2436 2438 . + 0 gene_id "W7K_15325"; transcript_id "KOE98335"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 2440 3219 . + . gene_id "W7K_15330"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 2440 3219 . + . gene_id "W7K_15330"; transcript_id "KOE98312"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 2440 3219 . + . gene_id "W7K_15330"; transcript_id "KOE98312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98312-1"; +contig17 ena CDS 2440 3216 . + 0 gene_id "W7K_15330"; transcript_id "KOE98312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98312"; +contig17 ena start_codon 2440 2442 . + 0 gene_id "W7K_15330"; transcript_id "KOE98312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 3217 3219 . + 0 gene_id "W7K_15330"; transcript_id "KOE98312"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 3271 3540 . + . gene_id "W7K_15335"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 3271 3540 . + . gene_id "W7K_15335"; transcript_id "KOE98313"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 3271 3540 . + . gene_id "W7K_15335"; transcript_id "KOE98313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98313-1"; +contig17 ena CDS 3271 3537 . + 0 gene_id "W7K_15335"; transcript_id "KOE98313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98313"; +contig17 ena start_codon 3271 3273 . + 0 gene_id "W7K_15335"; transcript_id "KOE98313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 3538 3540 . + 0 gene_id "W7K_15335"; transcript_id "KOE98313"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 3554 4345 . + . gene_id "W7K_15340"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 3554 4345 . + . gene_id "W7K_15340"; transcript_id "KOE98314"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 3554 4345 . + . gene_id "W7K_15340"; transcript_id "KOE98314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98314-1"; +contig17 ena CDS 3554 4342 . + 0 gene_id "W7K_15340"; transcript_id "KOE98314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98314"; +contig17 ena start_codon 3554 3556 . + 0 gene_id "W7K_15340"; transcript_id "KOE98314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 4343 4345 . + 0 gene_id "W7K_15340"; transcript_id "KOE98314"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 4621 6756 . + . gene_id "W7K_15345"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 4621 6756 . + . gene_id "W7K_15345"; transcript_id "KOE98315"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 4621 6756 . + . gene_id "W7K_15345"; transcript_id "KOE98315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98315-1"; +contig17 ena CDS 4621 6753 . + 0 gene_id "W7K_15345"; transcript_id "KOE98315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98315"; +contig17 ena start_codon 4621 4623 . + 0 gene_id "W7K_15345"; transcript_id "KOE98315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 6754 6756 . + 0 gene_id "W7K_15345"; transcript_id "KOE98315"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 6915 8045 . + . gene_id "W7K_15350"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 6915 8045 . + . gene_id "W7K_15350"; transcript_id "KOE98316"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 6915 8045 . + . gene_id "W7K_15350"; transcript_id "KOE98316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98316-1"; +contig17 ena CDS 6915 8042 . + 0 gene_id "W7K_15350"; transcript_id "KOE98316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98316"; +contig17 ena start_codon 6915 6917 . + 0 gene_id "W7K_15350"; transcript_id "KOE98316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 8043 8045 . + 0 gene_id "W7K_15350"; transcript_id "KOE98316"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 8042 10150 . + . gene_id "W7K_15355"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 8042 10150 . + . gene_id "W7K_15355"; transcript_id "KOE98317"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 8042 10150 . + . gene_id "W7K_15355"; transcript_id "KOE98317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98317-1"; +contig17 ena CDS 8042 10147 . + 0 gene_id "W7K_15355"; transcript_id "KOE98317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98317"; +contig17 ena start_codon 8042 8044 . + 0 gene_id "W7K_15355"; transcript_id "KOE98317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 10148 10150 . + 0 gene_id "W7K_15355"; transcript_id "KOE98317"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 10296 11924 . + . gene_id "W7K_15360"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 10296 11924 . + . gene_id "W7K_15360"; transcript_id "KOE98318"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 10296 11924 . + . gene_id "W7K_15360"; transcript_id "KOE98318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98318-1"; +contig17 ena CDS 10296 11921 . + 0 gene_id "W7K_15360"; transcript_id "KOE98318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98318"; +contig17 ena start_codon 10296 10298 . + 0 gene_id "W7K_15360"; transcript_id "KOE98318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 11922 11924 . + 0 gene_id "W7K_15360"; transcript_id "KOE98318"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 11911 12798 . + . gene_id "W7K_15365"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 11911 12798 . + . gene_id "W7K_15365"; transcript_id "KOE98319"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 11911 12798 . + . gene_id "W7K_15365"; transcript_id "KOE98319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98319-1"; +contig17 ena CDS 11911 12795 . + 0 gene_id "W7K_15365"; transcript_id "KOE98319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98319"; +contig17 ena start_codon 11911 11913 . + 0 gene_id "W7K_15365"; transcript_id "KOE98319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 12796 12798 . + 0 gene_id "W7K_15365"; transcript_id "KOE98319"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 12795 13538 . + . gene_id "W7K_15370"; gene_name "fliA"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 12795 13538 . + . gene_id "W7K_15370"; transcript_id "KOE98320"; gene_name "fliA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 12795 13538 . + . gene_id "W7K_15370"; transcript_id "KOE98320"; exon_number "1"; gene_name "fliA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98320-1"; +contig17 ena CDS 12795 13535 . + 0 gene_id "W7K_15370"; transcript_id "KOE98320"; exon_number "1"; gene_name "fliA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98320"; +contig17 ena start_codon 12795 12797 . + 0 gene_id "W7K_15370"; transcript_id "KOE98320"; exon_number "1"; gene_name "fliA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 13536 13538 . + 0 gene_id "W7K_15370"; transcript_id "KOE98320"; exon_number "1"; gene_name "fliA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fliA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 13596 13988 . + . gene_id "W7K_15375"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 13596 13988 . + . gene_id "W7K_15375"; transcript_id "KOE98321"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 13596 13988 . + . gene_id "W7K_15375"; transcript_id "KOE98321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98321-1"; +contig17 ena CDS 13596 13985 . + 0 gene_id "W7K_15375"; transcript_id "KOE98321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98321"; +contig17 ena start_codon 13596 13598 . + 0 gene_id "W7K_15375"; transcript_id "KOE98321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 13986 13988 . + 0 gene_id "W7K_15375"; transcript_id "KOE98321"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 13988 14593 . + . gene_id "W7K_15380"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 13988 14593 . + . gene_id "W7K_15380"; transcript_id "KOE98322"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 13988 14593 . + . gene_id "W7K_15380"; transcript_id "KOE98322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98322-1"; +contig17 ena CDS 13988 14590 . + 0 gene_id "W7K_15380"; transcript_id "KOE98322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98322"; +contig17 ena start_codon 13988 13990 . + 0 gene_id "W7K_15380"; transcript_id "KOE98322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 14591 14593 . + 0 gene_id "W7K_15380"; transcript_id "KOE98322"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 14596 16428 . + . gene_id "W7K_15385"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 14596 16428 . + . gene_id "W7K_15385"; transcript_id "KOE98323"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 14596 16428 . + . gene_id "W7K_15385"; transcript_id "KOE98323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98323-1"; +contig17 ena CDS 14596 16425 . + 0 gene_id "W7K_15385"; transcript_id "KOE98323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98323"; +contig17 ena start_codon 14596 14598 . + 0 gene_id "W7K_15385"; transcript_id "KOE98323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 16426 16428 . + 0 gene_id "W7K_15385"; transcript_id "KOE98323"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 16530 17270 . + . gene_id "W7K_15390"; gene_name "motC"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 16530 17270 . + . gene_id "W7K_15390"; transcript_id "KOE98324"; gene_name "motC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "motC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 16530 17270 . + . gene_id "W7K_15390"; transcript_id "KOE98324"; exon_number "1"; gene_name "motC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "motC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98324-1"; +contig17 ena CDS 16530 17267 . + 0 gene_id "W7K_15390"; transcript_id "KOE98324"; exon_number "1"; gene_name "motC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "motC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98324"; +contig17 ena start_codon 16530 16532 . + 0 gene_id "W7K_15390"; transcript_id "KOE98324"; exon_number "1"; gene_name "motC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "motC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 17268 17270 . + 0 gene_id "W7K_15390"; transcript_id "KOE98324"; exon_number "1"; gene_name "motC"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "motC-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 17272 18288 . + . gene_id "W7K_15395"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 17272 18288 . + . gene_id "W7K_15395"; transcript_id "KOE98325"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 17272 18288 . + . gene_id "W7K_15395"; transcript_id "KOE98325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98325-1"; +contig17 ena CDS 17272 18285 . + 0 gene_id "W7K_15395"; transcript_id "KOE98325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98325"; +contig17 ena start_codon 17272 17274 . + 0 gene_id "W7K_15395"; transcript_id "KOE98325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 18286 18288 . + 0 gene_id "W7K_15395"; transcript_id "KOE98325"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 18293 19075 . + . gene_id "W7K_15400"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 18293 19075 . + . gene_id "W7K_15400"; transcript_id "KOE98326"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 18293 19075 . + . gene_id "W7K_15400"; transcript_id "KOE98326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98326-1"; +contig17 ena CDS 18293 19072 . + 0 gene_id "W7K_15400"; transcript_id "KOE98326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98326"; +contig17 ena start_codon 18293 18295 . + 0 gene_id "W7K_15400"; transcript_id "KOE98326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 19073 19075 . + 0 gene_id "W7K_15400"; transcript_id "KOE98326"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 19072 20277 . + . gene_id "W7K_15405"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 19072 20277 . + . gene_id "W7K_15405"; transcript_id "KOE98327"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 19072 20277 . + . gene_id "W7K_15405"; transcript_id "KOE98327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98327-1"; +contig17 ena CDS 19072 20274 . + 0 gene_id "W7K_15405"; transcript_id "KOE98327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98327"; +contig17 ena start_codon 19072 19074 . + 0 gene_id "W7K_15405"; transcript_id "KOE98327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 20275 20277 . + 0 gene_id "W7K_15405"; transcript_id "KOE98327"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 20390 20698 . + . gene_id "W7K_15410"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 20390 20698 . + . gene_id "W7K_15410"; transcript_id "KOE98328"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 20390 20698 . + . gene_id "W7K_15410"; transcript_id "KOE98328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98328-1"; +contig17 ena CDS 20390 20695 . + 0 gene_id "W7K_15410"; transcript_id "KOE98328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98328"; +contig17 ena start_codon 20390 20392 . + 0 gene_id "W7K_15410"; transcript_id "KOE98328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 20696 20698 . + 0 gene_id "W7K_15410"; transcript_id "KOE98328"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 20695 21060 . + . gene_id "W7K_15415"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 20695 21060 . + . gene_id "W7K_15415"; transcript_id "KOE98329"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 20695 21060 . + . gene_id "W7K_15415"; transcript_id "KOE98329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98329-1"; +contig17 ena CDS 20695 21057 . + 0 gene_id "W7K_15415"; transcript_id "KOE98329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98329"; +contig17 ena start_codon 20695 20697 . + 0 gene_id "W7K_15415"; transcript_id "KOE98329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 21058 21060 . + 0 gene_id "W7K_15415"; transcript_id "KOE98329"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 21106 23097 . + . gene_id "W7K_15420"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 21106 23097 . + . gene_id "W7K_15420"; transcript_id "KOE98330"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 21106 23097 . + . gene_id "W7K_15420"; transcript_id "KOE98330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98330-1"; +contig17 ena CDS 21106 23094 . + 0 gene_id "W7K_15420"; transcript_id "KOE98330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98330"; +contig17 ena start_codon 21106 21108 . + 0 gene_id "W7K_15420"; transcript_id "KOE98330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 23095 23097 . + 0 gene_id "W7K_15420"; transcript_id "KOE98330"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 23484 25733 . + . gene_id "W7K_15425"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 23484 25733 . + . gene_id "W7K_15425"; transcript_id "KOE98331"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 23484 25733 . + . gene_id "W7K_15425"; transcript_id "KOE98331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98331-1"; +contig17 ena CDS 23484 25730 . + 0 gene_id "W7K_15425"; transcript_id "KOE98331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98331"; +contig17 ena start_codon 23484 23486 . + 0 gene_id "W7K_15425"; transcript_id "KOE98331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 25731 25733 . + 0 gene_id "W7K_15425"; transcript_id "KOE98331"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 25891 26664 . + . gene_id "W7K_15430"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 25891 26664 . + . gene_id "W7K_15430"; transcript_id "KOE98336"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 25891 26664 . + . gene_id "W7K_15430"; transcript_id "KOE98336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98336-1"; +contig17 ena CDS 25891 26661 . + 0 gene_id "W7K_15430"; transcript_id "KOE98336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98336"; +contig17 ena start_codon 25891 25893 . + 0 gene_id "W7K_15430"; transcript_id "KOE98336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 26662 26664 . + 0 gene_id "W7K_15430"; transcript_id "KOE98336"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 26798 27289 . + . gene_id "W7K_15435"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 26798 27289 . + . gene_id "W7K_15435"; transcript_id "KOE98332"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 26798 27289 . + . gene_id "W7K_15435"; transcript_id "KOE98332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98332-1"; +contig17 ena CDS 26798 27286 . + 0 gene_id "W7K_15435"; transcript_id "KOE98332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98332"; +contig17 ena start_codon 26798 26800 . + 0 gene_id "W7K_15435"; transcript_id "KOE98332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 27287 27289 . + 0 gene_id "W7K_15435"; transcript_id "KOE98332"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 27426 27809 . + . gene_id "W7K_15440"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 27426 27809 . + . gene_id "W7K_15440"; transcript_id "KOE98333"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 27426 27809 . + . gene_id "W7K_15440"; transcript_id "KOE98333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98333-1"; +contig17 ena CDS 27426 27806 . + 0 gene_id "W7K_15440"; transcript_id "KOE98333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98333"; +contig17 ena start_codon 27426 27428 . + 0 gene_id "W7K_15440"; transcript_id "KOE98333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena stop_codon 27807 27809 . + 0 gene_id "W7K_15440"; transcript_id "KOE98333"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena gene 27911 29840 . + . gene_id "W7K_15445"; gene_source "ena"; gene_biotype "protein_coding"; +contig17 ena transcript 27911 29840 . + . gene_id "W7K_15445"; transcript_id "KOE98334"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig17 ena exon 27911 29840 . + . gene_id "W7K_15445"; transcript_id "KOE98334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98334-1"; +contig17 ena CDS 27911 29840 . + 0 gene_id "W7K_15445"; transcript_id "KOE98334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98334"; +contig17 ena start_codon 27911 27913 . + 0 gene_id "W7K_15445"; transcript_id "KOE98334"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 1 1537 . + . gene_id "W7K_00645"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 1 1537 . + . gene_id "W7K_00645"; transcript_id "KOF01172"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 1 1537 . + . gene_id "W7K_00645"; transcript_id "KOF01172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01172-1"; +contig47 ena CDS 2 1534 . + 0 gene_id "W7K_00645"; transcript_id "KOF01172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01172"; +contig47 ena stop_codon 1535 1537 . + 0 gene_id "W7K_00645"; transcript_id "KOF01172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena five_prime_utr 1 1 . + . gene_id "W7K_00645"; transcript_id "KOF01172"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 1534 2220 . + . gene_id "W7K_00650"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 1534 2220 . + . gene_id "W7K_00650"; transcript_id "KOF01173"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 1534 2220 . + . gene_id "W7K_00650"; transcript_id "KOF01173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01173-1"; +contig47 ena CDS 1534 2217 . + 0 gene_id "W7K_00650"; transcript_id "KOF01173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01173"; +contig47 ena start_codon 1534 1536 . + 0 gene_id "W7K_00650"; transcript_id "KOF01173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 2218 2220 . + 0 gene_id "W7K_00650"; transcript_id "KOF01173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 2217 2708 . + . gene_id "W7K_00655"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 2217 2708 . + . gene_id "W7K_00655"; transcript_id "KOF01174"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 2217 2708 . + . gene_id "W7K_00655"; transcript_id "KOF01174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01174-1"; +contig47 ena CDS 2217 2705 . + 0 gene_id "W7K_00655"; transcript_id "KOF01174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01174"; +contig47 ena start_codon 2217 2219 . + 0 gene_id "W7K_00655"; transcript_id "KOF01174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 2706 2708 . + 0 gene_id "W7K_00655"; transcript_id "KOF01174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 2686 3249 . - . gene_id "W7K_00660"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 2686 3249 . - . gene_id "W7K_00660"; transcript_id "KOF01175"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 2686 3249 . - . gene_id "W7K_00660"; transcript_id "KOF01175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01175-1"; +contig47 ena CDS 2689 3249 . - 0 gene_id "W7K_00660"; transcript_id "KOF01175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01175"; +contig47 ena start_codon 3247 3249 . - 0 gene_id "W7K_00660"; transcript_id "KOF01175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 2686 2688 . - 0 gene_id "W7K_00660"; transcript_id "KOF01175"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 3379 4038 . + . gene_id "W7K_00665"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 3379 4038 . + . gene_id "W7K_00665"; transcript_id "KOF01176"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 3379 4038 . + . gene_id "W7K_00665"; transcript_id "KOF01176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01176-1"; +contig47 ena CDS 3379 4035 . + 0 gene_id "W7K_00665"; transcript_id "KOF01176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01176"; +contig47 ena start_codon 3379 3381 . + 0 gene_id "W7K_00665"; transcript_id "KOF01176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 4036 4038 . + 0 gene_id "W7K_00665"; transcript_id "KOF01176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 4234 6258 . + . gene_id "W7K_00670"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 4234 6258 . + . gene_id "W7K_00670"; transcript_id "KOF01193"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 4234 6258 . + . gene_id "W7K_00670"; transcript_id "KOF01193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01193-1"; +contig47 ena CDS 4234 6255 . + 0 gene_id "W7K_00670"; transcript_id "KOF01193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01193"; +contig47 ena start_codon 4234 4236 . + 0 gene_id "W7K_00670"; transcript_id "KOF01193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 6256 6258 . + 0 gene_id "W7K_00670"; transcript_id "KOF01193"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 6274 6978 . - . gene_id "W7K_00675"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 6274 6978 . - . gene_id "W7K_00675"; transcript_id "KOF01194"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 6274 6978 . - . gene_id "W7K_00675"; transcript_id "KOF01194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01194-1"; +contig47 ena CDS 6277 6978 . - 0 gene_id "W7K_00675"; transcript_id "KOF01194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01194"; +contig47 ena start_codon 6976 6978 . - 0 gene_id "W7K_00675"; transcript_id "KOF01194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 6274 6276 . - 0 gene_id "W7K_00675"; transcript_id "KOF01194"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 7034 7984 . - . gene_id "W7K_00680"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 7034 7984 . - . gene_id "W7K_00680"; transcript_id "KOF01177"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 7034 7984 . - . gene_id "W7K_00680"; transcript_id "KOF01177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01177-1"; +contig47 ena CDS 7037 7984 . - 0 gene_id "W7K_00680"; transcript_id "KOF01177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01177"; +contig47 ena start_codon 7982 7984 . - 0 gene_id "W7K_00680"; transcript_id "KOF01177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 7034 7036 . - 0 gene_id "W7K_00680"; transcript_id "KOF01177"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 7981 9144 . - . gene_id "W7K_00685"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 7981 9144 . - . gene_id "W7K_00685"; transcript_id "KOF01195"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 7981 9144 . - . gene_id "W7K_00685"; transcript_id "KOF01195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01195-1"; +contig47 ena CDS 7984 9144 . - 0 gene_id "W7K_00685"; transcript_id "KOF01195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01195"; +contig47 ena start_codon 9142 9144 . - 0 gene_id "W7K_00685"; transcript_id "KOF01195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 7981 7983 . - 0 gene_id "W7K_00685"; transcript_id "KOF01195"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 9195 9815 . - . gene_id "W7K_00690"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 9195 9815 . - . gene_id "W7K_00690"; transcript_id "KOF01178"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 9195 9815 . - . gene_id "W7K_00690"; transcript_id "KOF01178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01178-1"; +contig47 ena CDS 9198 9815 . - 0 gene_id "W7K_00690"; transcript_id "KOF01178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01178"; +contig47 ena start_codon 9813 9815 . - 0 gene_id "W7K_00690"; transcript_id "KOF01178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 9195 9197 . - 0 gene_id "W7K_00690"; transcript_id "KOF01178"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 9802 10854 . - . gene_id "W7K_00695"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 9802 10854 . - . gene_id "W7K_00695"; transcript_id "KOF01179"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 9802 10854 . - . gene_id "W7K_00695"; transcript_id "KOF01179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01179-1"; +contig47 ena CDS 9805 10854 . - 0 gene_id "W7K_00695"; transcript_id "KOF01179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01179"; +contig47 ena start_codon 10852 10854 . - 0 gene_id "W7K_00695"; transcript_id "KOF01179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 9802 9804 . - 0 gene_id "W7K_00695"; transcript_id "KOF01179"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 10847 11668 . - . gene_id "W7K_00700"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 10847 11668 . - . gene_id "W7K_00700"; transcript_id "KOF01180"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 10847 11668 . - . gene_id "W7K_00700"; transcript_id "KOF01180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01180-1"; +contig47 ena CDS 10850 11668 . - 0 gene_id "W7K_00700"; transcript_id "KOF01180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01180"; +contig47 ena start_codon 11666 11668 . - 0 gene_id "W7K_00700"; transcript_id "KOF01180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 10847 10849 . - 0 gene_id "W7K_00700"; transcript_id "KOF01180"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 11668 12372 . - . gene_id "W7K_00705"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 11668 12372 . - . gene_id "W7K_00705"; transcript_id "KOF01196"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 11668 12372 . - . gene_id "W7K_00705"; transcript_id "KOF01196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01196-1"; +contig47 ena CDS 11671 12372 . - 0 gene_id "W7K_00705"; transcript_id "KOF01196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01196"; +contig47 ena start_codon 12370 12372 . - 0 gene_id "W7K_00705"; transcript_id "KOF01196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 11668 11670 . - 0 gene_id "W7K_00705"; transcript_id "KOF01196"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 12914 13411 . + . gene_id "W7K_00710"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 12914 13411 . + . gene_id "W7K_00710"; transcript_id "KOF01181"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 12914 13411 . + . gene_id "W7K_00710"; transcript_id "KOF01181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01181-1"; +contig47 ena CDS 12914 13408 . + 0 gene_id "W7K_00710"; transcript_id "KOF01181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01181"; +contig47 ena start_codon 12914 12916 . + 0 gene_id "W7K_00710"; transcript_id "KOF01181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 13409 13411 . + 0 gene_id "W7K_00710"; transcript_id "KOF01181"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 13495 13878 . + . gene_id "W7K_00715"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 13495 13878 . + . gene_id "W7K_00715"; transcript_id "KOF01182"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 13495 13878 . + . gene_id "W7K_00715"; transcript_id "KOF01182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01182-1"; +contig47 ena CDS 13495 13875 . + 0 gene_id "W7K_00715"; transcript_id "KOF01182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01182"; +contig47 ena start_codon 13495 13497 . + 0 gene_id "W7K_00715"; transcript_id "KOF01182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 13876 13878 . + 0 gene_id "W7K_00715"; transcript_id "KOF01182"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 14082 16280 . - . gene_id "W7K_00720"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 14082 16280 . - . gene_id "W7K_00720"; transcript_id "KOF01183"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 14082 16280 . - . gene_id "W7K_00720"; transcript_id "KOF01183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01183-1"; +contig47 ena CDS 14085 16280 . - 0 gene_id "W7K_00720"; transcript_id "KOF01183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01183"; +contig47 ena start_codon 16278 16280 . - 0 gene_id "W7K_00720"; transcript_id "KOF01183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 14082 14084 . - 0 gene_id "W7K_00720"; transcript_id "KOF01183"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 16321 16773 . - . gene_id "W7K_00725"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 16321 16773 . - . gene_id "W7K_00725"; transcript_id "KOF01197"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 16321 16773 . - . gene_id "W7K_00725"; transcript_id "KOF01197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01197-1"; +contig47 ena CDS 16324 16773 . - 0 gene_id "W7K_00725"; transcript_id "KOF01197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01197"; +contig47 ena start_codon 16771 16773 . - 0 gene_id "W7K_00725"; transcript_id "KOF01197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 16321 16323 . - 0 gene_id "W7K_00725"; transcript_id "KOF01197"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 17248 17616 . + . gene_id "W7K_00730"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 17248 17616 . + . gene_id "W7K_00730"; transcript_id "KOF01184"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 17248 17616 . + . gene_id "W7K_00730"; transcript_id "KOF01184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01184-1"; +contig47 ena CDS 17248 17613 . + 0 gene_id "W7K_00730"; transcript_id "KOF01184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01184"; +contig47 ena start_codon 17248 17250 . + 0 gene_id "W7K_00730"; transcript_id "KOF01184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 17614 17616 . + 0 gene_id "W7K_00730"; transcript_id "KOF01184"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 17830 20022 . - . gene_id "W7K_00735"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 17830 20022 . - . gene_id "W7K_00735"; transcript_id "KOF01185"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 17830 20022 . - . gene_id "W7K_00735"; transcript_id "KOF01185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01185-1"; +contig47 ena CDS 17833 20022 . - 0 gene_id "W7K_00735"; transcript_id "KOF01185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01185"; +contig47 ena start_codon 20020 20022 . - 0 gene_id "W7K_00735"; transcript_id "KOF01185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 17830 17832 . - 0 gene_id "W7K_00735"; transcript_id "KOF01185"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 20812 22041 . + . gene_id "W7K_00740"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 20812 22041 . + . gene_id "W7K_00740"; transcript_id "KOF01186"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 20812 22041 . + . gene_id "W7K_00740"; transcript_id "KOF01186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01186-1"; +contig47 ena CDS 20812 22038 . + 0 gene_id "W7K_00740"; transcript_id "KOF01186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01186"; +contig47 ena start_codon 20812 20814 . + 0 gene_id "W7K_00740"; transcript_id "KOF01186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 22039 22041 . + 0 gene_id "W7K_00740"; transcript_id "KOF01186"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 22484 23884 . + . gene_id "W7K_00750"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 22484 23884 . + . gene_id "W7K_00750"; transcript_id "KOF01187"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 22484 23884 . + . gene_id "W7K_00750"; transcript_id "KOF01187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01187-1"; +contig47 ena CDS 22484 23881 . + 0 gene_id "W7K_00750"; transcript_id "KOF01187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01187"; +contig47 ena start_codon 22484 22486 . + 0 gene_id "W7K_00750"; transcript_id "KOF01187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 23882 23884 . + 0 gene_id "W7K_00750"; transcript_id "KOF01187"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 23917 25401 . + . gene_id "W7K_00755"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 23917 25401 . + . gene_id "W7K_00755"; transcript_id "KOF01188"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 23917 25401 . + . gene_id "W7K_00755"; transcript_id "KOF01188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01188-1"; +contig47 ena CDS 23917 25398 . + 0 gene_id "W7K_00755"; transcript_id "KOF01188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01188"; +contig47 ena start_codon 23917 23919 . + 0 gene_id "W7K_00755"; transcript_id "KOF01188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 25399 25401 . + 0 gene_id "W7K_00755"; transcript_id "KOF01188"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 25970 26590 . + . gene_id "W7K_00765"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 25970 26590 . + . gene_id "W7K_00765"; transcript_id "KOF01189"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 25970 26590 . + . gene_id "W7K_00765"; transcript_id "KOF01189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01189-1"; +contig47 ena CDS 25970 26587 . + 0 gene_id "W7K_00765"; transcript_id "KOF01189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01189"; +contig47 ena start_codon 25970 25972 . + 0 gene_id "W7K_00765"; transcript_id "KOF01189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 26588 26590 . + 0 gene_id "W7K_00765"; transcript_id "KOF01189"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 26726 27475 . + . gene_id "W7K_00770"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 26726 27475 . + . gene_id "W7K_00770"; transcript_id "KOF01190"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 26726 27475 . + . gene_id "W7K_00770"; transcript_id "KOF01190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01190-1"; +contig47 ena CDS 26726 27472 . + 0 gene_id "W7K_00770"; transcript_id "KOF01190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01190"; +contig47 ena start_codon 26726 26728 . + 0 gene_id "W7K_00770"; transcript_id "KOF01190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 27473 27475 . + 0 gene_id "W7K_00770"; transcript_id "KOF01190"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 27493 28422 . + . gene_id "W7K_00775"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 27493 28422 . + . gene_id "W7K_00775"; transcript_id "KOF01191"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 27493 28422 . + . gene_id "W7K_00775"; transcript_id "KOF01191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01191-1"; +contig47 ena CDS 27493 28419 . + 0 gene_id "W7K_00775"; transcript_id "KOF01191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01191"; +contig47 ena start_codon 27493 27495 . + 0 gene_id "W7K_00775"; transcript_id "KOF01191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 28420 28422 . + 0 gene_id "W7K_00775"; transcript_id "KOF01191"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena gene 28918 29172 . - . gene_id "W7K_00780"; gene_source "ena"; gene_biotype "protein_coding"; +contig47 ena transcript 28918 29172 . - . gene_id "W7K_00780"; transcript_id "KOF01192"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena exon 28918 29172 . - . gene_id "W7K_00780"; transcript_id "KOF01192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01192-1"; +contig47 ena CDS 28921 29172 . - 0 gene_id "W7K_00780"; transcript_id "KOF01192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01192"; +contig47 ena start_codon 29170 29172 . - 0 gene_id "W7K_00780"; transcript_id "KOF01192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig47 ena stop_codon 28918 28920 . - 0 gene_id "W7K_00780"; transcript_id "KOF01192"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 175 360 . - . gene_id "W7K_04810"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 175 360 . - . gene_id "W7K_04810"; transcript_id "KOF00361"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 175 360 . - . gene_id "W7K_04810"; transcript_id "KOF00361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00361-1"; +contig37 ena CDS 178 360 . - 0 gene_id "W7K_04810"; transcript_id "KOF00361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00361"; +contig37 ena start_codon 358 360 . - 0 gene_id "W7K_04810"; transcript_id "KOF00361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 175 177 . - 0 gene_id "W7K_04810"; transcript_id "KOF00361"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 463 2397 . - . gene_id "W7K_04815"; gene_name "hflB"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 463 2397 . - . gene_id "W7K_04815"; transcript_id "KOF00362"; gene_name "hflB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hflB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 463 2397 . - . gene_id "W7K_04815"; transcript_id "KOF00362"; exon_number "1"; gene_name "hflB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hflB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00362-1"; +contig37 ena CDS 466 2397 . - 0 gene_id "W7K_04815"; transcript_id "KOF00362"; exon_number "1"; gene_name "hflB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hflB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00362"; +contig37 ena start_codon 2395 2397 . - 0 gene_id "W7K_04815"; transcript_id "KOF00362"; exon_number "1"; gene_name "hflB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hflB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 463 465 . - 0 gene_id "W7K_04815"; transcript_id "KOF00362"; exon_number "1"; gene_name "hflB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "hflB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 2467 3099 . - . gene_id "W7K_04820"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 2467 3099 . - . gene_id "W7K_04820"; transcript_id "KOF00363"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 2467 3099 . - . gene_id "W7K_04820"; transcript_id "KOF00363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00363-1"; +contig37 ena CDS 2470 3099 . - 0 gene_id "W7K_04820"; transcript_id "KOF00363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00363"; +contig37 ena start_codon 3097 3099 . - 0 gene_id "W7K_04820"; transcript_id "KOF00363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 2467 2469 . - 0 gene_id "W7K_04820"; transcript_id "KOF00363"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 3165 3470 . + . gene_id "W7K_04825"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 3165 3470 . + . gene_id "W7K_04825"; transcript_id "KOF00364"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 3165 3470 . + . gene_id "W7K_04825"; transcript_id "KOF00364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00364-1"; +contig37 ena CDS 3165 3467 . + 0 gene_id "W7K_04825"; transcript_id "KOF00364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00364"; +contig37 ena start_codon 3165 3167 . + 0 gene_id "W7K_04825"; transcript_id "KOF00364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 3468 3470 . + 0 gene_id "W7K_04825"; transcript_id "KOF00364"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 3484 3858 . + . gene_id "W7K_04830"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 3484 3858 . + . gene_id "W7K_04830"; transcript_id "KOF00365"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 3484 3858 . + . gene_id "W7K_04830"; transcript_id "KOF00365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00365-1"; +contig37 ena CDS 3484 3855 . + 0 gene_id "W7K_04830"; transcript_id "KOF00365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00365"; +contig37 ena start_codon 3484 3486 . + 0 gene_id "W7K_04830"; transcript_id "KOF00365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 3856 3858 . + 0 gene_id "W7K_04830"; transcript_id "KOF00365"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 3997 4779 . - . gene_id "W7K_04835"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 3997 4779 . - . gene_id "W7K_04835"; transcript_id "KOF00366"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 3997 4779 . - . gene_id "W7K_04835"; transcript_id "KOF00366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00366-1"; +contig37 ena CDS 4000 4779 . - 0 gene_id "W7K_04835"; transcript_id "KOF00366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00366"; +contig37 ena start_codon 4777 4779 . - 0 gene_id "W7K_04835"; transcript_id "KOF00366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 3997 3999 . - 0 gene_id "W7K_04835"; transcript_id "KOF00366"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 4776 5390 . - . gene_id "W7K_04840"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 4776 5390 . - . gene_id "W7K_04840"; transcript_id "KOF00367"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 4776 5390 . - . gene_id "W7K_04840"; transcript_id "KOF00367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00367-1"; +contig37 ena CDS 4779 5390 . - 0 gene_id "W7K_04840"; transcript_id "KOF00367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00367"; +contig37 ena start_codon 5388 5390 . - 0 gene_id "W7K_04840"; transcript_id "KOF00367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 4776 4778 . - 0 gene_id "W7K_04840"; transcript_id "KOF00367"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 5409 6086 . - . gene_id "W7K_04845"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 5409 6086 . - . gene_id "W7K_04845"; transcript_id "KOF00368"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 5409 6086 . - . gene_id "W7K_04845"; transcript_id "KOF00368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00368-1"; +contig37 ena CDS 5412 6086 . - 0 gene_id "W7K_04845"; transcript_id "KOF00368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00368"; +contig37 ena start_codon 6084 6086 . - 0 gene_id "W7K_04845"; transcript_id "KOF00368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 5409 5411 . - 0 gene_id "W7K_04845"; transcript_id "KOF00368"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 6083 6862 . - . gene_id "W7K_04850"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 6083 6862 . - . gene_id "W7K_04850"; transcript_id "KOF00369"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 6083 6862 . - . gene_id "W7K_04850"; transcript_id "KOF00369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00369-1"; +contig37 ena CDS 6086 6862 . - 0 gene_id "W7K_04850"; transcript_id "KOF00369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00369"; +contig37 ena start_codon 6860 6862 . - 0 gene_id "W7K_04850"; transcript_id "KOF00369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 6083 6085 . - 0 gene_id "W7K_04850"; transcript_id "KOF00369"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 7072 7611 . + . gene_id "W7K_04855"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 7072 7611 . + . gene_id "W7K_04855"; transcript_id "KOF00370"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 7072 7611 . + . gene_id "W7K_04855"; transcript_id "KOF00370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00370-1"; +contig37 ena CDS 7072 7608 . + 0 gene_id "W7K_04855"; transcript_id "KOF00370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00370"; +contig37 ena start_codon 7072 7074 . + 0 gene_id "W7K_04855"; transcript_id "KOF00370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 7609 7611 . + 0 gene_id "W7K_04855"; transcript_id "KOF00370"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 7711 8742 . - . gene_id "W7K_04860"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 7711 8742 . - . gene_id "W7K_04860"; transcript_id "KOF00371"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 7711 8742 . - . gene_id "W7K_04860"; transcript_id "KOF00371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00371-1"; +contig37 ena CDS 7714 8742 . - 0 gene_id "W7K_04860"; transcript_id "KOF00371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00371"; +contig37 ena start_codon 8740 8742 . - 0 gene_id "W7K_04860"; transcript_id "KOF00371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 7711 7713 . - 0 gene_id "W7K_04860"; transcript_id "KOF00371"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 8739 9236 . - . gene_id "W7K_04865"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 8739 9236 . - . gene_id "W7K_04865"; transcript_id "KOF00372"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 8739 9236 . - . gene_id "W7K_04865"; transcript_id "KOF00372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00372-1"; +contig37 ena CDS 8742 9236 . - 0 gene_id "W7K_04865"; transcript_id "KOF00372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00372"; +contig37 ena start_codon 9234 9236 . - 0 gene_id "W7K_04865"; transcript_id "KOF00372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 8739 8741 . - 0 gene_id "W7K_04865"; transcript_id "KOF00372"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 9271 9969 . - . gene_id "W7K_04870"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 9271 9969 . - . gene_id "W7K_04870"; transcript_id "KOF00373"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 9271 9969 . - . gene_id "W7K_04870"; transcript_id "KOF00373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00373-1"; +contig37 ena CDS 9274 9969 . - 0 gene_id "W7K_04870"; transcript_id "KOF00373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00373"; +contig37 ena start_codon 9967 9969 . - 0 gene_id "W7K_04870"; transcript_id "KOF00373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 9271 9273 . - 0 gene_id "W7K_04870"; transcript_id "KOF00373"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 9966 10319 . - . gene_id "W7K_04875"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 9966 10319 . - . gene_id "W7K_04875"; transcript_id "KOF00374"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 9966 10319 . - . gene_id "W7K_04875"; transcript_id "KOF00374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00374-1"; +contig37 ena CDS 9969 10319 . - 0 gene_id "W7K_04875"; transcript_id "KOF00374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00374"; +contig37 ena start_codon 10317 10319 . - 0 gene_id "W7K_04875"; transcript_id "KOF00374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 9966 9968 . - 0 gene_id "W7K_04875"; transcript_id "KOF00374"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 10324 11616 . - . gene_id "W7K_04880"; gene_name "eno"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 10324 11616 . - . gene_id "W7K_04880"; transcript_id "KOF00375"; gene_name "eno"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "eno-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 10324 11616 . - . gene_id "W7K_04880"; transcript_id "KOF00375"; exon_number "1"; gene_name "eno"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "eno-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00375-1"; +contig37 ena CDS 10327 11616 . - 0 gene_id "W7K_04880"; transcript_id "KOF00375"; exon_number "1"; gene_name "eno"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "eno-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00375"; +contig37 ena start_codon 11614 11616 . - 0 gene_id "W7K_04880"; transcript_id "KOF00375"; exon_number "1"; gene_name "eno"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "eno-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 10324 10326 . - 0 gene_id "W7K_04880"; transcript_id "KOF00375"; exon_number "1"; gene_name "eno"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "eno-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 11712 12041 . - . gene_id "W7K_04885"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 11712 12041 . - . gene_id "W7K_04885"; transcript_id "KOF00376"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 11712 12041 . - . gene_id "W7K_04885"; transcript_id "KOF00376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00376-1"; +contig37 ena CDS 11715 12041 . - 0 gene_id "W7K_04885"; transcript_id "KOF00376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00376"; +contig37 ena start_codon 12039 12041 . - 0 gene_id "W7K_04885"; transcript_id "KOF00376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 11712 11714 . - 0 gene_id "W7K_04885"; transcript_id "KOF00376"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 12041 12388 . - . gene_id "W7K_04890"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 12041 12388 . - . gene_id "W7K_04890"; transcript_id "KOF00377"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 12041 12388 . - . gene_id "W7K_04890"; transcript_id "KOF00377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00377-1"; +contig37 ena CDS 12044 12388 . - 0 gene_id "W7K_04890"; transcript_id "KOF00377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00377"; +contig37 ena start_codon 12386 12388 . - 0 gene_id "W7K_04890"; transcript_id "KOF00377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 12041 12043 . - 0 gene_id "W7K_04890"; transcript_id "KOF00377"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 12385 13215 . - . gene_id "W7K_04895"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 12385 13215 . - . gene_id "W7K_04895"; transcript_id "KOF00378"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 12385 13215 . - . gene_id "W7K_04895"; transcript_id "KOF00378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00378-1"; +contig37 ena CDS 12388 13215 . - 0 gene_id "W7K_04895"; transcript_id "KOF00378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00378"; +contig37 ena start_codon 13213 13215 . - 0 gene_id "W7K_04895"; transcript_id "KOF00378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 12385 12387 . - 0 gene_id "W7K_04895"; transcript_id "KOF00378"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 13305 14969 . - . gene_id "W7K_04900"; gene_name "pyrG"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 13305 14969 . - . gene_id "W7K_04900"; transcript_id "KOF00379"; gene_name "pyrG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 13305 14969 . - . gene_id "W7K_04900"; transcript_id "KOF00379"; exon_number "1"; gene_name "pyrG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00379-1"; +contig37 ena CDS 13308 14969 . - 0 gene_id "W7K_04900"; transcript_id "KOF00379"; exon_number "1"; gene_name "pyrG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00379"; +contig37 ena start_codon 14967 14969 . - 0 gene_id "W7K_04900"; transcript_id "KOF00379"; exon_number "1"; gene_name "pyrG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 13305 13307 . - 0 gene_id "W7K_04900"; transcript_id "KOF00379"; exon_number "1"; gene_name "pyrG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "pyrG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 15370 15603 . - . gene_id "W7K_04905"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 15370 15603 . - . gene_id "W7K_04905"; transcript_id "KOF00380"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 15370 15603 . - . gene_id "W7K_04905"; transcript_id "KOF00380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00380-1"; +contig37 ena CDS 15373 15603 . - 0 gene_id "W7K_04905"; transcript_id "KOF00380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00380"; +contig37 ena start_codon 15601 15603 . - 0 gene_id "W7K_04905"; transcript_id "KOF00380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 15370 15372 . - 0 gene_id "W7K_04905"; transcript_id "KOF00380"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 15776 17665 . + . gene_id "W7K_04910"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 15776 17665 . + . gene_id "W7K_04910"; transcript_id "KOF00381"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 15776 17665 . + . gene_id "W7K_04910"; transcript_id "KOF00381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00381-1"; +contig37 ena CDS 15776 17662 . + 0 gene_id "W7K_04910"; transcript_id "KOF00381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00381"; +contig37 ena start_codon 15776 15778 . + 0 gene_id "W7K_04910"; transcript_id "KOF00381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 17663 17665 . + 0 gene_id "W7K_04910"; transcript_id "KOF00381"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 17819 18397 . + . gene_id "W7K_04915"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 17819 18397 . + . gene_id "W7K_04915"; transcript_id "KOF00382"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 17819 18397 . + . gene_id "W7K_04915"; transcript_id "KOF00382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00382-1"; +contig37 ena CDS 17819 18394 . + 0 gene_id "W7K_04915"; transcript_id "KOF00382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00382"; +contig37 ena start_codon 17819 17821 . + 0 gene_id "W7K_04915"; transcript_id "KOF00382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 18395 18397 . + 0 gene_id "W7K_04915"; transcript_id "KOF00382"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 18507 20003 . + . gene_id "W7K_04920"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 18507 20003 . + . gene_id "W7K_04920"; transcript_id "KOF00383"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 18507 20003 . + . gene_id "W7K_04920"; transcript_id "KOF00383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00383-1"; +contig37 ena CDS 18507 20000 . + 0 gene_id "W7K_04920"; transcript_id "KOF00383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00383"; +contig37 ena start_codon 18507 18509 . + 0 gene_id "W7K_04920"; transcript_id "KOF00383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 20001 20003 . + 0 gene_id "W7K_04920"; transcript_id "KOF00383"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 20334 21455 . - . gene_id "W7K_04925"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 20334 21455 . - . gene_id "W7K_04925"; transcript_id "KOF00384"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 20334 21455 . - . gene_id "W7K_04925"; transcript_id "KOF00384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00384-1"; +contig37 ena CDS 20337 21455 . - 0 gene_id "W7K_04925"; transcript_id "KOF00384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00384"; +contig37 ena start_codon 21453 21455 . - 0 gene_id "W7K_04925"; transcript_id "KOF00384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 20334 20336 . - 0 gene_id "W7K_04925"; transcript_id "KOF00384"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 21469 22095 . - . gene_id "W7K_04930"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 21469 22095 . - . gene_id "W7K_04930"; transcript_id "KOF00385"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 21469 22095 . - . gene_id "W7K_04930"; transcript_id "KOF00385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00385-1"; +contig37 ena CDS 21472 22095 . - 0 gene_id "W7K_04930"; transcript_id "KOF00385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00385"; +contig37 ena start_codon 22093 22095 . - 0 gene_id "W7K_04930"; transcript_id "KOF00385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 21469 21471 . - 0 gene_id "W7K_04930"; transcript_id "KOF00385"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 22373 23692 . + . gene_id "W7K_04935"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 22373 23692 . + . gene_id "W7K_04935"; transcript_id "KOF00386"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 22373 23692 . + . gene_id "W7K_04935"; transcript_id "KOF00386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00386-1"; +contig37 ena CDS 22373 23689 . + 0 gene_id "W7K_04935"; transcript_id "KOF00386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00386"; +contig37 ena start_codon 22373 22375 . + 0 gene_id "W7K_04935"; transcript_id "KOF00386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 23690 23692 . + 0 gene_id "W7K_04935"; transcript_id "KOF00386"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 23676 24335 . + . gene_id "W7K_04940"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 23676 24335 . + . gene_id "W7K_04940"; transcript_id "KOF00387"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 23676 24335 . + . gene_id "W7K_04940"; transcript_id "KOF00387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00387-1"; +contig37 ena CDS 23676 24332 . + 0 gene_id "W7K_04940"; transcript_id "KOF00387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00387"; +contig37 ena start_codon 23676 23678 . + 0 gene_id "W7K_04940"; transcript_id "KOF00387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 24333 24335 . + 0 gene_id "W7K_04940"; transcript_id "KOF00387"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 24393 24890 . - . gene_id "W7K_04945"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 24393 24890 . - . gene_id "W7K_04945"; transcript_id "KOF00388"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 24393 24890 . - . gene_id "W7K_04945"; transcript_id "KOF00388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00388-1"; +contig37 ena CDS 24396 24890 . - 0 gene_id "W7K_04945"; transcript_id "KOF00388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00388"; +contig37 ena start_codon 24888 24890 . - 0 gene_id "W7K_04945"; transcript_id "KOF00388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 24393 24395 . - 0 gene_id "W7K_04945"; transcript_id "KOF00388"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 24960 25955 . - . gene_id "W7K_04950"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 24960 25955 . - . gene_id "W7K_04950"; transcript_id "KOF00389"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 24960 25955 . - . gene_id "W7K_04950"; transcript_id "KOF00389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00389-1"; +contig37 ena CDS 24963 25955 . - 0 gene_id "W7K_04950"; transcript_id "KOF00389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00389"; +contig37 ena start_codon 25953 25955 . - 0 gene_id "W7K_04950"; transcript_id "KOF00389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 24960 24962 . - 0 gene_id "W7K_04950"; transcript_id "KOF00389"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 26149 26916 . - . gene_id "W7K_04955"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 26149 26916 . - . gene_id "W7K_04955"; transcript_id "KOF00390"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 26149 26916 . - . gene_id "W7K_04955"; transcript_id "KOF00390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00390-1"; +contig37 ena CDS 26152 26916 . - 0 gene_id "W7K_04955"; transcript_id "KOF00390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00390"; +contig37 ena start_codon 26914 26916 . - 0 gene_id "W7K_04955"; transcript_id "KOF00390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 26149 26151 . - 0 gene_id "W7K_04955"; transcript_id "KOF00390"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 27102 27467 . - . gene_id "W7K_04960"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 27102 27467 . - . gene_id "W7K_04960"; transcript_id "KOF00391"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 27102 27467 . - . gene_id "W7K_04960"; transcript_id "KOF00391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00391-1"; +contig37 ena CDS 27105 27467 . - 0 gene_id "W7K_04960"; transcript_id "KOF00391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00391"; +contig37 ena start_codon 27465 27467 . - 0 gene_id "W7K_04960"; transcript_id "KOF00391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 27102 27104 . - 0 gene_id "W7K_04960"; transcript_id "KOF00391"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 27538 27972 . + . gene_id "W7K_04965"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 27538 27972 . + . gene_id "W7K_04965"; transcript_id "KOF00392"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 27538 27972 . + . gene_id "W7K_04965"; transcript_id "KOF00392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00392-1"; +contig37 ena CDS 27538 27969 . + 0 gene_id "W7K_04965"; transcript_id "KOF00392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00392"; +contig37 ena start_codon 27538 27540 . + 0 gene_id "W7K_04965"; transcript_id "KOF00392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena stop_codon 27970 27972 . + 0 gene_id "W7K_04965"; transcript_id "KOF00392"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena gene 27959 29062 . + . gene_id "W7K_04970"; gene_source "ena"; gene_biotype "protein_coding"; +contig37 ena transcript 27959 29062 . + . gene_id "W7K_04970"; transcript_id "KOF00393"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig37 ena exon 27959 29062 . + . gene_id "W7K_04970"; transcript_id "KOF00393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00393-1"; +contig37 ena CDS 27959 29062 . + 0 gene_id "W7K_04970"; transcript_id "KOF00393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00393"; +contig37 ena start_codon 27959 27961 . + 0 gene_id "W7K_04970"; transcript_id "KOF00393"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 77 823 . - . gene_id "W7K_03985"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 77 823 . - . gene_id "W7K_03985"; transcript_id "KOF00533"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 77 823 . - . gene_id "W7K_03985"; transcript_id "KOF00533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00533-1"; +contig40 ena CDS 80 823 . - 0 gene_id "W7K_03985"; transcript_id "KOF00533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00533"; +contig40 ena start_codon 821 823 . - 0 gene_id "W7K_03985"; transcript_id "KOF00533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 77 79 . - 0 gene_id "W7K_03985"; transcript_id "KOF00533"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 923 1822 . + . gene_id "W7K_03990"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 923 1822 . + . gene_id "W7K_03990"; transcript_id "KOF00534"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 923 1822 . + . gene_id "W7K_03990"; transcript_id "KOF00534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00534-1"; +contig40 ena CDS 923 1819 . + 0 gene_id "W7K_03990"; transcript_id "KOF00534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00534"; +contig40 ena start_codon 923 925 . + 0 gene_id "W7K_03990"; transcript_id "KOF00534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 1820 1822 . + 0 gene_id "W7K_03990"; transcript_id "KOF00534"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 1873 1957 . + . gene_id "W7K_03995"; gene_source "ena"; gene_biotype "tRNA"; +contig40 ena transcript 1873 1957 . + . gene_id "W7K_03995"; transcript_id "EBT00051077657"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_03995"; transcript_source "ena"; transcript_biotype "tRNA"; +contig40 ena exon 1873 1957 . + . gene_id "W7K_03995"; transcript_id "EBT00051077657"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_03995"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_03995-1"; +contig40 ena gene 2281 2559 . + . gene_id "W7K_04000"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 2281 2559 . + . gene_id "W7K_04000"; transcript_id "KOF00535"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 2281 2559 . + . gene_id "W7K_04000"; transcript_id "KOF00535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00535-1"; +contig40 ena CDS 2281 2556 . + 0 gene_id "W7K_04000"; transcript_id "KOF00535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00535"; +contig40 ena start_codon 2281 2283 . + 0 gene_id "W7K_04000"; transcript_id "KOF00535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 2557 2559 . + 0 gene_id "W7K_04000"; transcript_id "KOF00535"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 2671 4266 . - . gene_id "W7K_04005"; gene_name "emrB"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 2671 4266 . - . gene_id "W7K_04005"; transcript_id "KOF00536"; gene_name "emrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "emrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 2671 4266 . - . gene_id "W7K_04005"; transcript_id "KOF00536"; exon_number "1"; gene_name "emrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "emrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00536-1"; +contig40 ena CDS 2674 4266 . - 0 gene_id "W7K_04005"; transcript_id "KOF00536"; exon_number "1"; gene_name "emrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "emrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00536"; +contig40 ena start_codon 4264 4266 . - 0 gene_id "W7K_04005"; transcript_id "KOF00536"; exon_number "1"; gene_name "emrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "emrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 2671 2673 . - 0 gene_id "W7K_04005"; transcript_id "KOF00536"; exon_number "1"; gene_name "emrB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "emrB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 4274 5455 . - . gene_id "W7K_04010"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 4274 5455 . - . gene_id "W7K_04010"; transcript_id "KOF00537"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 4274 5455 . - . gene_id "W7K_04010"; transcript_id "KOF00537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00537-1"; +contig40 ena CDS 4277 5455 . - 0 gene_id "W7K_04010"; transcript_id "KOF00537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00537"; +contig40 ena start_codon 5453 5455 . - 0 gene_id "W7K_04010"; transcript_id "KOF00537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 4274 4276 . - 0 gene_id "W7K_04010"; transcript_id "KOF00537"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 5467 6960 . - . gene_id "W7K_04015"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 5467 6960 . - . gene_id "W7K_04015"; transcript_id "KOF00538"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 5467 6960 . - . gene_id "W7K_04015"; transcript_id "KOF00538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00538-1"; +contig40 ena CDS 5470 6960 . - 0 gene_id "W7K_04015"; transcript_id "KOF00538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00538"; +contig40 ena start_codon 6958 6960 . - 0 gene_id "W7K_04015"; transcript_id "KOF00538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 5467 5469 . - 0 gene_id "W7K_04015"; transcript_id "KOF00538"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 6957 7400 . - . gene_id "W7K_04020"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 6957 7400 . - . gene_id "W7K_04020"; transcript_id "KOF00539"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 6957 7400 . - . gene_id "W7K_04020"; transcript_id "KOF00539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00539-1"; +contig40 ena CDS 6960 7400 . - 0 gene_id "W7K_04020"; transcript_id "KOF00539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00539"; +contig40 ena start_codon 7398 7400 . - 0 gene_id "W7K_04020"; transcript_id "KOF00539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 6957 6959 . - 0 gene_id "W7K_04020"; transcript_id "KOF00539"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 7573 8454 . + . gene_id "W7K_04025"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 7573 8454 . + . gene_id "W7K_04025"; transcript_id "KOF00540"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 7573 8454 . + . gene_id "W7K_04025"; transcript_id "KOF00540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00540-1"; +contig40 ena CDS 7573 8451 . + 0 gene_id "W7K_04025"; transcript_id "KOF00540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00540"; +contig40 ena start_codon 7573 7575 . + 0 gene_id "W7K_04025"; transcript_id "KOF00540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 8452 8454 . + 0 gene_id "W7K_04025"; transcript_id "KOF00540"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 8514 10757 . + . gene_id "W7K_04030"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 8514 10757 . + . gene_id "W7K_04030"; transcript_id "KOF00541"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 8514 10757 . + . gene_id "W7K_04030"; transcript_id "KOF00541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00541-1"; +contig40 ena CDS 8514 10754 . + 0 gene_id "W7K_04030"; transcript_id "KOF00541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00541"; +contig40 ena start_codon 8514 8516 . + 0 gene_id "W7K_04030"; transcript_id "KOF00541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 10755 10757 . + 0 gene_id "W7K_04030"; transcript_id "KOF00541"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 11082 11570 . - . gene_id "W7K_04035"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 11082 11570 . - . gene_id "W7K_04035"; transcript_id "KOF00542"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 11082 11570 . - . gene_id "W7K_04035"; transcript_id "KOF00542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00542-1"; +contig40 ena CDS 11085 11570 . - 0 gene_id "W7K_04035"; transcript_id "KOF00542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00542"; +contig40 ena start_codon 11568 11570 . - 0 gene_id "W7K_04035"; transcript_id "KOF00542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 11082 11084 . - 0 gene_id "W7K_04035"; transcript_id "KOF00542"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 11694 14021 . + . gene_id "W7K_04040"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 11694 14021 . + . gene_id "W7K_04040"; transcript_id "KOF00543"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 11694 14021 . + . gene_id "W7K_04040"; transcript_id "KOF00543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00543-1"; +contig40 ena CDS 11694 14018 . + 0 gene_id "W7K_04040"; transcript_id "KOF00543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00543"; +contig40 ena start_codon 11694 11696 . + 0 gene_id "W7K_04040"; transcript_id "KOF00543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 14019 14021 . + 0 gene_id "W7K_04040"; transcript_id "KOF00543"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 14157 15545 . - . gene_id "W7K_04045"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 14157 15545 . - . gene_id "W7K_04045"; transcript_id "KOF00544"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 14157 15545 . - . gene_id "W7K_04045"; transcript_id "KOF00544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00544-1"; +contig40 ena CDS 14160 15545 . - 0 gene_id "W7K_04045"; transcript_id "KOF00544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00544"; +contig40 ena start_codon 15543 15545 . - 0 gene_id "W7K_04045"; transcript_id "KOF00544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 14157 14159 . - 0 gene_id "W7K_04045"; transcript_id "KOF00544"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 15669 17360 . - . gene_id "W7K_04050"; gene_name "asnB"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 15669 17360 . - . gene_id "W7K_04050"; transcript_id "KOF00545"; gene_name "asnB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "asnB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 15669 17360 . - . gene_id "W7K_04050"; transcript_id "KOF00545"; exon_number "1"; gene_name "asnB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "asnB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00545-1"; +contig40 ena CDS 15672 17360 . - 0 gene_id "W7K_04050"; transcript_id "KOF00545"; exon_number "1"; gene_name "asnB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "asnB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00545"; +contig40 ena start_codon 17358 17360 . - 0 gene_id "W7K_04050"; transcript_id "KOF00545"; exon_number "1"; gene_name "asnB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "asnB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 15669 15671 . - 0 gene_id "W7K_04050"; transcript_id "KOF00545"; exon_number "1"; gene_name "asnB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "asnB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena gene 17699 18577 . + . gene_id "W7K_04055"; gene_source "ena"; gene_biotype "protein_coding"; +contig40 ena transcript 17699 18577 . + . gene_id "W7K_04055"; transcript_id "KOF00546"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena exon 17699 18577 . + . gene_id "W7K_04055"; transcript_id "KOF00546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00546-1"; +contig40 ena CDS 17699 18574 . + 0 gene_id "W7K_04055"; transcript_id "KOF00546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00546"; +contig40 ena start_codon 17699 17701 . + 0 gene_id "W7K_04055"; transcript_id "KOF00546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig40 ena stop_codon 18575 18577 . + 0 gene_id "W7K_04055"; transcript_id "KOF00546"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 1 679 . - . gene_id "W7K_21270"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 1 679 . - . gene_id "W7K_21270"; transcript_id "KOE97165"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 1 679 . - . gene_id "W7K_21270"; transcript_id "KOE97165"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97165-1"; +contig01 ena CDS 1 679 . - 0 gene_id "W7K_21270"; transcript_id "KOE97165"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97165"; +contig01 ena start_codon 677 679 . - 0 gene_id "W7K_21270"; transcript_id "KOE97165"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 732 2873 . - . gene_id "W7K_21275"; gene_name "fusA"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 732 2873 . - . gene_id "W7K_21275"; transcript_id "KOE97166"; gene_name "fusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 732 2873 . - . gene_id "W7K_21275"; transcript_id "KOE97166"; exon_number "1"; gene_name "fusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97166-1"; +contig01 ena CDS 735 2873 . - 0 gene_id "W7K_21275"; transcript_id "KOE97166"; exon_number "1"; gene_name "fusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97166"; +contig01 ena start_codon 2871 2873 . - 0 gene_id "W7K_21275"; transcript_id "KOE97166"; exon_number "1"; gene_name "fusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 732 734 . - 0 gene_id "W7K_21275"; transcript_id "KOE97166"; exon_number "1"; gene_name "fusA"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "fusA-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 3015 3488 . - . gene_id "W7K_21280"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 3015 3488 . - . gene_id "W7K_21280"; transcript_id "KOE97167"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 3015 3488 . - . gene_id "W7K_21280"; transcript_id "KOE97167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97167-1"; +contig01 ena CDS 3018 3488 . - 0 gene_id "W7K_21280"; transcript_id "KOE97167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97167"; +contig01 ena start_codon 3486 3488 . - 0 gene_id "W7K_21280"; transcript_id "KOE97167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 3015 3017 . - 0 gene_id "W7K_21280"; transcript_id "KOE97167"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 3501 3875 . - . gene_id "W7K_21285"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 3501 3875 . - . gene_id "W7K_21285"; transcript_id "KOE97168"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 3501 3875 . - . gene_id "W7K_21285"; transcript_id "KOE97168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97168-1"; +contig01 ena CDS 3504 3875 . - 0 gene_id "W7K_21285"; transcript_id "KOE97168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97168"; +contig01 ena start_codon 3873 3875 . - 0 gene_id "W7K_21285"; transcript_id "KOE97168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 3501 3503 . - 0 gene_id "W7K_21285"; transcript_id "KOE97168"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 4159 8382 . - . gene_id "W7K_21290"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 4159 8382 . - . gene_id "W7K_21290"; transcript_id "KOE97169"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 4159 8382 . - . gene_id "W7K_21290"; transcript_id "KOE97169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97169-1"; +contig01 ena CDS 4162 8382 . - 0 gene_id "W7K_21290"; transcript_id "KOE97169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97169"; +contig01 ena start_codon 8380 8382 . - 0 gene_id "W7K_21290"; transcript_id "KOE97169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 4159 4161 . - 0 gene_id "W7K_21290"; transcript_id "KOE97169"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 8470 12624 . - . gene_id "W7K_21295"; gene_name "rpoB"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 8470 12624 . - . gene_id "W7K_21295"; transcript_id "KOE97170"; gene_name "rpoB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpoB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 8470 12624 . - . gene_id "W7K_21295"; transcript_id "KOE97170"; exon_number "1"; gene_name "rpoB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpoB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97170-1"; +contig01 ena CDS 8473 12624 . - 0 gene_id "W7K_21295"; transcript_id "KOE97170"; exon_number "1"; gene_name "rpoB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpoB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97170"; +contig01 ena start_codon 12622 12624 . - 0 gene_id "W7K_21295"; transcript_id "KOE97170"; exon_number "1"; gene_name "rpoB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpoB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 8470 8472 . - 0 gene_id "W7K_21295"; transcript_id "KOE97170"; exon_number "1"; gene_name "rpoB"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rpoB-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 12954 13322 . - . gene_id "W7K_21300"; gene_name "rplL"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 12954 13322 . - . gene_id "W7K_21300"; transcript_id "KOE97171"; gene_name "rplL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 12954 13322 . - . gene_id "W7K_21300"; transcript_id "KOE97171"; exon_number "1"; gene_name "rplL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97171-1"; +contig01 ena CDS 12957 13322 . - 0 gene_id "W7K_21300"; transcript_id "KOE97171"; exon_number "1"; gene_name "rplL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97171"; +contig01 ena start_codon 13320 13322 . - 0 gene_id "W7K_21300"; transcript_id "KOE97171"; exon_number "1"; gene_name "rplL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 12954 12956 . - 0 gene_id "W7K_21300"; transcript_id "KOE97171"; exon_number "1"; gene_name "rplL"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "rplL-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 13386 13922 . - . gene_id "W7K_21305"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 13386 13922 . - . gene_id "W7K_21305"; transcript_id "KOE97172"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 13386 13922 . - . gene_id "W7K_21305"; transcript_id "KOE97172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97172-1"; +contig01 ena CDS 13389 13922 . - 0 gene_id "W7K_21305"; transcript_id "KOE97172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97172"; +contig01 ena start_codon 13920 13922 . - 0 gene_id "W7K_21305"; transcript_id "KOE97172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 13386 13388 . - 0 gene_id "W7K_21305"; transcript_id "KOE97172"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 14309 15007 . - . gene_id "W7K_21310"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 14309 15007 . - . gene_id "W7K_21310"; transcript_id "KOE97173"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 14309 15007 . - . gene_id "W7K_21310"; transcript_id "KOE97173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97173-1"; +contig01 ena CDS 14312 15007 . - 0 gene_id "W7K_21310"; transcript_id "KOE97173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97173"; +contig01 ena start_codon 15005 15007 . - 0 gene_id "W7K_21310"; transcript_id "KOE97173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 14309 14311 . - 0 gene_id "W7K_21310"; transcript_id "KOE97173"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 15012 15440 . - . gene_id "W7K_21315"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 15012 15440 . - . gene_id "W7K_21315"; transcript_id "KOE97174"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 15012 15440 . - . gene_id "W7K_21315"; transcript_id "KOE97174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97174-1"; +contig01 ena CDS 15015 15440 . - 0 gene_id "W7K_21315"; transcript_id "KOE97174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97174"; +contig01 ena start_codon 15438 15440 . - 0 gene_id "W7K_21315"; transcript_id "KOE97174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 15012 15014 . - 0 gene_id "W7K_21315"; transcript_id "KOE97174"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 15698 16258 . - . gene_id "W7K_21320"; gene_name "nusG"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 15698 16258 . - . gene_id "W7K_21320"; transcript_id "KOE97175"; gene_name "nusG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 15698 16258 . - . gene_id "W7K_21320"; transcript_id "KOE97175"; exon_number "1"; gene_name "nusG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97175-1"; +contig01 ena CDS 15701 16258 . - 0 gene_id "W7K_21320"; transcript_id "KOE97175"; exon_number "1"; gene_name "nusG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97175"; +contig01 ena start_codon 16256 16258 . - 0 gene_id "W7K_21320"; transcript_id "KOE97175"; exon_number "1"; gene_name "nusG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 15698 15700 . - 0 gene_id "W7K_21320"; transcript_id "KOE97175"; exon_number "1"; gene_name "nusG"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "nusG-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 16269 16682 . - . gene_id "W7K_21325"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 16269 16682 . - . gene_id "W7K_21325"; transcript_id "KOE97176"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 16269 16682 . - . gene_id "W7K_21325"; transcript_id "KOE97176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97176-1"; +contig01 ena CDS 16272 16682 . - 0 gene_id "W7K_21325"; transcript_id "KOE97176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97176"; +contig01 ena start_codon 16680 16682 . - 0 gene_id "W7K_21325"; transcript_id "KOE97176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena stop_codon 16269 16271 . - 0 gene_id "W7K_21325"; transcript_id "KOE97176"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena gene 16732 16807 . - . gene_id "W7K_21330"; gene_source "ena"; gene_biotype "tRNA"; +contig01 ena transcript 16732 16807 . - . gene_id "W7K_21330"; transcript_id "EBT00051077603"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_21330"; transcript_source "ena"; transcript_biotype "tRNA"; +contig01 ena exon 16732 16807 . - . gene_id "W7K_21330"; transcript_id "EBT00051077603"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_21330"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_21330-1"; +contig01 ena gene 16911 17734 . - . gene_id "W7K_21335"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; +contig01 ena transcript 16911 17734 . - . gene_id "W7K_21335"; transcript_id "KOE97177"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena exon 16911 17734 . - . gene_id "W7K_21335"; transcript_id "KOE97177"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97177-1"; +contig01 ena CDS 16914 17732 . - 0 gene_id "W7K_21335"; transcript_id "KOE97177"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97177"; +contig01 ena stop_codon 16911 16913 . - 0 gene_id "W7K_21335"; transcript_id "KOE97177"; exon_number "1"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig01 ena five_prime_utr 17733 17734 . - . gene_id "W7K_21335"; transcript_id "KOE97177"; gene_name "tuf"; gene_source "ena"; gene_biotype "protein_coding"; transcript_name "tuf-1"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig36 ena gene 759 962 . + . gene_id "W7K_04975"; gene_source "ena"; gene_biotype "protein_coding"; +contig36 ena transcript 759 962 . + . gene_id "W7K_04975"; transcript_id "KOF00359"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig36 ena exon 759 962 . + . gene_id "W7K_04975"; transcript_id "KOF00359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00359-1"; +contig36 ena CDS 759 959 . + 0 gene_id "W7K_04975"; transcript_id "KOF00359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00359"; +contig36 ena start_codon 759 761 . + 0 gene_id "W7K_04975"; transcript_id "KOF00359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig36 ena stop_codon 960 962 . + 0 gene_id "W7K_04975"; transcript_id "KOF00359"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig36 ena gene 1070 1297 . + . gene_id "W7K_04980"; gene_source "ena"; gene_biotype "protein_coding"; +contig36 ena transcript 1070 1297 . + . gene_id "W7K_04980"; transcript_id "KOF00360"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig36 ena exon 1070 1297 . + . gene_id "W7K_04980"; transcript_id "KOF00360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF00360-1"; +contig36 ena CDS 1070 1294 . + 0 gene_id "W7K_04980"; transcript_id "KOF00360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF00360"; +contig36 ena start_codon 1070 1072 . + 0 gene_id "W7K_04980"; transcript_id "KOF00360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig36 ena stop_codon 1295 1297 . + 0 gene_id "W7K_04980"; transcript_id "KOF00360"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig06 ena gene 17 92 . + . gene_id "W7K_20375"; gene_source "ena"; gene_biotype "tRNA"; +contig06 ena transcript 17 92 . + . gene_id "W7K_20375"; transcript_id "EBT00051077607"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_20375"; transcript_source "ena"; transcript_biotype "tRNA"; +contig06 ena exon 17 92 . + . gene_id "W7K_20375"; transcript_id "EBT00051077607"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_20375"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_20375-1"; +contig06 ena gene 122 198 . + . gene_id "W7K_20380"; gene_source "ena"; gene_biotype "tRNA"; +contig06 ena transcript 122 198 . + . gene_id "W7K_20380"; transcript_id "EBT00051077606"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_20380"; transcript_source "ena"; transcript_biotype "tRNA"; +contig06 ena exon 122 198 . + . gene_id "W7K_20380"; transcript_id "EBT00051077606"; exon_number "1"; gene_source "ena"; gene_biotype "tRNA"; transcript_name "W7K_20380"; transcript_source "ena"; transcript_biotype "tRNA"; exon_id "W7K_20380-1"; +contig06 ena gene 415 2344 . + . gene_id "W7K_20385"; gene_source "ena"; gene_biotype "rRNA"; +contig06 ena transcript 415 2344 . + . gene_id "W7K_20385"; transcript_id "EBT00051077605"; gene_source "ena"; gene_biotype "rRNA"; transcript_name "W7K_20385"; transcript_source "ena"; transcript_biotype "rRNA"; +contig06 ena exon 415 2344 . + . gene_id "W7K_20385"; transcript_id "EBT00051077605"; exon_number "1"; gene_source "ena"; gene_biotype "rRNA"; transcript_name "W7K_20385"; transcript_source "ena"; transcript_biotype "rRNA"; exon_id "W7K_20385-1"; +contig46 ena gene 1 499 . - . gene_id "W7K_00785"; gene_source "ena"; gene_biotype "protein_coding"; +contig46 ena transcript 1 499 . - . gene_id "W7K_00785"; transcript_id "KOF01171"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig46 ena exon 1 499 . - . gene_id "W7K_00785"; transcript_id "KOF01171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01171-1"; +contig46 ena CDS 1 499 . - 0 gene_id "W7K_00785"; transcript_id "KOF01171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01171"; +contig46 ena start_codon 497 499 . - 0 gene_id "W7K_00785"; transcript_id "KOF01171"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig46 ena gene 486 2018 . - . gene_id "W7K_00790"; gene_source "ena"; gene_biotype "protein_coding"; +contig46 ena transcript 486 2018 . - . gene_id "W7K_00790"; transcript_id "KOF01170"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig46 ena exon 486 2018 . - . gene_id "W7K_00790"; transcript_id "KOF01170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOF01170-1"; +contig46 ena CDS 489 2018 . - 0 gene_id "W7K_00790"; transcript_id "KOF01170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOF01170"; +contig46 ena start_codon 2016 2018 . - 0 gene_id "W7K_00790"; transcript_id "KOF01170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig46 ena stop_codon 486 488 . - 0 gene_id "W7K_00790"; transcript_id "KOF01170"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig19 ena gene 10 1828 . + . gene_id "W7K_15300"; gene_source "ena"; gene_biotype "protein_coding"; +contig19 ena transcript 10 1828 . + . gene_id "W7K_15300"; transcript_id "KOE98338"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig19 ena exon 10 1828 . + . gene_id "W7K_15300"; transcript_id "KOE98338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98338-1"; +contig19 ena CDS 10 1828 . + 0 gene_id "W7K_15300"; transcript_id "KOE98338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98338"; +contig19 ena start_codon 10 12 . + 0 gene_id "W7K_15300"; transcript_id "KOE98338"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig13 ena gene 1 1093 . - . gene_id "W7K_16625"; gene_source "ena"; gene_biotype "protein_coding"; +contig13 ena transcript 1 1093 . - . gene_id "W7K_16625"; transcript_id "KOE98077"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig13 ena exon 1 1093 . - . gene_id "W7K_16625"; transcript_id "KOE98077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98077-1"; +contig13 ena CDS 1 1093 . - 0 gene_id "W7K_16625"; transcript_id "KOE98077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98077"; +contig13 ena start_codon 1091 1093 . - 0 gene_id "W7K_16625"; transcript_id "KOE98077"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig04 ena gene 102 1016 . - . gene_id "W7K_20390"; gene_source "ena"; gene_biotype "protein_coding"; +contig04 ena transcript 102 1016 . - . gene_id "W7K_20390"; transcript_id "KOE97348"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig04 ena exon 102 1016 . - . gene_id "W7K_20390"; transcript_id "KOE97348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE97348-1"; +contig04 ena CDS 105 1016 . - 0 gene_id "W7K_20390"; transcript_id "KOE97348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE97348"; +contig04 ena start_codon 1014 1016 . - 0 gene_id "W7K_20390"; transcript_id "KOE97348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig04 ena stop_codon 102 104 . - 0 gene_id "W7K_20390"; transcript_id "KOE97348"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig18 ena gene 1 448 . + . gene_id "W7K_15305"; gene_source "ena"; gene_biotype "protein_coding"; +contig18 ena transcript 1 448 . + . gene_id "W7K_15305"; transcript_id "KOE98337"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig18 ena exon 1 448 . + . gene_id "W7K_15305"; transcript_id "KOE98337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; exon_id "KOE98337-1"; +contig18 ena CDS 2 445 . + 0 gene_id "W7K_15305"; transcript_id "KOE98337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; protein_id "KOE98337"; +contig18 ena stop_codon 446 448 . + 0 gene_id "W7K_15305"; transcript_id "KOE98337"; exon_number "1"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; +contig18 ena five_prime_utr 1 1 . + . gene_id "W7K_15305"; transcript_id "KOE98337"; gene_source "ena"; gene_biotype "protein_coding"; transcript_source "ena"; transcript_biotype "protein_coding"; diff -r 000000000000 -r ed0d0eda36a9 test-data/test_output.bed --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test_output.bed Wed Sep 29 13:50:53 2021 +0000 @@ -0,0 +1,4225 @@ +contig01 16731 16807 EBT00051077603 0 - 16731 16731 0 1 76, 0, +contig02 107055 107145 EBT00051077604 0 + 107055 107055 0 1 90, 0, +contig06 414 2344 EBT00051077605 0 + 414 414 0 1 1930, 0, +contig06 121 198 EBT00051077606 0 + 121 121 0 1 77, 0, +contig06 16 92 EBT00051077607 0 + 16 16 0 1 76, 0, +contig08 130100 130176 EBT00051077608 0 + 130100 130100 0 1 76, 0, +contig09 30084 30158 EBT00051077609 0 + 30084 30084 0 1 74, 0, +contig10 50479 50555 EBT00051077610 0 + 50479 50479 0 1 76, 0, +contig11 622 708 EBT00051077611 0 - 622 622 0 1 86, 0, +contig11 10828 10905 EBT00051077612 0 - 10828 10828 0 1 77, 0, +contig11 399 475 EBT00051077613 0 - 399 399 0 1 76, 0, +contig11 524 598 EBT00051077614 0 - 524 524 0 1 74, 0, +contig12 25566 25918 EBT00051077615 0 - 25566 25566 0 1 352, 0, +contig15 146103 146177 EBT00051077616 0 + 146103 146103 0 1 74, 0, +contig15 54213 54290 EBT00051077617 0 + 54213 54213 0 1 77, 0, +contig21 10868 10945 EBT00051077618 0 + 10868 10868 0 1 77, 0, +contig21 11000 11075 EBT00051077619 0 + 11000 11000 0 1 75, 0, +contig23 19033 19110 EBT00051077620 0 + 19033 19033 0 1 77, 0, +contig24 93702 93778 EBT00051077621 0 - 93702 93702 0 1 76, 0, +contig25 291863 291948 EBT00051077622 0 - 291863 291863 0 1 85, 0, +contig25 235529 235604 EBT00051077623 0 - 235529 235529 0 1 75, 0, +contig25 284659 284736 EBT00051077624 0 - 284659 284659 0 1 77, 0, +contig25 284823 284900 EBT00051077625 0 - 284823 284823 0 1 77, 0, +contig25 295985 296062 EBT00051077626 0 - 295985 295985 0 1 77, 0, +contig25 284476 284553 EBT00051077627 0 - 284476 284476 0 1 77, 0, +contig25 257542 257635 EBT00051077628 0 + 257542 257542 0 1 93, 0, +contig25 277301 277392 EBT00051077629 0 - 277301 277301 0 1 91, 0, +contig25 284983 285060 EBT00051077630 0 - 284983 284983 0 1 77, 0, +contig25 293063 293139 EBT00051077631 0 - 293063 293063 0 1 76, 0, +contig25 285086 285161 EBT00051077632 0 - 285086 285086 0 1 75, 0, +contig25 293218 293295 EBT00051077633 0 - 293218 293218 0 1 77, 0, +contig25 292790 292866 EBT00051077634 0 - 292790 292790 0 1 76, 0, +contig25 295869 295946 EBT00051077635 0 - 295869 295869 0 1 77, 0, +contig27 9682 9777 EBT00051077636 0 - 9682 9682 0 1 95, 0, +contig29 115982 116097 EBT00051077637 0 - 115982 115982 0 1 115, 0, +contig30 12176 12269 EBT00051077638 0 + 12176 12176 0 1 93, 0, +contig30 50147 50224 EBT00051077639 0 - 50147 50147 0 1 77, 0, +contig31 9843 9918 EBT00051077640 0 - 9843 9843 0 1 75, 0, +contig33 218534 218620 EBT00051077641 0 - 218534 218534 0 1 86, 0, +contig33 127096 127173 EBT00051077642 0 + 127096 127096 0 1 77, 0, +contig34 428 504 EBT00051077643 0 - 428 428 0 1 76, 0, +contig34 558 634 EBT00051077644 0 - 558 558 0 1 76, 0, +contig34 45 121 EBT00051077645 0 - 45 45 0 1 76, 0, +contig34 168 244 EBT00051077646 0 - 168 168 0 1 76, 0, +contig38 44064 44141 EBT00051077647 0 - 44064 44064 0 1 77, 0, +contig38 41144 41219 EBT00051077648 0 - 41144 41144 0 1 75, 0, +contig38 4601 4688 EBT00051077649 0 + 4601 4601 0 1 87, 0, +contig38 17486 17560 EBT00051077650 0 - 17486 17486 0 1 74, 0, +contig38 40971 41046 EBT00051077651 0 - 40971 40971 0 1 75, 0, +contig38 25193 25269 EBT00051077652 0 - 25193 25193 0 1 76, 0, +contig38 23756 23832 EBT00051077653 0 - 23756 23756 0 1 76, 0, +contig38 17626 17702 EBT00051077654 0 - 17626 17626 0 1 76, 0, +contig38 17844 17920 EBT00051077655 0 - 17844 17844 0 1 76, 0, +contig39 65538 65623 EBT00051077656 0 + 65538 65538 0 1 85, 0, +contig40 1872 1957 EBT00051077657 0 + 1872 1872 0 1 85, 0, +contig42 134130 134207 EBT00051077658 0 - 134130 134130 0 1 77, 0, +contig42 16915 16992 EBT00051077659 0 + 16915 16915 0 1 77, 0, +contig42 68798 68874 EBT00051077660 0 - 68798 68798 0 1 76, 0, +contig42 16756 16833 EBT00051077661 0 + 16756 16756 0 1 77, 0, +contig42 1516 1601 EBT00051077662 0 + 1516 1516 0 1 85, 0, +contig42 38709 38786 EBT00051077663 0 + 38709 38709 0 1 77, 0, +contig42 54531 54607 EBT00051077664 0 - 54531 54531 0 1 76, 0, +contig42 54382 54458 EBT00051077665 0 - 54382 54382 0 1 76, 0, +contig42 133913 133990 EBT00051077666 0 - 133913 133913 0 1 77, 0, +contig44 28234 28310 EBT00051077667 0 - 28234 28234 0 1 76, 0, +contig45 165410 165609 EBT00051077668 0 + 165410 165410 0 1 199, 0, +contig48 119871 119946 EBT00051077669 0 + 119871 119871 0 1 75, 0, +contig48 23445 23522 EBT00051077670 0 + 23445 23445 0 1 77, 0, +contig48 68083 68448 EBT00051077671 0 + 68083 68083 0 1 365, 0, +contig01 0 679 KOE97165 0 - 0 679 0 1 679, 0, +contig01 731 2873 KOE97166 0 - 731 2873 0 1 2142, 0, +contig01 3014 3488 KOE97167 0 - 3014 3488 0 1 474, 0, +contig01 3500 3875 KOE97168 0 - 3500 3875 0 1 375, 0, +contig01 4158 8382 KOE97169 0 - 4158 8382 0 1 4224, 0, +contig01 8469 12624 KOE97170 0 - 8469 12624 0 1 4155, 0, +contig01 12953 13322 KOE97171 0 - 12953 13322 0 1 369, 0, +contig01 13385 13922 KOE97172 0 - 13385 13922 0 1 537, 0, +contig01 14308 15007 KOE97173 0 - 14308 15007 0 1 699, 0, +contig01 15011 15440 KOE97174 0 - 15011 15440 0 1 429, 0, +contig01 15697 16258 KOE97175 0 - 15697 16258 0 1 561, 0, +contig01 16268 16682 KOE97176 0 - 16268 16682 0 1 414, 0, +contig01 16910 17734 KOE97177 0 - 16910 17732 0 1 824, 0, +contig02 175 1543 KOE97178 0 - 175 1543 0 1 1368, 0, +contig02 1835 3260 KOE97179 0 + 1835 3260 0 1 1425, 0, +contig02 3339 3765 KOE97180 0 - 3339 3765 0 1 426, 0, +contig02 3871 4477 KOE97181 0 - 3871 4477 0 1 606, 0, +contig02 4507 5395 KOE97182 0 - 4507 5395 0 1 888, 0, +contig02 5420 6449 KOE97183 0 - 5420 6449 0 1 1029, 0, +contig02 6445 7321 KOE97184 0 - 6445 7321 0 1 876, 0, +contig02 7320 7680 KOE97185 0 - 7320 7680 0 1 360, 0, +contig02 8292 8880 KOE97186 0 + 8292 8880 0 1 588, 0, +contig02 8976 9954 KOE97187 0 + 8976 9954 0 1 978, 0, +contig02 9977 11327 KOE97188 0 + 9977 11327 0 1 1350, 0, +contig02 11319 11559 KOE97189 0 + 11319 11559 0 1 240, 0, +contig02 11569 12256 KOE97190 0 + 11569 12256 0 1 687, 0, +contig02 12304 14377 KOE97191 0 + 12304 14377 0 1 2073, 0, +contig02 14391 15576 KOE97192 0 - 14391 15576 0 1 1185, 0, +contig02 15663 18348 KOE97193 0 - 15663 18348 0 1 2685, 0, +contig02 18344 19439 KOE97194 0 - 18344 19439 0 1 1095, 0, +contig02 19451 20381 KOE97195 0 - 19451 20381 0 1 930, 0, +contig02 20534 21683 KOE97196 0 + 20534 21683 0 1 1149, 0, +contig02 21816 22104 KOE97197 0 + 21816 22104 0 1 288, 0, +contig02 22287 25461 KOE97198 0 - 22287 25461 0 1 3174, 0, +contig02 25476 26745 KOE97199 0 - 25476 26745 0 1 1269, 0, +contig02 26744 27401 KOE97200 0 - 26744 27401 0 1 657, 0, +contig02 27651 32628 KOE97201 0 + 27651 32628 0 1 4977, 0, +contig02 32910 33684 KOE97202 0 + 32910 33684 0 1 774, 0, +contig02 33732 34677 KOE97203 0 + 33732 34677 0 1 945, 0, +contig02 34812 35364 KOE97204 0 - 34812 35364 0 1 552, 0, +contig02 35406 36387 KOE97205 0 - 35406 36387 0 1 981, 0, +contig02 36386 37073 KOE97206 0 - 36386 37073 0 1 687, 0, +contig02 37069 38509 KOE97207 0 - 37069 38509 0 1 1440, 0, +contig02 38508 39876 KOE97208 0 - 38508 39876 0 1 1368, 0, +contig02 39908 41183 KOE97209 0 - 39908 41183 0 1 1275, 0, +contig02 41862 42525 KOE97210 0 - 41862 42525 0 1 663, 0, +contig02 42597 43236 KOE97211 0 - 42597 43236 0 1 639, 0, +contig02 43243 43558 KOE97212 0 - 43243 43558 0 1 315, 0, +contig02 43565 43865 KOE97213 0 - 43565 43865 0 1 300, 0, +contig02 43894 45289 KOE97214 0 - 43894 45289 0 1 1395, 0, +contig02 45417 45756 KOE97215 0 + 45417 45756 0 1 339, 0, +contig02 45850 46390 KOE97216 0 + 45850 46390 0 1 540, 0, +contig02 46618 47056 KOE97217 0 + 46618 47056 0 1 438, 0, +contig02 47067 47298 KOE97218 0 + 47067 47298 0 1 231, 0, +contig02 47403 47853 KOE97219 0 + 47403 47853 0 1 450, 0, +contig02 48861 52365 KOE97220 0 + 48861 52365 0 1 3504, 0, +contig02 52411 53149 KOE97221 0 + 52411 53149 0 1 738, 0, +contig02 53267 54392 KOE97222 0 - 53267 54392 0 1 1125, 0, +contig02 54682 57148 KOE97223 0 + 54682 57148 0 1 2466, 0, +contig02 57197 57683 KOE97224 0 + 57197 57683 0 1 486, 0, +contig02 58778 59507 KOE97225 0 + 58778 59507 0 1 729, 0, +contig02 59554 60619 KOE97226 0 + 59554 60619 0 1 1065, 0, +contig02 60880 63595 KOE97227 0 + 60880 63595 0 1 2715, 0, +contig02 63726 66255 KOE97228 0 + 63726 66255 0 1 2529, 0, +contig02 67104 67506 KOE97229 0 - 67104 67506 0 1 402, 0, +contig02 67483 68260 KOE97230 0 - 67483 68260 0 1 777, 0, +contig02 68498 68828 KOE97231 0 + 68498 68828 0 1 330, 0, +contig02 68995 71458 KOE97232 0 + 68995 71458 0 1 2463, 0, +contig02 71678 71999 KOE97233 0 + 71678 71999 0 1 321, 0, +contig02 72009 72993 KOE97234 0 - 72009 72993 0 1 984, 0, +contig02 73131 74097 KOE97235 0 + 73131 74097 0 1 966, 0, +contig02 74146 74935 KOE97236 0 + 74146 74935 0 1 789, 0, +contig02 74909 75794 KOE97237 0 - 74909 75794 0 1 885, 0, +contig02 75899 77033 KOE97238 0 + 75899 77033 0 1 1134, 0, +contig02 77039 77585 KOE97239 0 - 77039 77585 0 1 546, 0, +contig02 77654 78230 KOE97240 0 + 77654 78230 0 1 576, 0, +contig02 78282 78666 KOE97241 0 + 78282 78666 0 1 384, 0, +contig02 79650 80496 KOE97242 0 + 79650 80496 0 1 846, 0, +contig02 80593 80776 KOE97243 0 + 80593 80776 0 1 183, 0, +contig02 81382 81901 KOE97244 0 + 81382 81901 0 1 519, 0, +contig02 81947 84059 KOE97245 0 - 81947 84059 0 1 2112, 0, +contig02 84256 85693 KOE97246 0 - 84256 85693 0 1 1437, 0, +contig02 85858 87526 KOE97247 0 - 85858 87526 0 1 1668, 0, +contig02 87522 88377 KOE97248 0 - 87522 88377 0 1 855, 0, +contig02 88373 89915 KOE97249 0 - 88373 89915 0 1 1542, 0, +contig02 89911 91135 KOE97250 0 - 89911 91135 0 1 1224, 0, +contig02 91202 92573 KOE97251 0 + 91202 92573 0 1 1371, 0, +contig02 92600 93329 KOE97252 0 + 92600 93329 0 1 729, 0, +contig02 93430 94441 KOE97253 0 - 93430 94441 0 1 1011, 0, +contig02 94678 95170 KOE97254 0 - 94678 95170 0 1 492, 0, +contig02 95251 95527 KOE97255 0 - 95251 95527 0 1 276, 0, +contig02 95652 96459 KOE97256 0 + 95652 96459 0 1 807, 0, +contig02 96711 97797 KOE97257 0 + 96711 97797 0 1 1086, 0, +contig02 97848 99042 KOE97258 0 + 97848 99042 0 1 1194, 0, +contig02 99118 100426 KOE97259 0 + 99118 100426 0 1 1308, 0, +contig02 100600 101173 KOE97260 0 - 100600 101173 0 1 573, 0, +contig02 101292 101931 KOE97261 0 - 101292 101931 0 1 639, 0, +contig02 102044 103325 KOE97262 0 + 102044 103325 0 1 1281, 0, +contig02 104071 104659 KOE97263 0 - 104071 104659 0 1 588, 0, +contig02 104786 105779 KOE97264 0 + 104786 105779 0 1 993, 0, +contig02 105860 106931 KOE97265 0 - 105860 106931 0 1 1071, 0, +contig02 107210 107426 KOE97266 0 - 107210 107426 0 1 216, 0, +contig02 107412 107727 KOE97267 0 - 107412 107727 0 1 315, 0, +contig02 107723 108308 KOE97268 0 - 107723 108308 0 1 585, 0, +contig02 108304 108991 KOE97269 0 - 108304 108991 0 1 687, 0, +contig02 108983 109796 KOE97270 0 - 108983 109796 0 1 813, 0, +contig02 109788 110358 KOE97271 0 - 109788 110358 0 1 570, 0, +contig02 110354 110564 KOE97272 0 - 110354 110564 0 1 210, 0, +contig02 110651 110894 KOE97273 0 - 110651 110894 0 1 243, 0, +contig02 110893 111223 KOE97274 0 - 110893 111223 0 1 330, 0, +contig02 111219 111507 KOE97275 0 - 111219 111507 0 1 288, 0, +contig02 111503 111716 KOE97276 0 - 111503 111716 0 1 213, 0, +contig02 111889 112315 KOE97277 0 + 111889 112315 0 1 426, 0, +contig02 112464 113028 KOE97278 0 + 112464 113028 0 1 564, 0, +contig02 113027 113393 KOE97279 0 + 113027 113393 0 1 366, 0, +contig02 113453 113642 KOE97280 0 + 113453 113642 0 1 189, 0, +contig02 114183 114894 KOE97281 0 + 114183 114894 0 1 711, 0, +contig02 115221 115887 KOE97282 0 + 115221 115887 0 1 666, 0, +contig02 115883 116210 KOE97283 0 + 115883 116210 0 1 327, 0, +contig02 116206 116422 KOE97284 0 + 116206 116422 0 1 216, 0, +contig02 121114 121894 KOE97285 0 + 121114 121894 0 1 780, 0, +contig02 41321 41843 KOE97286 0 - 41321 41843 0 1 522, 0, +contig02 57700 58636 KOE97287 0 + 57700 58636 0 1 936, 0, +contig02 78818 79598 KOE97288 0 + 78818 79598 0 1 780, 0, +contig02 119608 121102 KOE97289 0 + 119608 121102 0 1 1494, 0, +contig03 509 1499 KOE97290 0 + 509 1499 0 1 990, 0, +contig03 1513 2197 KOE97291 0 + 1513 2197 0 1 684, 0, +contig03 2246 3707 KOE97292 0 - 2246 3707 0 1 1461, 0, +contig03 3687 4971 KOE97293 0 - 3687 4971 0 1 1284, 0, +contig03 5029 6157 KOE97294 0 - 5029 6157 0 1 1128, 0, +contig03 6278 6644 KOE97295 0 + 6278 6644 0 1 366, 0, +contig03 7849 8086 KOE97296 0 + 7849 8086 0 1 237, 0, +contig03 8386 9757 KOE97297 0 + 8386 9757 0 1 1371, 0, +contig03 9880 11065 KOE97298 0 + 9880 11065 0 1 1185, 0, +contig03 11064 11859 KOE97299 0 + 11064 11859 0 1 795, 0, +contig03 11848 13204 KOE97300 0 + 11848 13204 0 1 1356, 0, +contig03 13203 16614 KOE97301 0 + 13203 16614 0 1 3411, 0, +contig03 16781 17132 KOE97302 0 + 16781 17132 0 1 351, 0, +contig03 17215 19129 KOE97303 0 - 17215 19129 0 1 1914, 0, +contig03 20289 20916 KOE97304 0 - 20289 20916 0 1 627, 0, +contig03 20919 21285 KOE97305 0 - 20919 21285 0 1 366, 0, +contig03 21289 22513 KOE97306 0 - 21289 22513 0 1 1224, 0, +contig03 22509 23616 KOE97307 0 - 22509 23616 0 1 1107, 0, +contig03 23612 25013 KOE97308 0 - 23612 25013 0 1 1401, 0, +contig03 25013 25757 KOE97309 0 - 25013 25757 0 1 744, 0, +contig03 25759 26008 KOE97310 0 - 25759 26008 0 1 249, 0, +contig03 26004 26763 KOE97311 0 - 26004 26763 0 1 759, 0, +contig03 26759 27743 KOE97312 0 - 26759 27743 0 1 984, 0, +contig03 28215 29157 KOE97313 0 - 28215 29157 0 1 942, 0, +contig03 29156 29903 KOE97314 0 - 29156 29903 0 1 747, 0, +contig03 30165 31221 KOE97315 0 + 30165 31221 0 1 1056, 0, +contig03 31235 32123 KOE97316 0 + 31235 32123 0 1 888, 0, +contig03 32119 32677 KOE97317 0 + 32119 32677 0 1 558, 0, +contig03 32673 33567 KOE97318 0 + 32673 33567 0 1 894, 0, +contig03 33697 35101 KOE97319 0 - 33697 35101 0 1 1404, 0, +contig03 35113 36460 KOE97320 0 - 35113 36460 0 1 1347, 0, +contig03 36557 39188 KOE97321 0 - 36557 39188 0 1 2631, 0, +contig03 39346 40078 KOE97322 0 + 39346 40078 0 1 732, 0, +contig03 40079 40712 KOE97323 0 + 40079 40712 0 1 633, 0, +contig03 40756 41344 KOE97324 0 + 40756 41344 0 1 588, 0, +contig03 41348 41990 KOE97325 0 - 41348 41990 0 1 642, 0, +contig03 41986 42913 KOE97326 0 - 41986 42913 0 1 927, 0, +contig03 42916 43744 KOE97327 0 - 42916 43744 0 1 828, 0, +contig03 43745 44867 KOE97328 0 - 43745 44867 0 1 1122, 0, +contig03 44959 46219 KOE97329 0 + 44959 46219 0 1 1260, 0, +contig03 46354 46738 KOE97330 0 - 46354 46738 0 1 384, 0, +contig03 46960 48664 KOE97331 0 - 46960 48664 0 1 1704, 0, +contig03 49385 50162 KOE97332 0 + 49385 50162 0 1 777, 0, +contig03 50158 50668 KOE97333 0 + 50158 50668 0 1 510, 0, +contig03 50664 51162 KOE97334 0 + 50664 51162 0 1 498, 0, +contig03 51266 52088 KOE97335 0 - 51266 52088 0 1 822, 0, +contig03 52264 55093 KOE97336 0 - 52264 55093 0 1 2829, 0, +contig03 55165 55591 KOE97337 0 - 55165 55591 0 1 426, 0, +contig03 55673 57152 KOE97338 0 - 55673 57152 0 1 1479, 0, +contig03 57256 58339 KOE97339 0 + 57256 58339 0 1 1083, 0, +contig03 58335 59442 KOE97340 0 + 58335 59442 0 1 1107, 0, +contig03 59532 60024 KOE97341 0 - 59532 60024 0 1 492, 0, +contig03 60080 61058 KOE97342 0 + 60080 61058 0 1 978, 0, +contig03 61158 61944 KOE97343 0 + 61158 61944 0 1 786, 0, +contig03 62064 64164 KOE97344 0 - 62064 64164 0 1 2100, 0, +contig03 6649 7525 KOE97345 0 + 6649 7525 0 1 876, 0, +contig03 19125 20235 KOE97346 0 - 19125 20235 0 1 1110, 0, +contig03 48930 49305 KOE97347 0 - 48930 49305 0 1 375, 0, +contig04 101 1016 KOE97348 0 - 101 1016 0 1 915, 0, +contig07 183 1977 KOE97349 0 - 183 1977 0 1 1794, 0, +contig07 2592 3567 KOE97350 0 + 2592 3567 0 1 975, 0, +contig07 3603 5340 KOE97351 0 + 3603 5340 0 1 1737, 0, +contig07 5323 5575 KOE97352 0 + 5323 5575 0 1 252, 0, +contig07 5671 6763 KOE97353 0 + 5671 6763 0 1 1092, 0, +contig07 6759 8346 KOE97354 0 + 6759 8346 0 1 1587, 0, +contig07 8356 9136 KOE97355 0 + 8356 9136 0 1 780, 0, +contig07 9196 10615 KOE97356 0 + 9196 10615 0 1 1419, 0, +contig07 10614 11193 KOE97357 0 + 10614 11193 0 1 579, 0, +contig07 11182 12244 KOE97358 0 + 11182 12244 0 1 1062, 0, +contig07 12317 13091 KOE97359 0 - 12317 13091 0 1 774, 0, +contig07 13209 14115 KOE97360 0 + 13209 14115 0 1 906, 0, +contig07 14197 17359 KOE97361 0 - 14197 17359 0 1 3162, 0, +contig07 17363 18494 KOE97362 0 - 17363 18494 0 1 1131, 0, +contig07 18613 19294 KOE97363 0 + 18613 19294 0 1 681, 0, +contig07 19430 20078 KOE97364 0 + 19430 20078 0 1 648, 0, +contig07 20094 21453 KOE97365 0 + 20094 21453 0 1 1359, 0, +contig07 21553 22774 KOE97366 0 - 21553 22774 0 1 1221, 0, +contig07 23003 24302 KOE97367 0 - 23003 24302 0 1 1299, 0, +contig07 24362 25280 KOE97368 0 + 24362 25280 0 1 918, 0, +contig07 25380 26712 KOE97369 0 - 25380 26712 0 1 1332, 0, +contig07 26692 27808 KOE97370 0 - 26692 27808 0 1 1116, 0, +contig07 27823 28021 KOE97371 0 - 27823 28021 0 1 198, 0, +contig07 28442 31787 KOE97372 0 + 28442 31787 0 1 3345, 0, +contig07 31783 32527 KOE97373 0 + 31783 32527 0 1 744, 0, +contig07 32945 35237 KOE97374 0 - 32945 35237 0 1 2292, 0, +contig07 35467 36811 KOE97375 0 - 35467 36811 0 1 1344, 0, +contig07 37141 38311 KOE97376 0 + 37141 38311 0 1 1170, 0, +contig07 38377 41026 KOE97377 0 + 38377 41026 0 1 2649, 0, +contig07 42270 43629 KOE97378 0 + 42270 43629 0 1 1359, 0, +contig07 43674 44331 KOE97379 0 - 43674 44331 0 1 657, 0, +contig07 44359 45415 KOE97380 0 - 44359 45415 0 1 1056, 0, +contig07 46795 47485 KOE97381 0 - 46795 47485 0 1 690, 0, +contig07 47727 48867 KOE97382 0 + 47727 48867 0 1 1140, 0, +contig07 50294 51035 KOE97383 0 + 50294 51035 0 1 741, 0, +contig07 51242 51767 KOE97384 0 + 51242 51767 0 1 525, 0, +contig07 51927 54237 KOE97385 0 + 51927 54237 0 1 2310, 0, +contig07 54673 55927 KOE97386 0 - 54673 55927 0 1 1254, 0, +contig07 56053 57163 KOE97387 0 - 56053 57163 0 1 1110, 0, +contig07 57277 58552 KOE97388 0 + 57277 58552 0 1 1275, 0, +contig07 58555 59173 KOE97389 0 + 58555 59173 0 1 618, 0, +contig07 59177 59894 KOE97390 0 + 59177 59894 0 1 717, 0, +contig07 59969 60749 KOE97391 0 - 59969 60749 0 1 780, 0, +contig07 60808 61735 KOE97392 0 + 60808 61735 0 1 927, 0, +contig07 61812 62352 KOE97393 0 - 61812 62352 0 1 540, 0, +contig07 62395 63172 KOE97394 0 - 62395 63172 0 1 777, 0, +contig07 63324 64734 KOE97395 0 + 63324 64734 0 1 1410, 0, +contig07 64733 66017 KOE97396 0 + 64733 66017 0 1 1284, 0, +contig07 66037 66670 KOE97397 0 + 66037 66670 0 1 633, 0, +contig07 66764 67706 KOE97398 0 + 66764 67706 0 1 942, 0, +contig07 68265 69681 KOE97399 0 - 68265 69681 0 1 1416, 0, +contig07 69677 70760 KOE97400 0 - 69677 70760 0 1 1083, 0, +contig07 70780 72310 KOE97401 0 - 70780 72310 0 1 1530, 0, +contig07 72463 73381 KOE97402 0 - 72463 73381 0 1 918, 0, +contig07 73974 74445 KOE97403 0 + 73974 74445 0 1 471, 0, +contig07 74499 75945 KOE97404 0 - 74499 75945 0 1 1446, 0, +contig07 76132 76963 KOE97405 0 - 76132 76963 0 1 831, 0, +contig07 77026 77386 KOE97406 0 - 77026 77386 0 1 360, 0, +contig07 77394 78504 KOE97407 0 - 77394 78504 0 1 1110, 0, +contig07 78570 78846 KOE97408 0 - 78570 78846 0 1 276, 0, +contig07 79060 82153 KOE97409 0 + 79060 82153 0 1 3093, 0, +contig07 82200 83106 KOE97410 0 - 82200 83106 0 1 906, 0, +contig07 84397 84814 KOE97411 0 + 84397 84814 0 1 417, 0, +contig07 84826 85522 KOE97412 0 - 84826 85522 0 1 696, 0, +contig07 85598 86261 KOE97413 0 + 85598 86261 0 1 663, 0, +contig07 86334 87219 KOE97414 0 - 86334 87219 0 1 885, 0, +contig07 87326 88385 KOE97415 0 + 87326 88385 0 1 1059, 0, +contig07 88473 89838 KOE97416 0 - 88473 89838 0 1 1365, 0, +contig07 89990 90695 KOE97417 0 + 89990 90695 0 1 705, 0, +contig07 90691 91516 KOE97418 0 + 90691 91516 0 1 825, 0, +contig07 92141 93116 KOE97419 0 + 92141 93116 0 1 975, 0, +contig07 93222 93825 KOE97420 0 - 93222 93825 0 1 603, 0, +contig07 93981 94782 KOE97421 0 + 93981 94782 0 1 801, 0, +contig07 94888 95539 KOE97422 0 + 94888 95539 0 1 651, 0, +contig07 95645 96476 KOE97423 0 + 95645 96476 0 1 831, 0, +contig07 96499 97267 KOE97424 0 + 96499 97267 0 1 768, 0, +contig07 98293 98776 KOE97425 0 + 98293 98776 0 1 483, 0, +contig07 98853 99405 KOE97426 0 + 98853 99405 0 1 552, 0, +contig07 99577 101716 KOE97427 0 + 99577 101716 0 1 2139, 0, +contig07 101848 104710 KOE97428 0 - 101848 104710 0 1 2862, 0, +contig07 105425 105833 KOE97429 0 - 105425 105833 0 1 408, 0, +contig07 105984 107970 KOE97430 0 + 105984 107970 0 1 1986, 0, +contig07 108038 108275 KOE97431 0 + 108038 108275 0 1 237, 0, +contig07 108330 109551 KOE97432 0 + 108330 109551 0 1 1221, 0, +contig07 109893 110328 KOE97433 0 - 109893 110328 0 1 435, 0, +contig07 110377 110713 KOE97434 0 - 110377 110713 0 1 336, 0, +contig07 110709 111753 KOE97435 0 - 110709 111753 0 1 1044, 0, +contig07 112756 115783 KOE97436 0 - 112756 115783 0 1 3027, 0, +contig07 116009 117077 KOE97437 0 - 116009 117077 0 1 1068, 0, +contig07 117076 118225 KOE97438 0 - 117076 118225 0 1 1149, 0, +contig07 118224 119253 KOE97439 0 - 118224 119253 0 1 1029, 0, +contig07 119260 120328 KOE97440 0 - 119260 120328 0 1 1068, 0, +contig07 120367 121660 KOE97441 0 - 120367 121660 0 1 1293, 0, +contig07 123199 125908 KOE97442 0 + 123199 125908 0 1 2709, 0, +contig07 126019 128374 KOE97443 0 + 126019 128374 0 1 2355, 0, +contig07 128498 128891 KOE97444 0 - 128498 128891 0 1 393, 0, +contig07 128887 130072 KOE97445 0 - 128887 130072 0 1 1185, 0, +contig07 130131 130869 KOE97446 0 + 130131 130869 0 1 738, 0, +contig07 130929 131415 KOE97447 0 - 130929 131415 0 1 486, 0, +contig07 131507 132248 KOE97448 0 + 131507 132248 0 1 741, 0, +contig07 132328 133840 KOE97449 0 - 132328 133840 0 1 1512, 0, +contig07 133844 134285 KOE97450 0 - 133844 134285 0 1 441, 0, +contig07 134281 136099 KOE97451 0 - 134281 136099 0 1 1818, 0, +contig07 136330 136717 KOE97452 0 - 136330 136717 0 1 387, 0, +contig07 136887 137931 KOE97453 0 + 136887 137931 0 1 1044, 0, +contig07 138286 139192 KOE97454 0 - 138286 139192 0 1 906, 0, +contig07 139202 140441 KOE97455 0 - 139202 140441 0 1 1239, 0, +contig07 140458 141055 KOE97456 0 - 140458 141055 0 1 597, 0, +contig07 141299 143477 KOE97457 0 - 141299 143477 0 1 2178, 0, +contig07 143755 144766 KOE97458 0 - 143755 144766 0 1 1011, 0, +contig07 144784 145495 KOE97459 0 - 144784 145495 0 1 711, 0, +contig07 146024 147098 KOE97460 0 + 146024 147098 0 1 1074, 0, +contig07 147220 148438 KOE97461 0 - 147220 148438 0 1 1218, 0, +contig07 148538 149816 KOE97462 0 - 148538 149816 0 1 1278, 0, +contig07 149812 150958 KOE97463 0 - 149812 150958 0 1 1146, 0, +contig07 45411 46803 KOE97464 0 - 45411 46803 0 1 1392, 0, +contig07 48942 50271 KOE97465 0 + 48942 50271 0 1 1329, 0, +contig07 67783 68122 KOE97466 0 + 67783 68122 0 1 339, 0, +contig07 73522 73969 KOE97467 0 + 73522 73969 0 1 447, 0, +contig07 83234 84338 KOE97468 0 + 83234 84338 0 1 1104, 0, +contig07 97345 98221 KOE97469 0 - 97345 98221 0 1 876, 0, +contig07 112164 112599 KOE97470 0 + 112164 112599 0 1 435, 0, +contig07 122036 123056 KOE97471 0 + 122036 123056 0 1 1020, 0, +contig07 145482 145761 KOE97472 0 - 145482 145761 0 1 279, 0, +contig08 59 485 KOE97473 0 - 59 485 0 1 426, 0, +contig08 528 807 KOE97474 0 - 528 807 0 1 279, 0, +contig08 841 1129 KOE97475 0 - 841 1129 0 1 288, 0, +contig08 1311 3201 KOE97476 0 - 1311 3201 0 1 1890, 0, +contig08 3298 4093 KOE97477 0 - 3298 4093 0 1 795, 0, +contig08 4234 6412 KOE97478 0 - 4234 6412 0 1 2178, 0, +contig08 6565 9688 KOE97479 0 - 6565 9688 0 1 3123, 0, +contig08 9719 12953 KOE97480 0 - 9719 12953 0 1 3234, 0, +contig08 13026 14268 KOE97481 0 - 13026 14268 0 1 1242, 0, +contig08 16311 17130 KOE97482 0 + 16311 17130 0 1 819, 0, +contig08 17342 17636 KOE97483 0 + 17342 17636 0 1 294, 0, +contig08 17678 18191 KOE97484 0 + 17678 18191 0 1 513, 0, +contig08 19085 21308 KOE97485 0 + 19085 21308 0 1 2223, 0, +contig08 21586 22552 KOE97486 0 + 21586 22552 0 1 966, 0, +contig08 22544 23093 KOE97487 0 + 22544 23093 0 1 549, 0, +contig08 23085 23502 KOE97488 0 + 23085 23502 0 1 417, 0, +contig08 23555 23915 KOE97489 0 + 23555 23915 0 1 360, 0, +contig08 24079 25810 KOE97490 0 + 24079 25810 0 1 1731, 0, +contig08 26796 28371 KOE97491 0 - 26796 28371 0 1 1575, 0, +contig08 28577 30320 KOE97492 0 - 28577 30320 0 1 1743, 0, +contig08 30548 30878 KOE97493 0 - 30548 30878 0 1 330, 0, +contig08 31388 33110 KOE97494 0 + 31388 33110 0 1 1722, 0, +contig08 33279 33966 KOE97495 0 + 33279 33966 0 1 687, 0, +contig08 33969 34917 KOE97496 0 + 33969 34917 0 1 948, 0, +contig08 34924 35767 KOE97497 0 + 34924 35767 0 1 843, 0, +contig08 35763 36477 KOE97498 0 + 35763 36477 0 1 714, 0, +contig08 36756 37632 KOE97499 0 + 36756 37632 0 1 876, 0, +contig08 38174 38507 KOE97500 0 + 38174 38507 0 1 333, 0, +contig08 38583 39867 KOE97501 0 - 38583 39867 0 1 1284, 0, +contig08 39925 40804 KOE97502 0 - 39925 40804 0 1 879, 0, +contig08 40820 42404 KOE97503 0 - 40820 42404 0 1 1584, 0, +contig08 42627 43245 KOE97504 0 + 42627 43245 0 1 618, 0, +contig08 43279 45031 KOE97505 0 + 43279 45031 0 1 1752, 0, +contig08 45030 46359 KOE97506 0 + 45030 46359 0 1 1329, 0, +contig08 46355 46793 KOE97507 0 + 46355 46793 0 1 438, 0, +contig08 46806 47436 KOE97508 0 + 46806 47436 0 1 630, 0, +contig08 47432 48428 KOE97509 0 + 47432 48428 0 1 996, 0, +contig08 48521 48797 KOE97510 0 - 48521 48797 0 1 276, 0, +contig08 48911 49682 KOE97511 0 - 48911 49682 0 1 771, 0, +contig08 50808 51774 KOE97512 0 + 50808 51774 0 1 966, 0, +contig08 51770 52145 KOE97513 0 + 51770 52145 0 1 375, 0, +contig08 52286 53654 KOE97514 0 - 52286 53654 0 1 1368, 0, +contig08 53664 54144 KOE97515 0 - 53664 54144 0 1 480, 0, +contig08 54197 54623 KOE97516 0 - 54197 54623 0 1 426, 0, +contig08 54619 55069 KOE97517 0 - 54619 55069 0 1 450, 0, +contig08 55428 56157 KOE97518 0 - 55428 56157 0 1 729, 0, +contig08 56325 57153 KOE97519 0 + 56325 57153 0 1 828, 0, +contig08 57222 57756 KOE97520 0 - 57222 57756 0 1 534, 0, +contig08 57883 58480 KOE97521 0 + 57883 58480 0 1 597, 0, +contig08 58496 59090 KOE97522 0 + 58496 59090 0 1 594, 0, +contig08 59103 59898 KOE97523 0 - 59103 59898 0 1 795, 0, +contig08 60019 61573 KOE97524 0 + 60019 61573 0 1 1554, 0, +contig08 61615 62182 KOE97525 0 + 61615 62182 0 1 567, 0, +contig08 62431 63331 KOE97526 0 + 62431 63331 0 1 900, 0, +contig08 63422 64139 KOE97527 0 - 63422 64139 0 1 717, 0, +contig08 64201 65725 KOE97528 0 - 64201 65725 0 1 1524, 0, +contig08 65750 66173 KOE97529 0 - 65750 66173 0 1 423, 0, +contig08 66329 67430 KOE97530 0 + 66329 67430 0 1 1101, 0, +contig08 67414 68065 KOE97531 0 + 67414 68065 0 1 651, 0, +contig08 68087 68459 KOE97532 0 + 68087 68459 0 1 372, 0, +contig08 68524 69364 KOE97533 0 - 68524 69364 0 1 840, 0, +contig08 69566 72107 KOE97534 0 + 69566 72107 0 1 2541, 0, +contig08 72228 74751 KOE97535 0 - 72228 74751 0 1 2523, 0, +contig08 75371 75935 KOE97536 0 - 75371 75935 0 1 564, 0, +contig08 75931 78313 KOE97537 0 - 75931 78313 0 1 2382, 0, +contig08 78309 78648 KOE97538 0 - 78309 78648 0 1 339, 0, +contig08 78716 80507 KOE97539 0 - 78716 80507 0 1 1791, 0, +contig08 80858 81146 KOE97540 0 + 80858 81146 0 1 288, 0, +contig08 81229 82879 KOE97541 0 + 81229 82879 0 1 1650, 0, +contig08 82993 83260 KOE97542 0 - 82993 83260 0 1 267, 0, +contig08 83333 84497 KOE97543 0 - 83333 84497 0 1 1164, 0, +contig08 84564 85494 KOE97544 0 - 84564 85494 0 1 930, 0, +contig08 85600 86308 KOE97545 0 + 85600 86308 0 1 708, 0, +contig08 87711 88212 KOE97546 0 + 87711 88212 0 1 501, 0, +contig08 88208 88949 KOE97547 0 + 88208 88949 0 1 741, 0, +contig08 89004 89343 KOE97548 0 + 89004 89343 0 1 339, 0, +contig08 89455 89713 KOE97549 0 + 89455 89713 0 1 258, 0, +contig08 90008 91082 KOE97550 0 + 90008 91082 0 1 1074, 0, +contig08 91353 91665 KOE97551 0 + 91353 91665 0 1 312, 0, +contig08 91749 92367 KOE97552 0 - 91749 92367 0 1 618, 0, +contig08 92698 92974 KOE97553 0 + 92698 92974 0 1 276, 0, +contig08 93115 93547 KOE97554 0 + 93115 93547 0 1 432, 0, +contig08 93629 94910 KOE97555 0 - 93629 94910 0 1 1281, 0, +contig08 95033 95813 KOE97556 0 + 95033 95813 0 1 780, 0, +contig08 95925 96546 KOE97557 0 + 95925 96546 0 1 621, 0, +contig08 96637 98815 KOE97558 0 - 96637 98815 0 1 2178, 0, +contig08 99227 100232 KOE97559 0 + 99227 100232 0 1 1005, 0, +contig08 100224 100809 KOE97560 0 + 100224 100809 0 1 585, 0, +contig08 101044 102409 KOE97561 0 + 101044 102409 0 1 1365, 0, +contig08 102525 104448 KOE97562 0 + 102525 104448 0 1 1923, 0, +contig08 104521 104734 KOE97563 0 - 104521 104734 0 1 213, 0, +contig08 104845 105622 KOE97564 0 + 104845 105622 0 1 777, 0, +contig08 105737 106484 KOE97565 0 - 105737 106484 0 1 747, 0, +contig08 106519 107203 KOE97566 0 - 106519 107203 0 1 684, 0, +contig08 107246 107807 KOE97567 0 - 107246 107807 0 1 561, 0, +contig08 107934 110421 KOE97568 0 - 107934 110421 0 1 2487, 0, +contig08 110614 111547 KOE97569 0 - 110614 111547 0 1 933, 0, +contig08 111596 112355 KOE97570 0 - 111596 112355 0 1 759, 0, +contig08 112394 112868 KOE97571 0 - 112394 112868 0 1 474, 0, +contig08 112911 114039 KOE97572 0 - 112911 114039 0 1 1128, 0, +contig08 114169 115303 KOE97573 0 - 114169 115303 0 1 1134, 0, +contig08 115429 115942 KOE97574 0 + 115429 115942 0 1 513, 0, +contig08 116062 116986 KOE97575 0 + 116062 116986 0 1 924, 0, +contig08 116989 118321 KOE97576 0 + 116989 118321 0 1 1332, 0, +contig08 118344 120066 KOE97577 0 + 118344 120066 0 1 1722, 0, +contig08 120084 121206 KOE97578 0 - 120084 121206 0 1 1122, 0, +contig08 121249 122068 KOE97579 0 - 121249 122068 0 1 819, 0, +contig08 122066 123125 KOE97580 0 + 122066 123125 0 1 1059, 0, +contig08 123238 124777 KOE97581 0 - 123238 124777 0 1 1539, 0, +contig08 124773 125274 KOE97582 0 - 124773 125274 0 1 501, 0, +contig08 125349 126486 KOE97583 0 - 125349 126486 0 1 1137, 0, +contig08 126571 127492 KOE97584 0 - 126571 127492 0 1 921, 0, +contig08 127554 127995 KOE97585 0 + 127554 127995 0 1 441, 0, +contig08 128085 129939 KOE97586 0 + 128085 129939 0 1 1854, 0, +contig08 130353 131568 KOE97587 0 + 130353 131568 0 1 1215, 0, +contig08 131691 132360 KOE97588 0 + 131691 132360 0 1 669, 0, +contig08 132411 133122 KOE97589 0 + 132411 133122 0 1 711, 0, +contig08 133272 133476 KOE97590 0 + 133272 133476 0 1 204, 0, +contig08 133756 134293 KOE97591 0 + 133756 134293 0 1 537, 0, +contig08 134459 134801 KOE97592 0 + 134459 134801 0 1 342, 0, +contig08 135533 135842 KOE97593 0 + 135533 135842 0 1 309, 0, +contig08 140103 140283 KOE97594 0 - 140103 140283 0 1 180, 0, +contig08 141217 141433 KOE97595 0 + 141217 141433 0 1 216, 0, +contig08 141438 141732 KOE97596 0 + 141438 141732 0 1 294, 0, +contig08 141724 142033 KOE97597 0 + 141724 142033 0 1 309, 0, +contig08 142035 142338 KOE97598 0 - 142035 142338 0 1 303, 0, +contig08 142640 143366 KOE97599 0 + 142640 143366 0 1 726, 0, +contig08 146211 146721 KOE97600 0 + 146211 146721 0 1 510, 0, +contig08 146820 147750 KOE97601 0 - 146820 147750 0 1 930, 0, +contig08 147940 148300 KOE97602 0 - 147940 148300 0 1 360, 0, +contig08 149010 149658 KOE97603 0 + 149010 149658 0 1 648, 0, +contig08 149681 150512 KOE97604 0 - 149681 150512 0 1 831, 0, +contig08 150688 151711 KOE97605 0 + 150688 151711 0 1 1023, 0, +contig08 151915 152185 KOE97606 0 + 151915 152185 0 1 270, 0, +contig08 152253 152673 KOE97607 0 + 152253 152673 0 1 420, 0, +contig08 152752 153178 KOE97608 0 + 152752 153178 0 1 426, 0, +contig08 153174 153864 KOE97609 0 + 153174 153864 0 1 690, 0, +contig08 153888 154281 KOE97610 0 - 153888 154281 0 1 393, 0, +contig08 154411 155080 KOE97611 0 - 154411 155080 0 1 669, 0, +contig08 155207 155624 KOE97612 0 + 155207 155624 0 1 417, 0, +contig08 156499 157393 KOE97613 0 + 156499 157393 0 1 894, 0, +contig08 158688 161523 KOE97614 0 - 158688 161523 0 1 2835, 0, +contig08 162077 162530 KOE97615 0 + 162077 162530 0 1 453, 0, +contig08 162615 164106 KOE97616 0 - 162615 164106 0 1 1491, 0, +contig08 165316 166504 KOE97617 0 + 165316 166504 0 1 1188, 0, +contig08 166570 169927 KOE97618 0 - 166570 169927 0 1 3357, 0, +contig08 170440 170791 KOE97619 0 + 170440 170791 0 1 351, 0, +contig08 170806 171427 KOE97620 0 - 170806 171427 0 1 621, 0, +contig08 171553 173026 KOE97621 0 + 171553 173026 0 1 1473, 0, +contig08 173036 173351 KOE97622 0 - 173036 173351 0 1 315, 0, +contig08 173486 174161 KOE97623 0 - 173486 174161 0 1 675, 0, +contig08 174153 175410 KOE97624 0 - 174153 175410 0 1 1257, 0, +contig08 175617 177102 KOE97625 0 + 175617 177102 0 1 1485, 0, +contig08 177107 177572 KOE97626 0 - 177107 177572 0 1 465, 0, +contig08 177622 178534 KOE97627 0 + 177622 178534 0 1 912, 0, +contig08 178632 179526 KOE97628 0 + 178632 179526 0 1 894, 0, +contig08 179735 182267 KOE97629 0 + 179735 182267 0 1 2532, 0, +contig08 182345 182732 KOE97630 0 - 182345 182732 0 1 387, 0, +contig08 183176 185222 KOE97631 0 - 183176 185222 0 1 2046, 0, +contig08 185718 187644 KOE97632 0 + 185718 187644 0 1 1926, 0, +contig08 187694 188354 KOE97633 0 + 187694 188354 0 1 660, 0, +contig08 188357 189401 KOE97634 0 + 188357 189401 0 1 1044, 0, +contig08 189411 190143 KOE97635 0 + 189411 190143 0 1 732, 0, +contig08 190706 191618 KOE97636 0 + 190706 191618 0 1 912, 0, +contig08 191734 192511 KOE97637 0 - 191734 192511 0 1 777, 0, +contig08 192618 193221 KOE97638 0 - 192618 193221 0 1 603, 0, +contig08 193302 194274 KOE97639 0 + 193302 194274 0 1 972, 0, +contig08 194300 195095 KOE97640 0 + 194300 195095 0 1 795, 0, +contig08 195195 196695 KOE97641 0 - 195195 196695 0 1 1500, 0, +contig08 198549 199185 KOE97642 0 - 198549 199185 0 1 636, 0, +contig08 200054 201776 KOE97643 0 + 200054 201776 0 1 1722, 0, +contig08 201882 203691 KOE97644 0 + 201882 203691 0 1 1809, 0, +contig08 204352 205171 KOE97645 0 - 204352 205171 0 1 819, 0, +contig08 205663 205996 KOE97646 0 + 205663 205996 0 1 333, 0, +contig08 206027 206828 KOE97647 0 + 206027 206828 0 1 801, 0, +contig08 206901 207207 KOE97648 0 + 206901 207207 0 1 306, 0, +contig08 207786 208314 KOE97649 0 + 207786 208314 0 1 528, 0, +contig08 208358 209906 KOE97650 0 + 208358 209906 0 1 1548, 0, +contig08 209989 210853 KOE97651 0 + 209989 210853 0 1 864, 0, +contig08 210891 212298 KOE97652 0 + 210891 212298 0 1 1407, 0, +contig08 212411 212834 KOE97653 0 + 212411 212834 0 1 423, 0, +contig08 212998 213385 KOE97654 0 - 212998 213385 0 1 387, 0, +contig08 213468 214836 KOE97655 0 + 213468 214836 0 1 1368, 0, +contig08 214804 215338 KOE97656 0 + 214804 215338 0 1 534, 0, +contig08 215385 216738 KOE97657 0 - 215385 216738 0 1 1353, 0, +contig08 218204 218597 KOE97658 0 - 218204 218597 0 1 393, 0, +contig08 218598 219816 KOE97659 0 - 218598 219816 0 1 1218, 0, +contig08 219836 221135 KOE97660 0 - 219836 221135 0 1 1299, 0, +contig08 221145 221871 KOE97661 0 - 221145 221871 0 1 726, 0, +contig08 221906 223184 KOE97662 0 - 221906 223184 0 1 1278, 0, +contig08 223387 225226 KOE97663 0 + 223387 225226 0 1 1839, 0, +contig08 225671 226103 KOE97664 0 + 225671 226103 0 1 432, 0, +contig08 226170 226599 KOE97665 0 - 226170 226599 0 1 429, 0, +contig08 226720 227239 KOE97666 0 - 226720 227239 0 1 519, 0, +contig08 227361 228474 KOE97667 0 + 227361 228474 0 1 1113, 0, +contig08 228522 228927 KOE97668 0 - 228522 228927 0 1 405, 0, +contig08 229097 231128 KOE97669 0 + 229097 231128 0 1 2031, 0, +contig08 231210 232014 KOE97670 0 - 231210 232014 0 1 804, 0, +contig08 232770 234237 KOE97671 0 + 232770 234237 0 1 1467, 0, +contig08 234254 235382 KOE97672 0 + 234254 235382 0 1 1128, 0, +contig08 235720 236818 KOE97673 0 + 235720 236818 0 1 1098, 0, +contig08 236853 237336 KOE97674 0 - 236853 237336 0 1 483, 0, +contig08 237426 238323 KOE97675 0 + 237426 238323 0 1 897, 0, +contig08 238508 239516 KOE97676 0 + 238508 239516 0 1 1008, 0, +contig08 239512 240202 KOE97677 0 + 239512 240202 0 1 690, 0, +contig08 240288 240891 KOE97678 0 - 240288 240891 0 1 603, 0, +contig08 241018 241345 KOE97679 0 + 241018 241345 0 1 327, 0, +contig08 241414 243511 KOE97680 0 + 241414 243511 0 1 2097, 0, +contig08 243631 244816 KOE97681 0 - 243631 244816 0 1 1185, 0, +contig08 244959 247071 KOE97682 0 + 244959 247071 0 1 2112, 0, +contig08 247125 247551 KOE97683 0 + 247125 247551 0 1 426, 0, +contig08 247633 247906 KOE97684 0 + 247633 247906 0 1 273, 0, +contig08 247898 248750 KOE97685 0 + 247898 248750 0 1 852, 0, +contig08 248746 249421 KOE97686 0 + 248746 249421 0 1 675, 0, +contig08 249434 250325 KOE97687 0 + 249434 250325 0 1 891, 0, +contig08 250677 251229 KOE97688 0 + 250677 251229 0 1 552, 0, +contig08 251289 252663 KOE97689 0 + 251289 252663 0 1 1374, 0, +contig08 252717 253710 KOE97690 0 - 252717 253710 0 1 993, 0, +contig08 253755 254415 KOE97691 0 - 253755 254415 0 1 660, 0, +contig08 254624 255809 KOE97692 0 + 254624 255809 0 1 1185, 0, +contig08 255821 258944 KOE97693 0 + 255821 258944 0 1 3123, 0, +contig08 259041 260427 KOE97694 0 + 259041 260427 0 1 1386, 0, +contig08 260535 260841 KOE97695 0 - 260535 260841 0 1 306, 0, +contig08 261095 261518 KOE97696 0 - 261095 261518 0 1 423, 0, +contig08 261585 261921 KOE97697 0 - 261585 261921 0 1 336, 0, +contig08 261996 262257 KOE97698 0 - 261996 262257 0 1 261, 0, +contig08 262455 262908 KOE97699 0 - 262455 262908 0 1 453, 0, +contig08 262988 263750 KOE97700 0 + 262988 263750 0 1 762, 0, +contig08 263996 265925 KOE97701 0 + 263996 265925 0 1 1929, 0, +contig08 266052 266784 KOE97702 0 + 266052 266784 0 1 732, 0, +contig08 266783 267407 KOE97703 0 + 266783 267407 0 1 624, 0, +contig08 267593 268532 KOE97704 0 - 267593 268532 0 1 939, 0, +contig08 268815 269862 KOE97705 0 + 268815 269862 0 1 1047, 0, +contig08 269983 271117 KOE97706 0 + 269983 271117 0 1 1134, 0, +contig08 271113 271599 KOE97707 0 + 271113 271599 0 1 486, 0, +contig08 271602 273681 KOE97708 0 + 271602 273681 0 1 2079, 0, +contig08 273677 274790 KOE97709 0 + 273677 274790 0 1 1113, 0, +contig08 274843 275947 KOE97710 0 + 274843 275947 0 1 1104, 0, +contig08 14456 15776 KOE97711 0 + 14456 15776 0 1 1320, 0, +contig08 25871 26762 KOE97712 0 + 25871 26762 0 1 891, 0, +contig08 49724 50645 KOE97713 0 - 49724 50645 0 1 921, 0, +contig08 86340 87639 KOE97714 0 + 86340 87639 0 1 1299, 0, +contig08 155631 156435 KOE97715 0 - 155631 156435 0 1 804, 0, +contig08 157401 158430 KOE97716 0 - 157401 158430 0 1 1029, 0, +contig08 164212 165118 KOE97717 0 + 164212 165118 0 1 906, 0, +contig08 199371 199887 KOE97718 0 + 199371 199887 0 1 516, 0, +contig08 207313 207784 KOE97719 0 + 207313 207784 0 1 471, 0, +contig08 216734 218081 KOE97720 0 - 216734 218081 0 1 1347, 0, +contig08 232010 232577 KOE97721 0 - 232010 232577 0 1 567, 0, +contig08 250402 250603 KOE97722 0 + 250402 250603 0 1 201, 0, +contig09 263 1439 KOE97723 0 + 263 1439 0 1 1176, 0, +contig09 1435 2089 KOE97724 0 + 1435 2089 0 1 654, 0, +contig09 2299 3766 KOE97725 0 + 2299 3766 0 1 1467, 0, +contig09 3962 4967 KOE97726 0 + 3962 4967 0 1 1005, 0, +contig09 5096 6245 KOE97727 0 + 5096 6245 0 1 1149, 0, +contig09 6337 6937 KOE97728 0 - 6337 6937 0 1 600, 0, +contig09 7148 8108 KOE97729 0 - 7148 8108 0 1 960, 0, +contig09 8315 9299 KOE97730 0 + 8315 9299 0 1 984, 0, +contig09 9904 10336 KOE97731 0 + 9904 10336 0 1 432, 0, +contig09 10408 12472 KOE97732 0 + 10408 12472 0 1 2064, 0, +contig09 12745 13852 KOE97733 0 + 12745 13852 0 1 1107, 0, +contig09 13848 16974 KOE97734 0 + 13848 16974 0 1 3126, 0, +contig09 16966 17506 KOE97735 0 + 16966 17506 0 1 540, 0, +contig09 17686 19204 KOE97736 0 + 17686 19204 0 1 1518, 0, +contig09 19196 20030 KOE97737 0 + 19196 20030 0 1 834, 0, +contig09 20214 21636 KOE97738 0 - 20214 21636 0 1 1422, 0, +contig09 21860 22265 KOE97739 0 - 21860 22265 0 1 405, 0, +contig09 22320 23037 KOE97740 0 - 22320 23037 0 1 717, 0, +contig09 23112 23394 KOE97741 0 - 23112 23394 0 1 282, 0, +contig09 23572 23908 KOE97742 0 + 23572 23908 0 1 336, 0, +contig09 24210 26058 KOE97743 0 - 24210 26058 0 1 1848, 0, +contig09 26085 26820 KOE97744 0 - 26085 26820 0 1 735, 0, +contig09 26819 27614 KOE97745 0 - 26819 27614 0 1 795, 0, +contig09 27694 27895 KOE97746 0 - 27694 27895 0 1 201, 0, +contig09 28102 29956 KOE97747 0 + 28102 29956 0 1 1854, 0, +contig09 32986 33559 KOE97748 0 + 32986 33559 0 1 573, 0, +contig09 33972 36039 KOE97749 0 + 33972 36039 0 1 2067, 0, +contig09 36035 37280 KOE97750 0 + 36035 37280 0 1 1245, 0, +contig09 38101 38323 KOE97751 0 + 38101 38323 0 1 222, 0, +contig09 38712 39450 KOE97752 0 - 38712 39450 0 1 738, 0, +contig09 39744 40149 KOE97753 0 + 39744 40149 0 1 405, 0, +contig09 40150 40930 KOE97754 0 - 40150 40930 0 1 780, 0, +contig09 41093 42305 KOE97755 0 + 41093 42305 0 1 1212, 0, +contig09 42414 42837 KOE97756 0 - 42414 42837 0 1 423, 0, +contig09 42916 43276 KOE97757 0 - 42916 43276 0 1 360, 0, +contig09 44574 45051 KOE97758 0 + 44574 45051 0 1 477, 0, +contig09 45140 45614 KOE97759 0 + 45140 45614 0 1 474, 0, +contig09 45622 46300 KOE97760 0 + 45622 46300 0 1 678, 0, +contig09 46262 47630 KOE97761 0 + 46262 47630 0 1 1368, 0, +contig09 48111 48498 KOE97762 0 + 48111 48498 0 1 387, 0, +contig09 48653 49265 KOE97763 0 - 48653 49265 0 1 612, 0, +contig09 49276 50140 KOE97764 0 - 49276 50140 0 1 864, 0, +contig09 50148 51408 KOE97765 0 - 50148 51408 0 1 1260, 0, +contig09 51769 52213 KOE97766 0 + 51769 52213 0 1 444, 0, +contig09 52296 52689 KOE97767 0 + 52296 52689 0 1 393, 0, +contig09 52702 54430 KOE97768 0 + 52702 54430 0 1 1728, 0, +contig09 54472 54769 KOE97769 0 - 54472 54769 0 1 297, 0, +contig09 55044 56418 KOE97770 0 - 55044 56418 0 1 1374, 0, +contig09 56478 58092 KOE97771 0 - 56478 58092 0 1 1614, 0, +contig09 58497 59667 KOE97772 0 + 58497 59667 0 1 1170, 0, +contig09 59687 60563 KOE97773 0 + 59687 60563 0 1 876, 0, +contig09 62542 63745 KOE97774 0 - 62542 63745 0 1 1203, 0, +contig09 63935 64823 KOE97775 0 - 63935 64823 0 1 888, 0, +contig09 64937 65927 KOE97776 0 + 64937 65927 0 1 990, 0, +contig09 65926 66697 KOE97777 0 + 65926 66697 0 1 771, 0, +contig09 66717 67224 KOE97778 0 + 66717 67224 0 1 507, 0, +contig09 67198 67636 KOE97779 0 + 67198 67636 0 1 438, 0, +contig09 30411 31875 KOE97780 0 + 30411 31875 0 1 1464, 0, +contig09 43449 44328 KOE97781 0 + 43449 44328 0 1 879, 0, +contig09 60787 62422 KOE97782 0 + 60787 62422 0 1 1635, 0, +contig10 3 1368 KOE97783 0 - 3 1368 0 1 1365, 0, +contig10 3185 3944 KOE97784 0 - 3185 3944 0 1 759, 0, +contig10 4110 6546 KOE97785 0 - 4110 6546 0 1 2436, 0, +contig10 6761 7244 KOE97786 0 + 6761 7244 0 1 483, 0, +contig10 8254 9973 KOE97787 0 + 8254 9973 0 1 1719, 0, +contig10 10652 12263 KOE97788 0 + 10652 12263 0 1 1611, 0, +contig10 12290 13001 KOE97789 0 - 12290 13001 0 1 711, 0, +contig10 13171 13993 KOE97790 0 + 13171 13993 0 1 822, 0, +contig10 14174 16760 KOE97791 0 + 14174 16760 0 1 2586, 0, +contig10 16832 17633 KOE97792 0 - 16832 17633 0 1 801, 0, +contig10 17773 19063 KOE97793 0 - 17773 19063 0 1 1290, 0, +contig10 19059 19797 KOE97794 0 - 19059 19797 0 1 738, 0, +contig10 19979 21266 KOE97795 0 + 19979 21266 0 1 1287, 0, +contig10 21540 23238 KOE97796 0 - 21540 23238 0 1 1698, 0, +contig10 23446 25834 KOE97797 0 - 23446 25834 0 1 2388, 0, +contig10 26167 28033 KOE97798 0 + 26167 28033 0 1 1866, 0, +contig10 28124 28988 KOE97799 0 - 28124 28988 0 1 864, 0, +contig10 29163 30075 KOE97800 0 + 29163 30075 0 1 912, 0, +contig10 30160 31375 KOE97801 0 + 30160 31375 0 1 1215, 0, +contig10 31430 32075 KOE97802 0 + 31430 32075 0 1 645, 0, +contig10 32151 32895 KOE97803 0 - 32151 32895 0 1 744, 0, +contig10 33054 34806 KOE97804 0 + 33054 34806 0 1 1752, 0, +contig10 34822 35149 KOE97805 0 + 34822 35149 0 1 327, 0, +contig10 35180 35702 KOE97806 0 + 35180 35702 0 1 522, 0, +contig10 35777 36410 KOE97807 0 + 35777 36410 0 1 633, 0, +contig10 36586 37318 KOE97808 0 + 36586 37318 0 1 732, 0, +contig10 37423 37945 KOE97809 0 + 37423 37945 0 1 522, 0, +contig10 37958 38552 KOE97810 0 + 37958 38552 0 1 594, 0, +contig10 38601 40521 KOE97811 0 + 38601 40521 0 1 1920, 0, +contig10 40861 41902 KOE97812 0 + 40861 41902 0 1 1041, 0, +contig10 41891 42323 KOE97813 0 + 41891 42323 0 1 432, 0, +contig10 42333 43113 KOE97814 0 + 42333 43113 0 1 780, 0, +contig10 43137 43566 KOE97815 0 + 43137 43566 0 1 429, 0, +contig10 43555 44608 KOE97816 0 + 43555 44608 0 1 1053, 0, +contig10 44891 46211 KOE97817 0 + 44891 46211 0 1 1320, 0, +contig10 46275 46794 KOE97818 0 + 46275 46794 0 1 519, 0, +contig10 46797 47616 KOE97819 0 + 46797 47616 0 1 819, 0, +contig10 47792 48494 KOE97820 0 + 47792 48494 0 1 702, 0, +contig10 48572 49238 KOE97821 0 + 48572 49238 0 1 666, 0, +contig10 49302 50301 KOE97822 0 - 49302 50301 0 1 999, 0, +contig10 50622 51819 KOE97823 0 - 50622 51819 0 1 1197, 0, +contig10 51818 52037 KOE97824 0 - 51818 52037 0 1 219, 0, +contig10 52489 52696 KOE97825 0 - 52489 52696 0 1 207, 0, +contig10 52710 52896 KOE97826 0 - 52710 52896 0 1 186, 0, +contig10 53399 56090 KOE97827 0 - 53399 56090 0 1 2691, 0, +contig10 56198 56444 KOE97828 0 - 56198 56444 0 1 246, 0, +contig10 56443 56752 KOE97829 0 - 56443 56752 0 1 309, 0, +contig10 57320 57527 KOE97830 0 - 57320 57527 0 1 207, 0, +contig10 58321 58750 KOE97831 0 + 58321 58750 0 1 429, 0, +contig10 59355 59910 KOE97832 0 + 59355 59910 0 1 555, 0, +contig10 59951 60947 KOE97833 0 - 59951 60947 0 1 996, 0, +contig10 60943 61342 KOE97834 0 - 60943 61342 0 1 399, 0, +contig10 64735 64852 KOE97835 0 - 64735 64852 0 1 117, 0, +contig10 64860 65199 KOE97836 0 - 64860 65199 0 1 339, 0, +contig10 65255 65765 KOE97837 0 - 65255 65765 0 1 510, 0, +contig10 65787 66960 KOE97838 0 - 65787 66960 0 1 1173, 0, +contig10 66975 67335 KOE97839 0 - 66975 67335 0 1 360, 0, +contig10 67331 67898 KOE97840 0 - 67331 67898 0 1 567, 0, +contig10 68004 68586 KOE97841 0 - 68004 68586 0 1 582, 0, +contig10 71803 72355 KOE97842 0 - 71803 72355 0 1 552, 0, +contig10 72347 73238 KOE97843 0 - 72347 73238 0 1 891, 0, +contig10 73324 73786 KOE97844 0 - 73324 73786 0 1 462, 0, +contig10 74264 74786 KOE97845 0 - 74264 74786 0 1 522, 0, +contig10 75422 75698 KOE97846 0 - 75422 75698 0 1 276, 0, +contig10 75690 76044 KOE97847 0 - 75690 76044 0 1 354, 0, +contig10 76046 76262 KOE97848 0 - 76046 76262 0 1 216, 0, +contig10 76261 76729 KOE97849 0 - 76261 76729 0 1 468, 0, +contig10 76833 77541 KOE97850 0 - 76833 77541 0 1 708, 0, +contig10 77544 78561 KOE97851 0 - 77544 78561 0 1 1017, 0, +contig10 78597 79458 KOE97852 0 - 78597 79458 0 1 861, 0, +contig10 79612 81370 KOE97853 0 + 79612 81370 0 1 1758, 0, +contig10 82447 83950 KOE97854 0 - 82447 83950 0 1 1503, 0, +contig10 84155 84356 KOE97855 0 - 84155 84356 0 1 201, 0, +contig10 85525 86701 KOE97856 0 - 85525 86701 0 1 1176, 0, +contig10 86947 87979 KOE97857 0 - 86947 87979 0 1 1032, 0, +contig10 90103 90565 KOE97858 0 + 90103 90565 0 1 462, 0, +contig10 91044 91362 KOE97859 0 - 91044 91362 0 1 318, 0, +contig10 92013 92853 KOE97860 0 + 92013 92853 0 1 840, 0, +contig10 92935 93874 KOE97861 0 + 92935 93874 0 1 939, 0, +contig10 93981 94407 KOE97862 0 - 93981 94407 0 1 426, 0, +contig10 94501 95269 KOE97863 0 - 94501 95269 0 1 768, 0, +contig10 95418 95739 KOE97864 0 + 95418 95739 0 1 321, 0, +contig10 95817 96330 KOE97865 0 - 95817 96330 0 1 513, 0, +contig10 96411 97431 KOE97866 0 - 96411 97431 0 1 1020, 0, +contig10 97427 99236 KOE97867 0 - 97427 99236 0 1 1809, 0, +contig10 99311 99695 KOE97868 0 - 99311 99695 0 1 384, 0, +contig10 99899 101705 KOE97869 0 - 99899 101705 0 1 1806, 0, +contig10 102259 102808 KOE97870 0 - 102259 102808 0 1 549, 0, +contig10 102894 106977 KOE97871 0 + 102894 106977 0 1 4083, 0, +contig10 107030 107567 KOE97872 0 - 107030 107567 0 1 537, 0, +contig10 107697 109854 KOE97873 0 + 107697 109854 0 1 2157, 0, +contig10 109884 111450 KOE97874 0 + 109884 111450 0 1 1566, 0, +contig10 111446 113546 KOE97875 0 - 111446 113546 0 1 2100, 0, +contig10 113642 116081 KOE97876 0 + 113642 116081 0 1 2439, 0, +contig10 116077 116614 KOE97877 0 + 116077 116614 0 1 537, 0, +contig10 1364 3146 KOE97878 0 - 1364 3146 0 1 1782, 0, +contig10 7280 8138 KOE97879 0 + 7280 8138 0 1 858, 0, +contig10 52888 53236 KOE97880 0 - 52888 53236 0 1 348, 0, +contig10 56751 56994 KOE97881 0 - 56751 56994 0 1 243, 0, +contig10 73782 74268 KOE97882 0 - 73782 74268 0 1 486, 0, +contig10 74785 75391 KOE97883 0 - 74785 75391 0 1 606, 0, +contig10 81366 82380 KOE97884 0 + 81366 82380 0 1 1014, 0, +contig11 0 358 KOE97885 0 - 0 358 0 1 358, 0, +contig11 845 1862 KOE97886 0 - 845 1862 0 1 1017, 0, +contig11 3190 5929 KOE97887 0 + 3190 5929 0 1 2739, 0, +contig11 6560 7652 KOE97888 0 - 6560 7652 0 1 1092, 0, +contig11 7750 8371 KOE97889 0 - 7750 8371 0 1 621, 0, +contig11 8373 8952 KOE97890 0 - 8373 8952 0 1 579, 0, +contig11 9000 9618 KOE97891 0 - 9000 9618 0 1 618, 0, +contig11 10916 11786 KOE97892 0 - 10916 11786 0 1 870, 0, +contig11 11782 12442 KOE97893 0 - 11782 12442 0 1 660, 0, +contig11 12438 14133 KOE97894 0 - 12438 14133 0 1 1695, 0, +contig11 14187 15471 KOE97895 0 + 14187 15471 0 1 1284, 0, +contig11 15448 16531 KOE97896 0 + 15448 16531 0 1 1083, 0, +contig11 16536 18243 KOE97897 0 + 16536 18243 0 1 1707, 0, +contig11 18289 19072 KOE97898 0 + 18289 19072 0 1 783, 0, +contig11 19638 20208 KOE97899 0 - 19638 20208 0 1 570, 0, +contig11 20204 21479 KOE97900 0 - 20204 21479 0 1 1275, 0, +contig11 21556 22150 KOE97901 0 + 21556 22150 0 1 594, 0, +contig11 22146 22482 KOE97902 0 + 22146 22482 0 1 336, 0, +contig11 23167 24907 KOE97903 0 - 23167 24907 0 1 1740, 0, +contig11 25272 26295 KOE97904 0 - 25272 26295 0 1 1023, 0, +contig11 26296 26632 KOE97905 0 - 26296 26632 0 1 336, 0, +contig11 26628 27285 KOE97906 0 - 26628 27285 0 1 657, 0, +contig11 27459 28554 KOE97907 0 - 27459 28554 0 1 1095, 0, +contig11 28613 29165 KOE97908 0 - 28613 29165 0 1 552, 0, +contig11 29287 29707 KOE97909 0 + 29287 29707 0 1 420, 0, +contig11 29818 31279 KOE97910 0 - 29818 31279 0 1 1461, 0, +contig11 31275 31596 KOE97911 0 - 31275 31596 0 1 321, 0, +contig11 31724 32279 KOE97912 0 + 31724 32279 0 1 555, 0, +contig11 32275 32602 KOE97913 0 + 32275 32602 0 1 327, 0, +contig11 32605 33058 KOE97914 0 + 32605 33058 0 1 453, 0, +contig11 33143 34223 KOE97915 0 - 33143 34223 0 1 1080, 0, +contig11 34275 36597 KOE97916 0 - 34275 36597 0 1 2322, 0, +contig11 37506 38442 KOE97917 0 + 37506 38442 0 1 936, 0, +contig11 38438 38993 KOE97918 0 + 38438 38993 0 1 555, 0, +contig11 38985 39783 KOE97919 0 + 38985 39783 0 1 798, 0, +contig11 39879 40551 KOE97920 0 - 39879 40551 0 1 672, 0, +contig11 40547 41966 KOE97921 0 - 40547 41966 0 1 1419, 0, +contig11 43029 43971 KOE97922 0 - 43029 43971 0 1 942, 0, +contig11 44019 44877 KOE97923 0 - 44019 44877 0 1 858, 0, +contig11 45231 45795 KOE97924 0 + 45231 45795 0 1 564, 0, +contig11 46020 47613 KOE97925 0 + 46020 47613 0 1 1593, 0, +contig11 47698 48661 KOE97926 0 + 47698 48661 0 1 963, 0, +contig11 48784 49189 KOE97927 0 + 48784 49189 0 1 405, 0, +contig11 49239 50196 KOE97928 0 + 49239 50196 0 1 957, 0, +contig11 51547 51811 KOE97929 0 - 51547 51811 0 1 264, 0, +contig11 51964 53713 KOE97930 0 + 51964 53713 0 1 1749, 0, +contig11 53756 54410 KOE97931 0 + 53756 54410 0 1 654, 0, +contig11 54460 55183 KOE97932 0 + 54460 55183 0 1 723, 0, +contig11 55281 55842 KOE97933 0 + 55281 55842 0 1 561, 0, +contig11 55825 56893 KOE97934 0 + 55825 56893 0 1 1068, 0, +contig11 56942 57338 KOE97935 0 + 56942 57338 0 1 396, 0, +contig11 57445 58627 KOE97936 0 - 57445 58627 0 1 1182, 0, +contig11 58623 59832 KOE97937 0 - 58623 59832 0 1 1209, 0, +contig11 59938 60523 KOE97938 0 + 59938 60523 0 1 585, 0, +contig11 60531 61086 KOE97939 0 + 60531 61086 0 1 555, 0, +contig11 61095 62034 KOE97940 0 + 61095 62034 0 1 939, 0, +contig11 62030 64625 KOE97941 0 + 62030 64625 0 1 2595, 0, +contig11 64621 65968 KOE97942 0 + 64621 65968 0 1 1347, 0, +contig11 65971 66952 KOE97943 0 + 65971 66952 0 1 981, 0, +contig11 66948 67752 KOE97944 0 + 66948 67752 0 1 804, 0, +contig11 67765 68149 KOE97945 0 + 67765 68149 0 1 384, 0, +contig11 68164 69187 KOE97946 0 + 68164 69187 0 1 1023, 0, +contig11 69183 69828 KOE97947 0 + 69183 69828 0 1 645, 0, +contig11 69916 70408 KOE97948 0 - 69916 70408 0 1 492, 0, +contig11 70421 70973 KOE97949 0 - 70421 70973 0 1 552, 0, +contig11 70981 71776 KOE97950 0 - 70981 71776 0 1 795, 0, +contig11 71772 72660 KOE97951 0 - 71772 72660 0 1 888, 0, +contig11 72711 73206 KOE97952 0 - 72711 73206 0 1 495, 0, +contig11 73205 74093 KOE97953 0 - 73205 74093 0 1 888, 0, +contig11 74096 74717 KOE97954 0 - 74096 74717 0 1 621, 0, +contig11 75284 76445 KOE97955 0 - 75284 76445 0 1 1161, 0, +contig11 76670 77420 KOE97956 0 - 76670 77420 0 1 750, 0, +contig11 77450 77846 KOE97957 0 - 77450 77846 0 1 396, 0, +contig11 78059 78761 KOE97958 0 + 78059 78761 0 1 702, 0, +contig11 78850 80122 KOE97959 0 - 78850 80122 0 1 1272, 0, +contig11 80277 80991 KOE97960 0 - 80277 80991 0 1 714, 0, +contig11 81078 81723 KOE97961 0 - 81078 81723 0 1 645, 0, +contig11 81798 82446 KOE97962 0 + 81798 82446 0 1 648, 0, +contig11 82442 84956 KOE97963 0 + 82442 84956 0 1 2514, 0, +contig11 85063 85990 KOE97964 0 - 85063 85990 0 1 927, 0, +contig11 86063 86663 KOE97965 0 - 86063 86663 0 1 600, 0, +contig11 86667 88875 KOE97966 0 - 86667 88875 0 1 2208, 0, +contig11 90716 92015 KOE97967 0 + 90716 92015 0 1 1299, 0, +contig11 92040 93006 KOE97968 0 + 92040 93006 0 1 966, 0, +contig11 93070 94279 KOE97969 0 - 93070 94279 0 1 1209, 0, +contig11 94373 95291 KOE97970 0 + 94373 95291 0 1 918, 0, +contig11 95400 95832 KOE97971 0 + 95400 95832 0 1 432, 0, +contig11 97034 97862 KOE97972 0 + 97034 97862 0 1 828, 0, +contig11 97906 98953 KOE97973 0 - 97906 98953 0 1 1047, 0, +contig11 99072 99873 KOE97974 0 - 99072 99873 0 1 801, 0, +contig11 99869 101585 KOE97975 0 - 99869 101585 0 1 1716, 0, +contig11 101911 103123 KOE97976 0 + 101911 103123 0 1 1212, 0, +contig11 103263 103770 KOE97977 0 + 103263 103770 0 1 507, 0, +contig11 103837 106549 KOE97978 0 - 103837 106549 0 1 2712, 0, +contig11 106783 109300 KOE97979 0 - 106783 109300 0 1 2517, 0, +contig11 109539 110985 KOE97980 0 + 109539 110985 0 1 1446, 0, +contig11 111142 111616 KOE97981 0 + 111142 111616 0 1 474, 0, +contig11 111615 112098 KOE97982 0 + 111615 112098 0 1 483, 0, +contig11 112173 112731 KOE97983 0 - 112173 112731 0 1 558, 0, +contig11 112782 113514 KOE97984 0 - 112782 113514 0 1 732, 0, +contig11 113510 114560 KOE97985 0 - 113510 114560 0 1 1050, 0, +contig11 114584 115511 KOE97986 0 - 114584 115511 0 1 927, 0, +contig11 115713 115990 KOE97987 0 + 115713 115990 0 1 277, 0, +contig11 2000 3020 KOE97988 0 - 2000 3020 0 1 1020, 0, +contig11 9728 10688 KOE97989 0 - 9728 10688 0 1 960, 0, +contig11 22561 23047 KOE97990 0 + 22561 23047 0 1 486, 0, +contig11 36928 37510 KOE97991 0 + 36928 37510 0 1 582, 0, +contig11 42073 42958 KOE97992 0 + 42073 42958 0 1 885, 0, +contig11 50851 51517 KOE97993 0 - 50851 51517 0 1 666, 0, +contig11 89064 89259 KOE97994 0 - 89064 89259 0 1 195, 0, +contig11 89551 90523 KOE97995 0 - 89551 90523 0 1 972, 0, +contig11 95979 96975 KOE97996 0 + 95979 96975 0 1 996, 0, +contig12 0 552 KOE97997 0 + 0 552 0 1 552, 0, +contig12 592 1177 KOE97998 0 + 592 1177 0 1 585, 0, +contig12 1221 2178 KOE97999 0 - 1221 2178 0 1 957, 0, +contig12 2291 5024 KOE98000 0 - 2291 5024 0 1 2733, 0, +contig12 5291 6248 KOE98001 0 - 5291 6248 0 1 957, 0, +contig12 6260 6710 KOE98002 0 + 6260 6710 0 1 450, 0, +contig12 6992 7904 KOE98003 0 - 6992 7904 0 1 912, 0, +contig12 8095 9331 KOE98004 0 - 8095 9331 0 1 1236, 0, +contig12 9501 10737 KOE98005 0 - 9501 10737 0 1 1236, 0, +contig12 10733 11483 KOE98006 0 - 10733 11483 0 1 750, 0, +contig12 11479 12442 KOE98007 0 - 11479 12442 0 1 963, 0, +contig12 12438 13875 KOE98008 0 - 12438 13875 0 1 1437, 0, +contig12 13915 15001 KOE98009 0 - 13915 15001 0 1 1086, 0, +contig12 14997 16317 KOE98010 0 - 14997 16317 0 1 1320, 0, +contig12 16318 17404 KOE98011 0 - 16318 17404 0 1 1086, 0, +contig12 17393 18788 KOE98012 0 - 17393 18788 0 1 1395, 0, +contig12 18784 20293 KOE98013 0 - 18784 20293 0 1 1509, 0, +contig12 20289 22134 KOE98014 0 - 20289 22134 0 1 1845, 0, +contig12 22130 22394 KOE98015 0 - 22130 22394 0 1 264, 0, +contig12 22390 23359 KOE98016 0 - 22390 23359 0 1 969, 0, +contig12 23373 23820 KOE98017 0 - 23373 23820 0 1 447, 0, +contig12 24143 24896 KOE98018 0 + 24143 24896 0 1 753, 0, +contig12 24997 25477 KOE98019 0 + 24997 25477 0 1 480, 0, +contig12 26052 26871 KOE98020 0 - 26052 26871 0 1 819, 0, +contig12 28636 29032 KOE98021 0 + 28636 29032 0 1 396, 0, +contig12 29142 29787 KOE98022 0 + 29142 29787 0 1 645, 0, +contig12 29783 31169 KOE98023 0 + 29783 31169 0 1 1386, 0, +contig12 31331 34265 KOE98024 0 - 31331 34265 0 1 2934, 0, +contig12 34663 35233 KOE98025 0 - 34663 35233 0 1 570, 0, +contig12 35475 36576 KOE98026 0 - 35475 36576 0 1 1101, 0, +contig12 37729 38239 KOE98027 0 - 37729 38239 0 1 510, 0, +contig12 38271 40812 KOE98028 0 - 38271 40812 0 1 2541, 0, +contig12 41224 41743 KOE98029 0 + 41224 41743 0 1 519, 0, +contig12 41801 42524 KOE98030 0 + 41801 42524 0 1 723, 0, +contig12 43034 43445 KOE98031 0 + 43034 43445 0 1 411, 0, +contig12 43647 46641 KOE98032 0 + 43647 46641 0 1 2994, 0, +contig12 46650 47616 KOE98033 0 - 46650 47616 0 1 966, 0, +contig12 47746 48226 KOE98034 0 - 47746 48226 0 1 480, 0, +contig12 48222 48690 KOE98035 0 - 48222 48690 0 1 468, 0, +contig12 48850 49951 KOE98036 0 - 48850 49951 0 1 1101, 0, +contig12 49947 50574 KOE98037 0 - 49947 50574 0 1 627, 0, +contig12 50982 51603 KOE98038 0 + 50982 51603 0 1 621, 0, +contig12 51755 52640 KOE98039 0 + 51755 52640 0 1 885, 0, +contig12 53929 54451 KOE98040 0 - 53929 54451 0 1 522, 0, +contig12 54600 55050 KOE98041 0 - 54600 55050 0 1 450, 0, +contig12 55077 55497 KOE98042 0 - 55077 55497 0 1 420, 0, +contig12 55564 56818 KOE98043 0 - 55564 56818 0 1 1254, 0, +contig12 57003 57477 KOE98044 0 - 57003 57477 0 1 474, 0, +contig12 57731 59396 KOE98045 0 + 57731 59396 0 1 1665, 0, +contig12 59520 60837 KOE98046 0 + 59520 60837 0 1 1317, 0, +contig12 60991 61957 KOE98047 0 + 60991 61957 0 1 966, 0, +contig12 61950 64770 KOE98048 0 - 61950 64770 0 1 2820, 0, +contig12 64766 66914 KOE98049 0 - 64766 66914 0 1 2148, 0, +contig12 66920 69122 KOE98050 0 - 66920 69122 0 1 2202, 0, +contig12 69118 70303 KOE98051 0 - 69118 70303 0 1 1185, 0, +contig12 70570 71605 KOE98052 0 - 70570 71605 0 1 1035, 0, +contig12 71595 74160 KOE98053 0 - 71595 74160 0 1 2565, 0, +contig12 74252 74981 KOE98054 0 - 74252 74981 0 1 729, 0, +contig12 75066 75606 KOE98055 0 - 75066 75606 0 1 540, 0, +contig12 76065 76431 KOE98056 0 + 76065 76431 0 1 366, 0, +contig12 76456 77635 KOE98057 0 - 76456 77635 0 1 1179, 0, +contig12 77742 78582 KOE98058 0 - 77742 78582 0 1 840, 0, +contig12 78578 79433 KOE98059 0 - 78578 79433 0 1 855, 0, +contig12 79765 81967 KOE98060 0 - 79765 81967 0 1 2202, 0, +contig12 81976 82771 KOE98061 0 - 81976 82771 0 1 795, 0, +contig12 83448 84594 KOE98062 0 - 83448 84594 0 1 1146, 0, +contig12 84590 85454 KOE98063 0 - 84590 85454 0 1 864, 0, +contig12 85450 86083 KOE98064 0 - 85450 86083 0 1 633, 0, +contig12 86079 86499 KOE98065 0 - 86079 86499 0 1 420, 0, +contig12 86495 86990 KOE98066 0 - 86495 86990 0 1 495, 0, +contig12 86996 87440 KOE98067 0 - 86996 87440 0 1 444, 0, +contig12 87489 88710 KOE98068 0 - 87489 88710 0 1 1221, 0, +contig12 88734 90459 KOE98069 0 - 88734 90459 0 1 1725, 0, +contig12 90595 92449 KOE98070 0 - 90595 92449 0 1 1854, 0, +contig12 92606 99788 KOE98071 0 - 92606 99788 0 1 7182, 0, +contig12 100226 104147 KOE98072 0 - 100226 104147 0 1 3921, 0, +contig12 26952 28674 KOE98073 0 + 26952 28674 0 1 1722, 0, +contig12 36665 37004 KOE98074 0 - 36665 37004 0 1 339, 0, +contig12 52723 53809 KOE98075 0 - 52723 53809 0 1 1086, 0, +contig12 82760 83468 KOE98076 0 - 82760 83468 0 1 708, 0, +contig13 0 1093 KOE98077 0 - 0 1093 0 1 1093, 0, +contig15 415 2785 KOE98078 0 - 415 2785 0 1 2370, 0, +contig15 2926 3175 KOE98079 0 - 2926 3175 0 1 249, 0, +contig15 3357 3852 KOE98080 0 + 3357 3852 0 1 495, 0, +contig15 3865 5074 KOE98081 0 + 3865 5074 0 1 1209, 0, +contig15 5200 5683 KOE98082 0 + 5200 5683 0 1 483, 0, +contig15 5766 6201 KOE98083 0 - 5766 6201 0 1 435, 0, +contig15 6352 6643 KOE98084 0 + 6352 6643 0 1 291, 0, +contig15 6642 7302 KOE98085 0 + 6642 7302 0 1 660, 0, +contig15 7298 8618 KOE98086 0 + 7298 8618 0 1 1320, 0, +contig15 8706 9027 KOE98087 0 - 8706 9027 0 1 321, 0, +contig15 9063 10953 KOE98088 0 - 9063 10953 0 1 1890, 0, +contig15 11144 11999 KOE98089 0 + 11144 11999 0 1 855, 0, +contig15 13463 14123 KOE98090 0 + 13463 14123 0 1 660, 0, +contig15 14248 14587 KOE98091 0 - 14248 14587 0 1 339, 0, +contig15 14723 14975 KOE98092 0 + 14723 14975 0 1 252, 0, +contig15 15100 15535 KOE98093 0 + 15100 15535 0 1 435, 0, +contig15 16106 16709 KOE98094 0 - 16106 16709 0 1 603, 0, +contig15 17358 17721 KOE98095 0 + 17358 17721 0 1 363, 0, +contig15 17766 18255 KOE98096 0 + 17766 18255 0 1 489, 0, +contig15 18320 19226 KOE98097 0 - 18320 19226 0 1 906, 0, +contig15 19672 21178 KOE98098 0 + 19672 21178 0 1 1506, 0, +contig15 21185 21419 KOE98099 0 - 21185 21419 0 1 234, 0, +contig15 21506 21896 KOE98100 0 - 21506 21896 0 1 390, 0, +contig15 21991 24310 KOE98101 0 - 21991 24310 0 1 2319, 0, +contig15 24697 25531 KOE98102 0 - 24697 25531 0 1 834, 0, +contig15 25681 26344 KOE98103 0 + 25681 26344 0 1 663, 0, +contig15 26434 27745 KOE98104 0 - 26434 27745 0 1 1311, 0, +contig15 27737 28178 KOE98105 0 - 27737 28178 0 1 441, 0, +contig15 28507 30274 KOE98106 0 + 28507 30274 0 1 1767, 0, +contig15 30273 30867 KOE98107 0 + 30273 30867 0 1 594, 0, +contig15 31031 31703 KOE98108 0 - 31031 31703 0 1 672, 0, +contig15 31846 32179 KOE98109 0 - 31846 32179 0 1 333, 0, +contig15 32812 34789 KOE98110 0 - 32812 34789 0 1 1977, 0, +contig15 34794 35700 KOE98111 0 - 34794 35700 0 1 906, 0, +contig15 35883 37299 KOE98112 0 + 35883 37299 0 1 1416, 0, +contig15 37632 38232 KOE98113 0 + 37632 38232 0 1 600, 0, +contig15 38241 39756 KOE98114 0 + 38241 39756 0 1 1515, 0, +contig15 39978 41280 KOE98115 0 - 39978 41280 0 1 1302, 0, +contig15 41279 43637 KOE98116 0 - 41279 43637 0 1 2358, 0, +contig15 43881 44709 KOE98117 0 + 43881 44709 0 1 828, 0, +contig15 44722 45802 KOE98118 0 + 44722 45802 0 1 1080, 0, +contig15 45856 46528 KOE98119 0 + 45856 46528 0 1 672, 0, +contig15 46529 47933 KOE98120 0 - 46529 47933 0 1 1404, 0, +contig15 47935 49774 KOE98121 0 - 47935 49774 0 1 1839, 0, +contig15 49847 50360 KOE98122 0 - 49847 50360 0 1 513, 0, +contig15 50442 51069 KOE98123 0 + 50442 51069 0 1 627, 0, +contig15 51558 52950 KOE98124 0 - 51558 52950 0 1 1392, 0, +contig15 53170 54064 KOE98125 0 - 53170 54064 0 1 894, 0, +contig15 54797 55217 KOE98126 0 - 54797 55217 0 1 420, 0, +contig15 56795 59771 KOE98127 0 - 56795 59771 0 1 2976, 0, +contig15 59904 63264 KOE98128 0 - 59904 63264 0 1 3360, 0, +contig15 63586 64741 KOE98129 0 + 63586 64741 0 1 1155, 0, +contig15 64733 65672 KOE98130 0 + 64733 65672 0 1 939, 0, +contig15 65689 67024 KOE98131 0 + 65689 67024 0 1 1335, 0, +contig15 67830 68946 KOE98132 0 + 67830 68946 0 1 1116, 0, +contig15 69138 70917 KOE98133 0 + 69138 70917 0 1 1779, 0, +contig15 70969 71440 KOE98134 0 - 70969 71440 0 1 471, 0, +contig15 71436 71988 KOE98135 0 - 71436 71988 0 1 552, 0, +contig15 72046 72736 KOE98136 0 - 72046 72736 0 1 690, 0, +contig15 72831 74001 KOE98137 0 - 72831 74001 0 1 1170, 0, +contig15 74148 75474 KOE98138 0 - 74148 75474 0 1 1326, 0, +contig15 75677 76721 KOE98139 0 + 75677 76721 0 1 1044, 0, +contig15 76788 78012 KOE98140 0 + 76788 78012 0 1 1224, 0, +contig15 78029 78809 KOE98141 0 + 78029 78809 0 1 780, 0, +contig15 78838 79618 KOE98142 0 + 78838 79618 0 1 780, 0, +contig15 79630 80515 KOE98143 0 + 79630 80515 0 1 885, 0, +contig15 81257 82220 KOE98144 0 - 81257 82220 0 1 963, 0, +contig15 82379 82865 KOE98145 0 + 82379 82865 0 1 486, 0, +contig15 83412 85302 KOE98146 0 + 83412 85302 0 1 1890, 0, +contig15 85452 86868 KOE98147 0 - 85452 86868 0 1 1416, 0, +contig15 86864 90014 KOE98148 0 - 86864 90014 0 1 3150, 0, +contig15 90026 91223 KOE98149 0 - 90026 91223 0 1 1197, 0, +contig15 91340 92744 KOE98150 0 + 91340 92744 0 1 1404, 0, +contig15 92740 93430 KOE98151 0 + 92740 93430 0 1 690, 0, +contig15 93579 94401 KOE98152 0 + 93579 94401 0 1 822, 0, +contig15 94565 95096 KOE98153 0 + 94565 95096 0 1 531, 0, +contig15 95219 95909 KOE98154 0 + 95219 95909 0 1 690, 0, +contig15 95905 96898 KOE98155 0 + 95905 96898 0 1 993, 0, +contig15 96887 98510 KOE98156 0 + 96887 98510 0 1 1623, 0, +contig15 98506 99691 KOE98157 0 + 98506 99691 0 1 1185, 0, +contig15 99687 100674 KOE98158 0 + 99687 100674 0 1 987, 0, +contig15 100670 101969 KOE98159 0 + 100670 101969 0 1 1299, 0, +contig15 102073 102694 KOE98160 0 - 102073 102694 0 1 621, 0, +contig15 102693 103872 KOE98161 0 - 102693 103872 0 1 1179, 0, +contig15 103879 104452 KOE98162 0 - 103879 104452 0 1 573, 0, +contig15 104544 104856 KOE98163 0 - 104544 104856 0 1 312, 0, +contig15 104918 106757 KOE98164 0 + 104918 106757 0 1 1839, 0, +contig15 107546 109649 KOE98165 0 - 107546 109649 0 1 2103, 0, +contig15 109816 110170 KOE98166 0 - 109816 110170 0 1 354, 0, +contig15 110173 111019 KOE98167 0 - 110173 111019 0 1 846, 0, +contig15 111067 111940 KOE98168 0 + 111067 111940 0 1 873, 0, +contig15 111995 112265 KOE98169 0 - 111995 112265 0 1 270, 0, +contig15 112297 113287 KOE98170 0 - 112297 113287 0 1 990, 0, +contig15 113306 114224 KOE98171 0 - 113306 114224 0 1 918, 0, +contig15 114345 114594 KOE98172 0 - 114345 114594 0 1 249, 0, +contig15 114778 115237 KOE98173 0 + 114778 115237 0 1 459, 0, +contig15 115321 117124 KOE98174 0 - 115321 117124 0 1 1803, 0, +contig15 117191 117707 KOE98175 0 - 117191 117707 0 1 516, 0, +contig15 117732 119958 KOE98176 0 - 117732 119958 0 1 2226, 0, +contig15 120112 120802 KOE98177 0 - 120112 120802 0 1 690, 0, +contig15 120912 121554 KOE98178 0 + 120912 121554 0 1 642, 0, +contig15 121754 122756 KOE98179 0 + 121754 122756 0 1 1002, 0, +contig15 122840 123095 KOE98180 0 - 122840 123095 0 1 255, 0, +contig15 123172 123958 KOE98181 0 + 123172 123958 0 1 786, 0, +contig15 124025 124454 KOE98182 0 + 124025 124454 0 1 429, 0, +contig15 124526 125711 KOE98183 0 - 124526 125711 0 1 1185, 0, +contig15 125707 126454 KOE98184 0 - 125707 126454 0 1 747, 0, +contig15 126450 127977 KOE98185 0 - 126450 127977 0 1 1527, 0, +contig15 128045 129248 KOE98186 0 - 128045 129248 0 1 1203, 0, +contig15 129402 129888 KOE98187 0 + 129402 129888 0 1 486, 0, +contig15 130121 131291 KOE98188 0 + 130121 131291 0 1 1170, 0, +contig15 131472 132633 KOE98189 0 + 131472 132633 0 1 1161, 0, +contig15 132707 133418 KOE98190 0 - 132707 133418 0 1 711, 0, +contig15 133541 134510 KOE98191 0 + 133541 134510 0 1 969, 0, +contig15 134506 135298 KOE98192 0 + 134506 135298 0 1 792, 0, +contig15 135638 136406 KOE98193 0 + 135638 136406 0 1 768, 0, +contig15 136593 137532 KOE98194 0 + 136593 137532 0 1 939, 0, +contig15 137528 138455 KOE98195 0 + 137528 138455 0 1 927, 0, +contig15 139398 141903 KOE98196 0 + 139398 141903 0 1 2505, 0, +contig15 142047 142422 KOE98197 0 + 142047 142422 0 1 375, 0, +contig15 142482 143022 KOE98198 0 - 142482 143022 0 1 540, 0, +contig15 143110 143371 KOE98199 0 - 143110 143371 0 1 261, 0, +contig15 143474 144332 KOE98200 0 - 143474 144332 0 1 858, 0, +contig15 144501 145458 KOE98201 0 + 144501 145458 0 1 957, 0, +contig15 146534 147659 KOE98202 0 + 146534 147659 0 1 1125, 0, +contig15 147716 148937 KOE98203 0 + 147716 148937 0 1 1221, 0, +contig15 148978 149884 KOE98204 0 - 148978 149884 0 1 906, 0, +contig15 149873 150329 KOE98205 0 - 149873 150329 0 1 456, 0, +contig15 150512 152633 KOE98206 0 + 150512 152633 0 1 2121, 0, +contig15 152724 153627 KOE98207 0 - 152724 153627 0 1 903, 0, +contig15 153732 154947 KOE98208 0 + 153732 154947 0 1 1215, 0, +contig15 155032 155842 KOE98209 0 + 155032 155842 0 1 810, 0, +contig15 155915 156617 KOE98210 0 - 155915 156617 0 1 702, 0, +contig15 156715 157096 KOE98211 0 + 156715 157096 0 1 381, 0, +contig15 157169 159890 KOE98212 0 - 157169 159890 0 1 2721, 0, +contig15 160023 161394 KOE98213 0 - 160023 161394 0 1 1371, 0, +contig15 161740 163519 KOE98214 0 + 161740 163519 0 1 1779, 0, +contig15 12122 13028 KOE98215 0 - 12122 13028 0 1 906, 0, +contig15 32180 32792 KOE98216 0 - 32180 32792 0 1 612, 0, +contig15 37372 37633 KOE98217 0 + 37372 37633 0 1 261, 0, +contig15 55374 56730 KOE98218 0 - 55374 56730 0 1 1356, 0, +contig15 67057 67834 KOE98219 0 + 67057 67834 0 1 777, 0, +contig15 80628 81273 KOE98220 0 - 80628 81273 0 1 645, 0, +contig15 106895 107507 KOE98221 0 + 106895 107507 0 1 612, 0, +contig15 138533 139331 KOE98222 0 - 138533 139331 0 1 798, 0, +contig16 17 3356 KOE98223 0 - 17 3356 0 1 3339, 0, +contig16 3348 3609 KOE98224 0 - 3348 3609 0 1 261, 0, +contig16 3769 4210 KOE98225 0 - 3769 4210 0 1 441, 0, +contig16 4272 5511 KOE98226 0 - 4272 5511 0 1 1239, 0, +contig16 5510 6242 KOE98227 0 - 5510 6242 0 1 732, 0, +contig16 6238 6694 KOE98228 0 - 6238 6694 0 1 456, 0, +contig16 6690 7875 KOE98229 0 - 6690 7875 0 1 1185, 0, +contig16 7871 8429 KOE98230 0 - 7871 8429 0 1 558, 0, +contig16 8416 9667 KOE98231 0 - 8416 9667 0 1 1251, 0, +contig16 9720 12075 KOE98232 0 - 9720 12075 0 1 2355, 0, +contig16 12067 12697 KOE98233 0 - 12067 12697 0 1 630, 0, +contig16 12693 13125 KOE98234 0 - 12693 13125 0 1 432, 0, +contig16 13111 14662 KOE98235 0 - 13111 14662 0 1 1551, 0, +contig16 14651 15593 KOE98236 0 - 14651 15593 0 1 942, 0, +contig16 15594 16365 KOE98237 0 - 15594 16365 0 1 771, 0, +contig16 16354 18040 KOE98238 0 - 16354 18040 0 1 1686, 0, +contig16 18032 18584 KOE98239 0 - 18032 18584 0 1 552, 0, +contig16 18606 18864 KOE98240 0 - 18606 18864 0 1 258, 0, +contig16 18881 19139 KOE98241 0 - 18881 19139 0 1 258, 0, +contig16 19125 19923 KOE98242 0 - 19125 19923 0 1 798, 0, +contig16 19915 20659 KOE98243 0 - 19915 20659 0 1 744, 0, +contig16 20876 21890 KOE98244 0 - 20876 21890 0 1 1014, 0, +contig16 21891 23289 KOE98245 0 - 21891 23289 0 1 1398, 0, +contig16 23539 23755 KOE98246 0 - 23539 23755 0 1 216, 0, +contig16 23751 24405 KOE98247 0 - 23751 24405 0 1 654, 0, +contig16 24442 24772 KOE98248 0 - 24442 24772 0 1 330, 0, +contig16 24939 27309 KOE98249 0 + 24939 27309 0 1 2370, 0, +contig16 27305 27725 KOE98250 0 + 27305 27725 0 1 420, 0, +contig16 27755 28316 KOE98251 0 + 27755 28316 0 1 561, 0, +contig16 28348 29467 KOE98252 0 + 28348 29467 0 1 1119, 0, +contig16 29504 31121 KOE98253 0 + 29504 31121 0 1 1617, 0, +contig16 31175 32072 KOE98254 0 + 31175 32072 0 1 897, 0, +contig16 32167 33688 KOE98255 0 + 32167 33688 0 1 1521, 0, +contig16 33766 34246 KOE98256 0 - 33766 34246 0 1 480, 0, +contig16 34574 37349 KOE98257 0 - 34574 37349 0 1 2775, 0, +contig16 37447 37732 KOE98258 0 + 37447 37732 0 1 285, 0, +contig16 37865 38312 KOE98259 0 - 37865 38312 0 1 447, 0, +contig16 38725 39280 KOE98260 0 - 38725 39280 0 1 555, 0, +contig16 39386 39713 KOE98261 0 - 39386 39713 0 1 327, 0, +contig16 42020 43445 KOE98262 0 - 42020 43445 0 1 1425, 0, +contig16 43490 44909 KOE98263 0 - 43490 44909 0 1 1419, 0, +contig16 45183 45348 KOE98264 0 - 45183 45348 0 1 165, 0, +contig16 45361 45598 KOE98265 0 - 45361 45598 0 1 237, 0, +contig16 45885 47100 KOE98266 0 + 45885 47100 0 1 1215, 0, +contig16 47113 47623 KOE98267 0 - 47113 47623 0 1 510, 0, +contig16 47789 48683 KOE98268 0 - 47789 48683 0 1 894, 0, +contig16 48791 49181 KOE98269 0 + 48791 49181 0 1 390, 0, +contig16 49408 49741 KOE98270 0 + 49408 49741 0 1 333, 0, +contig16 49797 51051 KOE98271 0 + 49797 51051 0 1 1254, 0, +contig16 51047 52253 KOE98272 0 + 51047 52253 0 1 1206, 0, +contig16 52263 55473 KOE98273 0 + 52263 55473 0 1 3210, 0, +contig16 55573 57346 KOE98274 0 - 55573 57346 0 1 1773, 0, +contig16 57509 57857 KOE98275 0 - 57509 57857 0 1 348, 0, +contig16 57856 58579 KOE98276 0 - 57856 58579 0 1 723, 0, +contig16 58668 59634 KOE98277 0 - 58668 59634 0 1 966, 0, +contig16 59685 60417 KOE98278 0 - 59685 60417 0 1 732, 0, +contig16 60543 61467 KOE98279 0 - 60543 61467 0 1 924, 0, +contig16 61466 62264 KOE98280 0 - 61466 62264 0 1 798, 0, +contig16 62376 63015 KOE98281 0 - 62376 63015 0 1 639, 0, +contig16 63054 63654 KOE98282 0 - 63054 63654 0 1 600, 0, +contig16 63738 63990 KOE98283 0 + 63738 63990 0 1 252, 0, +contig16 64062 64830 KOE98284 0 - 64062 64830 0 1 768, 0, +contig16 65000 66410 KOE98285 0 - 65000 66410 0 1 1410, 0, +contig16 66685 68347 KOE98286 0 - 66685 68347 0 1 1662, 0, +contig16 68457 69885 KOE98287 0 - 68457 69885 0 1 1428, 0, +contig16 70130 72074 KOE98288 0 + 70130 72074 0 1 1944, 0, +contig16 72195 72861 KOE98289 0 + 72195 72861 0 1 666, 0, +contig16 72963 73419 KOE98290 0 - 72963 73419 0 1 456, 0, +contig16 73565 74141 KOE98291 0 - 73565 74141 0 1 576, 0, +contig16 74459 77918 KOE98292 0 - 74459 77918 0 1 3459, 0, +contig16 78053 80201 KOE98293 0 - 78053 80201 0 1 2148, 0, +contig16 80380 84241 KOE98294 0 - 80380 84241 0 1 3861, 0, +contig16 86290 88366 KOE98295 0 - 86290 88366 0 1 2076, 0, +contig16 88453 89365 KOE98296 0 - 88453 89365 0 1 912, 0, +contig16 89448 91284 KOE98297 0 + 89448 91284 0 1 1836, 0, +contig16 91255 92002 KOE98298 0 + 91255 92002 0 1 747, 0, +contig16 92052 92964 KOE98299 0 + 92052 92964 0 1 912, 0, +contig16 93049 93799 KOE98300 0 - 93049 93799 0 1 750, 0, +contig16 93795 94254 KOE98301 0 - 93795 94254 0 1 459, 0, +contig16 94269 94497 KOE98302 0 - 94269 94497 0 1 228, 0, +contig16 94572 95466 KOE98303 0 - 94572 95466 0 1 894, 0, +contig16 95631 96594 KOE98304 0 + 95631 96594 0 1 963, 0, +contig16 96590 97445 KOE98305 0 + 96590 97445 0 1 855, 0, +contig16 97735 99841 KOE98306 0 + 97735 99841 0 1 2106, 0, +contig16 39817 42010 KOE98307 0 - 39817 42010 0 1 2193, 0, +contig16 84237 86022 KOE98308 0 - 84237 86022 0 1 1785, 0, +contig17 159 675 KOE98309 0 + 159 675 0 1 516, 0, +contig17 685 1690 KOE98310 0 + 685 1690 0 1 1005, 0, +contig17 1686 2022 KOE98311 0 + 1686 2022 0 1 336, 0, +contig17 2439 3219 KOE98312 0 + 2439 3219 0 1 780, 0, +contig17 3270 3540 KOE98313 0 + 3270 3540 0 1 270, 0, +contig17 3553 4345 KOE98314 0 + 3553 4345 0 1 792, 0, +contig17 4620 6756 KOE98315 0 + 4620 6756 0 1 2136, 0, +contig17 6914 8045 KOE98316 0 + 6914 8045 0 1 1131, 0, +contig17 8041 10150 KOE98317 0 + 8041 10150 0 1 2109, 0, +contig17 10295 11924 KOE98318 0 + 10295 11924 0 1 1629, 0, +contig17 11910 12798 KOE98319 0 + 11910 12798 0 1 888, 0, +contig17 12794 13538 KOE98320 0 + 12794 13538 0 1 744, 0, +contig17 13595 13988 KOE98321 0 + 13595 13988 0 1 393, 0, +contig17 13987 14593 KOE98322 0 + 13987 14593 0 1 606, 0, +contig17 14595 16428 KOE98323 0 + 14595 16428 0 1 1833, 0, +contig17 16529 17270 KOE98324 0 + 16529 17270 0 1 741, 0, +contig17 17271 18288 KOE98325 0 + 17271 18288 0 1 1017, 0, +contig17 18292 19075 KOE98326 0 + 18292 19075 0 1 783, 0, +contig17 19071 20277 KOE98327 0 + 19071 20277 0 1 1206, 0, +contig17 20389 20698 KOE98328 0 + 20389 20698 0 1 309, 0, +contig17 20694 21060 KOE98329 0 + 20694 21060 0 1 366, 0, +contig17 21105 23097 KOE98330 0 + 21105 23097 0 1 1992, 0, +contig17 23483 25733 KOE98331 0 + 23483 25733 0 1 2250, 0, +contig17 26797 27289 KOE98332 0 + 26797 27289 0 1 492, 0, +contig17 27425 27809 KOE98333 0 + 27425 27809 0 1 384, 0, +contig17 27910 29840 KOE98334 0 + 27910 29840 0 1 1930, 0, +contig17 2039 2438 KOE98335 0 + 2039 2438 0 1 399, 0, +contig17 25890 26664 KOE98336 0 + 25890 26664 0 1 774, 0, +contig18 0 448 KOE98337 0 + 1 448 0 1 448, 0, +contig19 9 1828 KOE98338 0 + 9 1828 0 1 1819, 0, +contig20 0 457 KOE98339 0 + 1 457 0 1 457, 0, +contig20 492 1362 KOE98340 0 + 492 1362 0 1 870, 0, +contig20 1358 1955 KOE98341 0 + 1358 1955 0 1 597, 0, +contig20 3185 5777 KOE98342 0 - 3185 5777 0 1 2592, 0, +contig20 5817 6216 KOE98343 0 - 5817 6216 0 1 399, 0, +contig20 6222 6447 KOE98344 0 - 6222 6447 0 1 225, 0, +contig20 6748 9502 KOE98345 0 + 6748 9502 0 1 2754, 0, +contig20 9688 11239 KOE98346 0 - 9688 11239 0 1 1551, 0, +contig20 11409 12000 KOE98347 0 + 11409 12000 0 1 591, 0, +contig20 12040 13513 KOE98348 0 + 12040 13513 0 1 1473, 0, +contig20 13614 15297 KOE98349 0 + 13614 15297 0 1 1683, 0, +contig20 15468 17145 KOE98350 0 + 15468 17145 0 1 1677, 0, +contig20 17344 18214 KOE98351 0 + 17344 18214 0 1 870, 0, +contig20 20951 22091 KOE98352 0 - 20951 22091 0 1 1140, 0, +contig20 22296 23808 KOE98353 0 - 22296 23808 0 1 1512, 0, +contig20 23972 25613 KOE98354 0 - 23972 25613 0 1 1641, 0, +contig20 25676 27062 KOE98355 0 - 25676 27062 0 1 1386, 0, +contig20 27613 28396 KOE98356 0 - 27613 28396 0 1 783, 0, +contig20 29745 30606 KOE98357 0 - 29745 30606 0 1 861, 0, +contig20 30781 31984 KOE98358 0 + 30781 31984 0 1 1203, 0, +contig20 31993 32980 KOE98359 0 + 31993 32980 0 1 987, 0, +contig20 33041 35951 KOE98360 0 - 33041 35951 0 1 2910, 0, +contig20 37975 39019 KOE98361 0 + 37975 39019 0 1 1044, 0, +contig20 39019 40090 KOE98362 0 + 39019 40090 0 1 1071, 0, +contig20 40128 41049 KOE98363 0 - 40128 41049 0 1 921, 0, +contig20 41053 41530 KOE98364 0 - 41053 41530 0 1 477, 0, +contig20 41526 44769 KOE98365 0 - 41526 44769 0 1 3243, 0, +contig20 44917 46045 KOE98366 0 - 44917 46045 0 1 1128, 0, +contig20 46333 47014 KOE98367 0 - 46333 47014 0 1 681, 0, +contig20 47134 47914 KOE98368 0 + 47134 47914 0 1 780, 0, +contig20 47918 48314 KOE98369 0 + 47918 48314 0 1 396, 0, +contig20 48369 48951 KOE98370 0 + 48369 48951 0 1 582, 0, +contig20 49067 49529 KOE98371 0 + 49067 49529 0 1 462, 0, +contig20 49608 49863 KOE98372 0 - 49608 49863 0 1 255, 0, +contig20 49862 51728 KOE98373 0 - 49862 51728 0 1 1866, 0, +contig20 51724 51979 KOE98374 0 - 51724 51979 0 1 255, 0, +contig20 52098 52887 KOE98375 0 + 52098 52887 0 1 789, 0, +contig20 52889 53291 KOE98376 0 + 52889 53291 0 1 402, 0, +contig20 53287 54184 KOE98377 0 + 53287 54184 0 1 897, 0, +contig20 54284 55055 KOE98378 0 + 54284 55055 0 1 771, 0, +contig20 55103 55670 KOE98379 0 + 55103 55670 0 1 567, 0, +contig20 55834 56527 KOE98380 0 - 55834 56527 0 1 693, 0, +contig20 56610 57003 KOE98381 0 - 56610 57003 0 1 393, 0, +contig20 56983 60133 KOE98382 0 - 56983 60133 0 1 3150, 0, +contig20 60169 61327 KOE98383 0 - 60169 61327 0 1 1158, 0, +contig20 61423 62173 KOE98384 0 + 61423 62173 0 1 750, 0, +contig20 62172 63249 KOE98385 0 + 62172 63249 0 1 1077, 0, +contig20 63226 64987 KOE98386 0 - 63226 64987 0 1 1761, 0, +contig20 65132 65432 KOE98387 0 - 65132 65432 0 1 300, 0, +contig20 65494 66883 KOE98388 0 - 65494 66883 0 1 1389, 0, +contig20 67052 68294 KOE98389 0 + 67052 68294 0 1 1242, 0, +contig20 68388 68958 KOE98390 0 - 68388 68958 0 1 570, 0, +contig20 69136 70612 KOE98391 0 + 69136 70612 0 1 1476, 0, +contig20 70694 72122 KOE98392 0 + 70694 72122 0 1 1428, 0, +contig20 72694 73336 KOE98393 0 + 72694 73336 0 1 642, 0, +contig20 73428 73986 KOE98394 0 + 73428 73986 0 1 558, 0, +contig20 73989 74685 KOE98395 0 + 73989 74685 0 1 696, 0, +contig20 74800 77419 KOE98396 0 - 74800 77419 0 1 2619, 0, +contig20 77520 78747 KOE98397 0 - 77520 78747 0 1 1227, 0, +contig20 78743 79739 KOE98398 0 - 78743 79739 0 1 996, 0, +contig20 79746 81060 KOE98399 0 - 79746 81060 0 1 1314, 0, +contig20 81120 82170 KOE98400 0 - 81120 82170 0 1 1050, 0, +contig20 82266 84732 KOE98401 0 - 82266 84732 0 1 2466, 0, +contig20 85764 88842 KOE98402 0 + 85764 88842 0 1 3078, 0, +contig20 89041 89236 KOE98403 0 + 89041 89236 0 1 195, 0, +contig20 89313 89769 KOE98404 0 - 89313 89769 0 1 456, 0, +contig20 89780 92282 KOE98405 0 - 89780 92282 0 1 2502, 0, +contig20 92410 95368 KOE98406 0 - 92410 95368 0 1 2958, 0, +contig20 95665 96208 KOE98407 0 - 95665 96208 0 1 543, 0, +contig20 96420 97152 KOE98408 0 - 96420 97152 0 1 732, 0, +contig20 97148 98147 KOE98409 0 - 97148 98147 0 1 999, 0, +contig20 98198 99221 KOE98410 0 - 98198 99221 0 1 1023, 0, +contig20 99305 99590 KOE98411 0 - 99305 99590 0 1 285, 0, +contig20 99624 101214 KOE98412 0 - 99624 101214 0 1 1590, 0, +contig20 101361 101982 KOE98413 0 - 101361 101982 0 1 621, 0, +contig20 101971 102748 KOE98414 0 - 101971 102748 0 1 777, 0, +contig20 102741 103476 KOE98415 0 - 102741 103476 0 1 735, 0, +contig20 103472 104075 KOE98416 0 - 103472 104075 0 1 603, 0, +contig20 104071 105145 KOE98417 0 - 104071 105145 0 1 1074, 0, +contig20 105141 106236 KOE98418 0 - 105141 106236 0 1 1095, 0, +contig20 106232 107528 KOE98419 0 - 106232 107528 0 1 1296, 0, +contig20 107524 108436 KOE98420 0 - 107524 108436 0 1 912, 0, +contig20 108470 108797 KOE98421 0 - 108470 108797 0 1 327, 0, +contig20 109220 110615 KOE98422 0 - 109220 110615 0 1 1395, 0, +contig20 110743 111496 KOE98423 0 + 110743 111496 0 1 753, 0, +contig20 111625 112915 KOE98424 0 - 111625 112915 0 1 1290, 0, +contig20 112944 113859 KOE98425 0 - 112944 113859 0 1 915, 0, +contig20 113855 116360 KOE98426 0 - 113855 116360 0 1 2505, 0, +contig20 116717 117668 KOE98427 0 - 116717 117668 0 1 951, 0, +contig20 117834 118530 KOE98428 0 - 117834 118530 0 1 696, 0, +contig20 118611 119391 KOE98429 0 + 118611 119391 0 1 780, 0, +contig20 119387 120440 KOE98430 0 - 119387 120440 0 1 1053, 0, +contig20 120507 120921 KOE98431 0 - 120507 120921 0 1 414, 0, +contig20 120917 121355 KOE98432 0 - 120917 121355 0 1 438, 0, +contig20 121441 121762 KOE98433 0 + 121441 121762 0 1 321, 0, +contig20 121765 122194 KOE98434 0 - 121765 122194 0 1 429, 0, +contig20 122276 123410 KOE98435 0 - 122276 123410 0 1 1134, 0, +contig20 123406 123982 KOE98436 0 - 123406 123982 0 1 576, 0, +contig20 123981 124806 KOE98437 0 - 123981 124806 0 1 825, 0, +contig20 124802 127904 KOE98438 0 - 124802 127904 0 1 3102, 0, +contig20 129207 129567 KOE98439 0 + 129207 129567 0 1 360, 0, +contig20 129598 130165 KOE98440 0 - 129598 130165 0 1 567, 0, +contig20 130336 131167 KOE98441 0 + 130336 131167 0 1 831, 0, +contig20 131114 132008 KOE98442 0 - 131114 132008 0 1 894, 0, +contig20 132154 132712 KOE98443 0 + 132154 132712 0 1 558, 0, +contig20 132719 133184 KOE98444 0 - 132719 133184 0 1 465, 0, +contig20 133331 134222 KOE98445 0 + 133331 134222 0 1 891, 0, +contig20 135079 135634 KOE98446 0 + 135079 135634 0 1 555, 0, +contig20 1957 3025 KOE98447 0 + 1957 3025 0 1 1068, 0, +contig20 18226 20407 KOE98448 0 - 18226 20407 0 1 2181, 0, +contig20 28549 29458 KOE98449 0 - 28549 29458 0 1 909, 0, +contig20 36096 37854 KOE98450 0 - 36096 37854 0 1 1758, 0, +contig20 128081 129218 KOE98451 0 + 128081 129218 0 1 1137, 0, +contig20 134369 134876 KOE98452 0 - 134369 134876 0 1 507, 0, +contig21 198 1086 KOE98453 0 - 198 1086 0 1 888, 0, +contig21 1239 2139 KOE98454 0 - 1239 2139 0 1 900, 0, +contig21 2299 2692 KOE98455 0 - 2299 2692 0 1 393, 0, +contig21 2723 3188 KOE98456 0 - 2723 3188 0 1 465, 0, +contig21 3192 3936 KOE98457 0 - 3192 3936 0 1 744, 0, +contig21 4115 4733 KOE98458 0 + 4115 4733 0 1 618, 0, +contig21 4777 6664 KOE98459 0 + 4777 6664 0 1 1887, 0, +contig21 6665 8897 KOE98460 0 + 6665 8897 0 1 2232, 0, +contig21 8898 9369 KOE98461 0 - 8898 9369 0 1 471, 0, +contig21 9511 9721 KOE98462 0 - 9511 9721 0 1 210, 0, +contig21 9821 10025 KOE98463 0 - 9821 10025 0 1 204, 0, +contig21 10123 10747 KOE98464 0 - 10123 10747 0 1 624, 0, +contig21 11393 11786 KOE98465 0 - 11393 11786 0 1 393, 0, +contig21 11788 12217 KOE98466 0 - 11788 12217 0 1 429, 0, +contig21 12414 13059 KOE98467 0 + 12414 13059 0 1 645, 0, +contig21 13144 13465 KOE98468 0 - 13144 13465 0 1 321, 0, +contig21 13632 14427 KOE98469 0 - 13632 14427 0 1 795, 0, +contig21 15328 16090 KOE98470 0 + 15328 16090 0 1 762, 0, +contig21 16187 16904 KOE98471 0 - 16187 16904 0 1 717, 0, +contig21 16900 17695 KOE98472 0 - 16900 17695 0 1 795, 0, +contig21 17769 18801 KOE98473 0 - 17769 18801 0 1 1032, 0, +contig21 18817 19405 KOE98474 0 - 18817 19405 0 1 588, 0, +contig21 19407 20187 KOE98475 0 - 19407 20187 0 1 780, 0, +contig21 20254 21730 KOE98476 0 - 20254 21730 0 1 1476, 0, +contig21 21908 24266 KOE98477 0 - 21908 24266 0 1 2358, 0, +contig21 24419 25235 KOE98478 0 + 24419 25235 0 1 816, 0, +contig21 25250 26186 KOE98479 0 - 25250 26186 0 1 936, 0, +contig21 26962 27640 KOE98480 0 - 26962 27640 0 1 678, 0, +contig21 27697 28027 KOE98481 0 - 27697 28027 0 1 330, 0, +contig21 28168 29095 KOE98482 0 + 28168 29095 0 1 927, 0, +contig21 29231 29717 KOE98483 0 + 29231 29717 0 1 486, 0, +contig21 30049 32881 KOE98484 0 + 30049 32881 0 1 2832, 0, +contig21 32880 33273 KOE98485 0 + 32880 33273 0 1 393, 0, +contig21 33269 34805 KOE98486 0 + 33269 34805 0 1 1536, 0, +contig21 34801 35308 KOE98487 0 + 34801 35308 0 1 507, 0, +contig21 35304 35589 KOE98488 0 + 35304 35589 0 1 285, 0, +contig21 35585 35975 KOE98489 0 + 35585 35975 0 1 390, 0, +contig21 36110 37076 KOE98490 0 - 36110 37076 0 1 966, 0, +contig21 37150 37807 KOE98491 0 - 37150 37807 0 1 657, 0, +contig21 37932 38469 KOE98492 0 + 37932 38469 0 1 537, 0, +contig21 38544 39852 KOE98493 0 - 38544 39852 0 1 1308, 0, +contig21 41196 41691 KOE98494 0 + 41196 41691 0 1 495, 0, +contig21 41772 42912 KOE98495 0 - 41772 42912 0 1 1140, 0, +contig21 43113 43719 KOE98496 0 - 43113 43719 0 1 606, 0, +contig21 43738 45238 KOE98497 0 - 43738 45238 0 1 1500, 0, +contig21 45419 46295 KOE98498 0 - 45419 46295 0 1 876, 0, +contig21 46630 47713 KOE98499 0 + 46630 47713 0 1 1083, 0, +contig21 47705 48773 KOE98500 0 + 47705 48773 0 1 1068, 0, +contig21 49124 50504 KOE98501 0 + 49124 50504 0 1 1380, 0, +contig21 50675 51062 KOE98502 0 - 50675 51062 0 1 387, 0, +contig21 51179 51887 KOE98503 0 - 51179 51887 0 1 708, 0, +contig21 52627 54166 KOE98504 0 + 52627 54166 0 1 1539, 0, +contig21 54261 55188 KOE98505 0 - 54261 55188 0 1 927, 0, +contig21 55350 57042 KOE98506 0 + 55350 57042 0 1 1692, 0, +contig21 59613 60528 KOE98507 0 - 59613 60528 0 1 915, 0, +contig21 14576 15266 KOE98508 0 + 14576 15266 0 1 690, 0, +contig21 26467 26950 KOE98509 0 - 26467 26950 0 1 483, 0, +contig21 39954 41025 KOE98510 0 - 39954 41025 0 1 1071, 0, +contig21 48774 49128 KOE98511 0 + 48774 49128 0 1 354, 0, +contig21 51886 52522 KOE98512 0 - 51886 52522 0 1 636, 0, +contig21 57285 59391 KOE98513 0 + 57285 59391 0 1 2106, 0, +contig22 464 2513 KOE98514 0 + 464 2513 0 1 2049, 0, +contig22 2522 3236 KOE98515 0 + 2522 3236 0 1 714, 0, +contig22 3808 4693 KOE98516 0 - 3808 4693 0 1 885, 0, +contig22 4692 5640 KOE98517 0 - 4692 5640 0 1 948, 0, +contig22 5880 6282 KOE98518 0 + 5880 6282 0 1 402, 0, +contig22 6300 6663 KOE98519 0 + 6300 6663 0 1 363, 0, +contig22 6662 7193 KOE98520 0 + 6662 7193 0 1 531, 0, +contig22 7234 9271 KOE98521 0 + 7234 9271 0 1 2037, 0, +contig22 9371 16064 KOE98522 0 + 9371 16064 0 1 6693, 0, +contig22 16050 17391 KOE98523 0 + 16050 17391 0 1 1341, 0, +contig22 17387 17852 KOE98524 0 + 17387 17852 0 1 465, 0, +contig22 17956 18694 KOE98525 0 - 17956 18694 0 1 738, 0, +contig22 18684 20076 KOE98526 0 - 18684 20076 0 1 1392, 0, +contig22 20153 20717 KOE98527 0 + 20153 20717 0 1 564, 0, +contig22 20713 21517 KOE98528 0 + 20713 21517 0 1 804, 0, +contig22 21530 22370 KOE98529 0 + 21530 22370 0 1 840, 0, +contig22 22366 22696 KOE98530 0 + 22366 22696 0 1 330, 0, +contig22 22856 23159 KOE98531 0 + 22856 23159 0 1 303, 0, +contig22 23225 24185 KOE98532 0 + 23225 24185 0 1 960, 0, +contig22 24186 24630 KOE98533 0 + 24186 24630 0 1 444, 0, +contig22 24774 25887 KOE98534 0 + 24774 25887 0 1 1113, 0, +contig22 25980 26376 KOE98535 0 + 25980 26376 0 1 396, 0, +contig22 27151 27658 KOE98536 0 + 27151 27658 0 1 507, 0, +contig22 27778 28672 KOE98537 0 - 27778 28672 0 1 894, 0, +contig22 28786 29545 KOE98538 0 + 28786 29545 0 1 759, 0, +contig22 29686 31084 KOE98539 0 - 29686 31084 0 1 1398, 0, +contig22 31370 32699 KOE98540 0 + 31370 32699 0 1 1329, 0, +contig22 32729 33080 KOE98541 0 + 32729 33080 0 1 351, 0, +contig22 33578 34046 KOE98542 0 - 33578 34046 0 1 468, 0, +contig22 34121 36599 KOE98543 0 - 34121 36599 0 1 2478, 0, +contig22 36595 37513 KOE98544 0 - 36595 37513 0 1 918, 0, +contig22 37654 38257 KOE98545 0 + 37654 38257 0 1 603, 0, +contig22 38394 41157 KOE98546 0 - 38394 41157 0 1 2763, 0, +contig22 41540 42389 KOE98547 0 - 41540 42389 0 1 849, 0, +contig22 42505 43399 KOE98548 0 - 42505 43399 0 1 894, 0, +contig22 43476 44226 KOE98549 0 + 43476 44226 0 1 750, 0, +contig22 44290 45310 KOE98550 0 + 44290 45310 0 1 1020, 0, +contig22 45269 45701 KOE98551 0 + 45269 45701 0 1 432, 0, +contig22 46302 48276 KOE98552 0 - 46302 48276 0 1 1974, 0, +contig22 48349 48988 KOE98553 0 - 48349 48988 0 1 639, 0, +contig22 49192 50797 KOE98554 0 - 49192 50797 0 1 1605, 0, +contig22 50863 51748 KOE98555 0 - 50863 51748 0 1 885, 0, +contig22 52092 53124 KOE98556 0 + 52092 53124 0 1 1032, 0, +contig22 53120 54356 KOE98557 0 + 53120 54356 0 1 1236, 0, +contig22 54352 55420 KOE98558 0 + 54352 55420 0 1 1068, 0, +contig22 55478 56474 KOE98559 0 - 55478 56474 0 1 996, 0, +contig22 56544 57927 KOE98560 0 - 56544 57927 0 1 1383, 0, +contig22 58027 58261 KOE98561 0 + 58027 58261 0 1 234, 0, +contig22 58363 58936 KOE98562 0 - 58363 58936 0 1 573, 0, +contig22 58939 59512 KOE98563 0 - 58939 59512 0 1 573, 0, +contig22 59522 60155 KOE98564 0 - 59522 60155 0 1 633, 0, +contig22 60321 63867 KOE98565 0 + 60321 63867 0 1 3546, 0, +contig22 63963 67491 KOE98566 0 + 63963 67491 0 1 3528, 0, +contig22 68093 69503 KOE98567 0 - 68093 69503 0 1 1410, 0, +contig22 69595 70678 KOE98568 0 - 69595 70678 0 1 1083, 0, +contig22 70704 70944 KOE98569 0 - 70704 70944 0 1 240, 0, +contig22 71064 72177 KOE98570 0 - 71064 72177 0 1 1113, 0, +contig22 72173 72716 KOE98571 0 - 72173 72716 0 1 543, 0, +contig22 72814 73018 KOE98572 0 + 72814 73018 0 1 204, 0, +contig22 73024 73852 KOE98573 0 - 73024 73852 0 1 828, 0, +contig22 73892 74492 KOE98574 0 + 73892 74492 0 1 600, 0, +contig22 74576 76160 KOE98575 0 - 74576 76160 0 1 1584, 0, +contig22 76314 77208 KOE98576 0 + 76314 77208 0 1 894, 0, +contig22 77244 78402 KOE98577 0 + 77244 78402 0 1 1158, 0, +contig22 78499 81118 KOE98578 0 + 78499 81118 0 1 2619, 0, +contig22 81218 81476 KOE98579 0 + 81218 81476 0 1 258, 0, +contig22 81462 81789 KOE98580 0 + 81462 81789 0 1 327, 0, +contig22 81812 82991 KOE98581 0 + 81812 82991 0 1 1179, 0, +contig22 83062 84523 KOE98582 0 + 83062 84523 0 1 1461, 0, +contig22 84680 89588 KOE98583 0 + 84680 89588 0 1 4908, 0, +contig22 89637 92019 KOE98584 0 + 89637 92019 0 1 2382, 0, +contig22 92173 92749 KOE98585 0 - 92173 92749 0 1 576, 0, +contig22 92778 93261 KOE98586 0 - 92778 93261 0 1 483, 0, +contig22 93522 94416 KOE98587 0 + 93522 94416 0 1 894, 0, +contig22 94964 95960 KOE98588 0 - 94964 95960 0 1 996, 0, +contig22 96113 97247 KOE98589 0 + 96113 97247 0 1 1134, 0, +contig22 97243 98107 KOE98590 0 + 97243 98107 0 1 864, 0, +contig22 98175 98361 KOE98591 0 + 98175 98361 0 1 186, 0, +contig22 98678 99971 KOE98592 0 + 98678 99971 0 1 1293, 0, +contig22 100098 100761 KOE98593 0 + 100098 100761 0 1 663, 0, +contig22 100696 101347 KOE98594 0 - 100696 101347 0 1 651, 0, +contig22 101351 102311 KOE98595 0 - 101351 102311 0 1 960, 0, +contig22 102546 104670 KOE98596 0 + 102546 104670 0 1 2124, 0, +contig22 104809 105304 KOE98597 0 - 104809 105304 0 1 495, 0, +contig22 105326 107417 KOE98598 0 - 105326 107417 0 1 2091, 0, +contig22 107531 108254 KOE98599 0 + 107531 108254 0 1 723, 0, +contig22 108336 109704 KOE98600 0 + 108336 109704 0 1 1368, 0, +contig22 109844 110255 KOE98601 0 + 109844 110255 0 1 411, 0, +contig22 110347 113215 KOE98602 0 - 110347 113215 0 1 2868, 0, +contig22 113681 114908 KOE98603 0 + 113681 114908 0 1 1227, 0, +contig22 115049 115946 KOE98604 0 + 115049 115946 0 1 897, 0, +contig22 116029 116422 KOE98605 0 + 116029 116422 0 1 393, 0, +contig22 116549 118514 KOE98606 0 - 116549 118514 0 1 1965, 0, +contig22 119093 120743 KOE98607 0 - 119093 120743 0 1 1650, 0, +contig22 120739 121507 KOE98608 0 - 120739 121507 0 1 768, 0, +contig22 121618 123322 KOE98609 0 - 121618 123322 0 1 1704, 0, +contig22 123452 124166 KOE98610 0 + 123452 124166 0 1 714, 0, +contig22 124152 125439 KOE98611 0 + 124152 125439 0 1 1287, 0, +contig22 125525 125915 KOE98612 0 - 125525 125915 0 1 390, 0, +contig22 126050 127301 KOE98613 0 + 126050 127301 0 1 1251, 0, +contig22 127803 128028 KOE98614 0 - 127803 128028 0 1 225, 0, +contig22 128027 130109 KOE98615 0 - 128027 130109 0 1 2082, 0, +contig22 130324 131176 KOE98616 0 + 130324 131176 0 1 852, 0, +contig22 131304 131763 KOE98617 0 - 131304 131763 0 1 459, 0, +contig22 131957 132677 KOE98618 0 - 131957 132677 0 1 720, 0, +contig22 134323 136387 KOE98619 0 - 134323 136387 0 1 2064, 0, +contig22 136622 137243 KOE98620 0 + 136622 137243 0 1 621, 0, +contig22 137239 138121 KOE98621 0 + 137239 138121 0 1 882, 0, +contig22 138195 139731 KOE98622 0 + 138195 139731 0 1 1536, 0, +contig22 141759 142554 KOE98623 0 + 141759 142554 0 1 795, 0, +contig22 142606 142990 KOE98624 0 + 142606 142990 0 1 384, 0, +contig22 142979 143660 KOE98625 0 + 142979 143660 0 1 681, 0, +contig22 143656 144553 KOE98626 0 + 143656 144553 0 1 897, 0, +contig22 144571 145291 KOE98627 0 + 144571 145291 0 1 720, 0, +contig22 146677 148012 KOE98628 0 + 146677 148012 0 1 1335, 0, +contig22 148643 149339 KOE98629 0 + 148643 149339 0 1 696, 0, +contig22 149503 150511 KOE98630 0 + 149503 150511 0 1 1008, 0, +contig22 150510 151065 KOE98631 0 + 150510 151065 0 1 555, 0, +contig22 151147 151894 KOE98632 0 + 151147 151894 0 1 747, 0, +contig22 151982 152189 KOE98633 0 + 151982 152189 0 1 207, 0, +contig22 152292 153561 KOE98634 0 + 152292 153561 0 1 1269, 0, +contig22 153742 154012 KOE98635 0 + 153742 154012 0 1 270, 0, +contig22 154013 154655 KOE98636 0 - 154013 154655 0 1 642, 0, +contig22 154644 157104 KOE98637 0 - 154644 157104 0 1 2460, 0, +contig22 157100 158708 KOE98638 0 - 157100 158708 0 1 1608, 0, +contig22 158704 159703 KOE98639 0 - 158704 159703 0 1 999, 0, +contig22 159816 161454 KOE98640 0 + 159816 161454 0 1 1638, 0, +contig22 161735 162146 KOE98641 0 - 161735 162146 0 1 411, 0, +contig22 162304 162646 KOE98642 0 - 162304 162646 0 1 342, 0, +contig22 162770 163946 KOE98643 0 - 162770 163946 0 1 1176, 0, +contig22 164129 166970 KOE98644 0 + 164129 166970 0 1 2841, 0, +contig22 167014 168112 KOE98645 0 - 167014 168112 0 1 1098, 0, +contig22 168390 169467 KOE98646 0 + 168390 169467 0 1 1077, 0, +contig22 169470 171063 KOE98647 0 - 169470 171063 0 1 1593, 0, +contig22 171166 171865 KOE98648 0 - 171166 171865 0 1 699, 0, +contig22 171912 172413 KOE98649 0 - 171912 172413 0 1 501, 0, +contig22 172475 173033 KOE98650 0 + 172475 173033 0 1 558, 0, +contig22 174609 174789 KOE98651 0 - 174609 174789 0 1 180, 0, +contig22 174915 175494 KOE98652 0 + 174915 175494 0 1 579, 0, +contig22 175490 176024 KOE98653 0 + 175490 176024 0 1 534, 0, +contig22 176034 176916 KOE98654 0 + 176034 176916 0 1 882, 0, +contig22 176965 177148 KOE98655 0 - 176965 177148 0 1 183, 0, +contig22 177159 177411 KOE98656 0 - 177159 177411 0 1 252, 0, +contig22 177682 179044 KOE98657 0 - 177682 179044 0 1 1362, 0, +contig22 179226 179562 KOE98658 0 + 179226 179562 0 1 336, 0, +contig22 179568 180729 KOE98659 0 - 179568 180729 0 1 1161, 0, +contig22 180957 181560 KOE98660 0 + 180957 181560 0 1 603, 0, +contig22 181780 182398 KOE98661 0 + 181780 182398 0 1 618, 0, +contig22 182503 183823 KOE98662 0 + 182503 183823 0 1 1320, 0, +contig22 183852 186417 KOE98663 0 - 183852 186417 0 1 2565, 0, +contig22 186609 186957 KOE98664 0 + 186609 186957 0 1 348, 0, +contig22 187447 188038 KOE98665 0 - 187447 188038 0 1 591, 0, +contig22 188114 190196 KOE98666 0 - 188114 190196 0 1 2082, 0, +contig22 190299 190743 KOE98667 0 - 190299 190743 0 1 444, 0, +contig22 94504 94876 KOE98668 0 - 94504 94876 0 1 372, 0, +contig22 132798 133662 KOE98669 0 - 132798 133662 0 1 864, 0, +contig22 139911 141705 KOE98670 0 + 139911 141705 0 1 1794, 0, +contig22 145821 146550 KOE98671 0 - 145821 146550 0 1 729, 0, +contig22 148045 148531 KOE98672 0 + 148045 148531 0 1 486, 0, +contig22 173203 173470 KOE98673 0 + 173203 173470 0 1 267, 0, +contig22 173982 174573 KOE98674 0 - 173982 174573 0 1 591, 0, +contig22 181610 181784 KOE98675 0 + 181610 181784 0 1 174, 0, +contig23 104 509 KOE98676 0 - 104 509 0 1 405, 0, +contig23 505 1576 KOE98677 0 - 505 1576 0 1 1071, 0, +contig23 1593 3534 KOE98678 0 - 1593 3534 0 1 1941, 0, +contig23 3629 4415 KOE98679 0 - 3629 4415 0 1 786, 0, +contig23 4411 5107 KOE98680 0 - 4411 5107 0 1 696, 0, +contig23 5183 6500 KOE98681 0 + 5183 6500 0 1 1317, 0, +contig23 6508 7225 KOE98682 0 - 6508 7225 0 1 717, 0, +contig23 7270 7723 KOE98683 0 - 7270 7723 0 1 453, 0, +contig23 7798 9424 KOE98684 0 - 7798 9424 0 1 1626, 0, +contig23 9420 11121 KOE98685 0 - 9420 11121 0 1 1701, 0, +contig23 11228 12086 KOE98686 0 - 11228 12086 0 1 858, 0, +contig23 12210 12822 KOE98687 0 + 12210 12822 0 1 612, 0, +contig23 15706 16291 KOE98688 0 + 15706 16291 0 1 585, 0, +contig23 16300 17338 KOE98689 0 + 16300 17338 0 1 1038, 0, +contig23 17341 18007 KOE98690 0 + 17341 18007 0 1 666, 0, +contig23 18065 18476 KOE98691 0 + 18065 18476 0 1 411, 0, +contig23 18540 19011 KOE98692 0 + 18540 19011 0 1 471, 0, +contig23 19238 20660 KOE98693 0 - 19238 20660 0 1 1422, 0, +contig23 20798 23636 KOE98694 0 - 20798 23636 0 1 2838, 0, +contig23 23827 24478 KOE98695 0 - 23827 24478 0 1 651, 0, +contig23 24695 25433 KOE98696 0 - 24695 25433 0 1 738, 0, +contig23 25564 26173 KOE98697 0 + 25564 26173 0 1 609, 0, +contig23 26165 27653 KOE98698 0 + 26165 27653 0 1 1488, 0, +contig23 27683 31538 KOE98699 0 + 27683 31538 0 1 3855, 0, +contig23 31598 33044 KOE98700 0 + 31598 33044 0 1 1446, 0, +contig23 33085 33673 KOE98701 0 - 33085 33673 0 1 588, 0, +contig23 33741 35109 KOE98702 0 + 33741 35109 0 1 1368, 0, +contig23 35196 35568 KOE98703 0 + 35196 35568 0 1 372, 0, +contig23 35653 36532 KOE98704 0 - 35653 36532 0 1 879, 0, +contig23 36521 36782 KOE98705 0 - 36521 36782 0 1 261, 0, +contig23 36818 38147 KOE98706 0 - 36818 38147 0 1 1329, 0, +contig23 38646 39192 KOE98707 0 - 38646 39192 0 1 546, 0, +contig23 39188 40895 KOE98708 0 - 39188 40895 0 1 1707, 0, +contig23 41049 42384 KOE98709 0 + 41049 42384 0 1 1335, 0, +contig23 44200 44683 KOE98710 0 + 44200 44683 0 1 483, 0, +contig23 44782 46027 KOE98711 0 + 44782 46027 0 1 1245, 0, +contig23 46030 47281 KOE98712 0 + 46030 47281 0 1 1251, 0, +contig23 47277 48636 KOE98713 0 + 47277 48636 0 1 1359, 0, +contig23 49746 50049 KOE98714 0 + 49746 50049 0 1 303, 0, +contig23 50142 50817 KOE98715 0 + 50142 50817 0 1 675, 0, +contig23 50916 52500 KOE98716 0 - 50916 52500 0 1 1584, 0, +contig23 52576 53071 KOE98717 0 - 52576 53071 0 1 495, 0, +contig23 53194 55201 KOE98718 0 - 53194 55201 0 1 2007, 0, +contig23 57716 60569 KOE98719 0 - 57716 60569 0 1 2853, 0, +contig23 60756 62784 KOE98720 0 - 60756 62784 0 1 2028, 0, +contig23 62951 65759 KOE98721 0 - 62951 65759 0 1 2808, 0, +contig23 66099 68889 KOE98722 0 - 66099 68889 0 1 2790, 0, +contig23 70035 70608 KOE98723 0 + 70035 70608 0 1 573, 0, +contig23 70683 70851 KOE98724 0 - 70683 70851 0 1 168, 0, +contig23 70866 71289 KOE98725 0 - 70866 71289 0 1 423, 0, +contig23 71285 71957 KOE98726 0 - 71285 71957 0 1 672, 0, +contig23 72160 73522 KOE98727 0 + 72160 73522 0 1 1362, 0, +contig23 73518 74358 KOE98728 0 + 73518 74358 0 1 840, 0, +contig23 74468 74978 KOE98729 0 - 74468 74978 0 1 510, 0, +contig23 75059 76565 KOE98730 0 - 75059 76565 0 1 1506, 0, +contig23 76687 78292 KOE98731 0 + 76687 78292 0 1 1605, 0, +contig23 78315 78663 KOE98732 0 + 78315 78663 0 1 348, 0, +contig23 78770 79613 KOE98733 0 - 78770 79613 0 1 843, 0, +contig23 79609 80260 KOE98734 0 - 79609 80260 0 1 651, 0, +contig23 80382 81312 KOE98735 0 + 80382 81312 0 1 930, 0, +contig23 81308 82412 KOE98736 0 + 81308 82412 0 1 1104, 0, +contig23 82404 83442 KOE98737 0 + 82404 83442 0 1 1038, 0, +contig23 83534 84563 KOE98738 0 + 83534 84563 0 1 1029, 0, +contig23 84693 86754 KOE98739 0 + 84693 86754 0 1 2061, 0, +contig23 87175 87946 KOE98740 0 + 87175 87946 0 1 771, 0, +contig23 87942 88599 KOE98741 0 + 87942 88599 0 1 657, 0, +contig23 91417 92305 KOE98742 0 - 91417 92305 0 1 888, 0, +contig23 92401 93619 KOE98743 0 + 92401 93619 0 1 1218, 0, +contig23 93615 94293 KOE98744 0 + 93615 94293 0 1 678, 0, +contig23 94294 95104 KOE98745 0 + 94294 95104 0 1 810, 0, +contig23 95319 96195 KOE98746 0 + 95319 96195 0 1 876, 0, +contig23 96194 97556 KOE98747 0 + 96194 97556 0 1 1362, 0, +contig23 97634 98492 KOE98748 0 - 97634 98492 0 1 858, 0, +contig23 99650 101537 KOE98749 0 - 99650 101537 0 1 1887, 0, +contig23 101731 102667 KOE98750 0 + 101731 102667 0 1 936, 0, +contig23 12927 15570 KOE98751 0 + 12927 15570 0 1 2643, 0, +contig23 42643 43402 KOE98752 0 - 42643 43402 0 1 759, 0, +contig23 43548 44127 KOE98753 0 - 43548 44127 0 1 579, 0, +contig23 48793 49714 KOE98754 0 + 48793 49714 0 1 921, 0, +contig23 55423 57526 KOE98755 0 - 55423 57526 0 1 2103, 0, +contig23 69103 69958 KOE98756 0 + 69103 69958 0 1 855, 0, +contig23 86780 87143 KOE98757 0 + 86780 87143 0 1 363, 0, +contig23 89146 89464 KOE98758 0 + 89146 89464 0 1 318, 0, +contig23 90307 91369 KOE98759 0 + 90307 91369 0 1 1062, 0, +contig23 98484 99630 KOE98760 0 - 98484 99630 0 1 1146, 0, +contig24 256 1735 KOE98761 0 + 256 1735 0 1 1479, 0, +contig24 1731 2223 KOE98762 0 + 1731 2223 0 1 492, 0, +contig24 2722 3973 KOE98763 0 + 2722 3973 0 1 1251, 0, +contig24 4103 4283 KOE98764 0 - 4103 4283 0 1 180, 0, +contig24 4393 4807 KOE98765 0 - 4393 4807 0 1 414, 0, +contig24 4942 7147 KOE98766 0 + 4942 7147 0 1 2205, 0, +contig24 7310 7877 KOE98767 0 + 7310 7877 0 1 567, 0, +contig24 7876 9550 KOE98768 0 + 7876 9550 0 1 1674, 0, +contig24 9560 10709 KOE98769 0 + 9560 10709 0 1 1149, 0, +contig24 10779 11271 KOE98770 0 - 10779 11271 0 1 492, 0, +contig24 11305 12709 KOE98771 0 - 11305 12709 0 1 1404, 0, +contig24 12802 14395 KOE98772 0 - 12802 14395 0 1 1593, 0, +contig24 14591 15002 KOE98773 0 - 14591 15002 0 1 411, 0, +contig24 15012 16332 KOE98774 0 - 15012 16332 0 1 1320, 0, +contig24 16413 17874 KOE98775 0 - 16413 17874 0 1 1461, 0, +contig24 18638 19496 KOE98776 0 + 18638 19496 0 1 858, 0, +contig24 19591 20137 KOE98777 0 + 19591 20137 0 1 546, 0, +contig24 20264 23729 KOE98778 0 + 20264 23729 0 1 3465, 0, +contig24 23776 24394 KOE98779 0 + 23776 24394 0 1 618, 0, +contig24 24593 26687 KOE98780 0 - 24593 26687 0 1 2094, 0, +contig24 27619 28369 KOE98781 0 - 27619 28369 0 1 750, 0, +contig24 28463 29138 KOE98782 0 + 28463 29138 0 1 675, 0, +contig24 29176 30157 KOE98783 0 - 29176 30157 0 1 981, 0, +contig24 30298 32548 KOE98784 0 - 30298 32548 0 1 2250, 0, +contig24 34357 35572 KOE98785 0 - 34357 35572 0 1 1215, 0, +contig24 35650 36100 KOE98786 0 + 35650 36100 0 1 450, 0, +contig24 36173 37301 KOE98787 0 + 36173 37301 0 1 1128, 0, +contig24 37435 38119 KOE98788 0 + 37435 38119 0 1 684, 0, +contig24 38115 39495 KOE98789 0 + 38115 39495 0 1 1380, 0, +contig24 39574 40411 KOE98790 0 + 39574 40411 0 1 837, 0, +contig24 40412 40772 KOE98791 0 + 40412 40772 0 1 360, 0, +contig24 40768 41167 KOE98792 0 + 40768 41167 0 1 399, 0, +contig24 41177 42380 KOE98793 0 + 41177 42380 0 1 1203, 0, +contig24 42554 43271 KOE98794 0 + 42554 43271 0 1 717, 0, +contig24 43319 44720 KOE98795 0 + 43319 44720 0 1 1401, 0, +contig24 44748 45813 KOE98796 0 + 44748 45813 0 1 1065, 0, +contig24 45816 46701 KOE98797 0 + 45816 46701 0 1 885, 0, +contig24 46872 47232 KOE98798 0 + 46872 47232 0 1 360, 0, +contig24 47300 47513 KOE98799 0 + 47300 47513 0 1 213, 0, +contig24 47517 48306 KOE98800 0 + 47517 48306 0 1 789, 0, +contig24 48302 48971 KOE98801 0 - 48302 48971 0 1 669, 0, +contig24 49146 49767 KOE98802 0 - 49146 49767 0 1 621, 0, +contig24 49871 50765 KOE98803 0 + 49871 50765 0 1 894, 0, +contig24 50843 52256 KOE98804 0 + 50843 52256 0 1 1413, 0, +contig24 52248 53262 KOE98805 0 + 52248 53262 0 1 1014, 0, +contig24 53246 54434 KOE98806 0 + 53246 54434 0 1 1188, 0, +contig24 54430 55558 KOE98807 0 + 54430 55558 0 1 1128, 0, +contig24 55602 56979 KOE98808 0 - 55602 56979 0 1 1377, 0, +contig24 57124 57493 KOE98809 0 - 57124 57493 0 1 369, 0, +contig24 57659 59882 KOE98810 0 - 57659 59882 0 1 2223, 0, +contig24 60164 60557 KOE98811 0 + 60164 60557 0 1 393, 0, +contig24 60587 61580 KOE98812 0 - 60587 61580 0 1 993, 0, +contig24 61579 62857 KOE98813 0 - 61579 62857 0 1 1278, 0, +contig24 63207 65763 KOE98814 0 + 63207 65763 0 1 2556, 0, +contig24 65949 67593 KOE98815 0 + 65949 67593 0 1 1644, 0, +contig24 67701 68304 KOE98816 0 + 67701 68304 0 1 603, 0, +contig24 68376 69564 KOE98817 0 - 68376 69564 0 1 1188, 0, +contig24 69677 70085 KOE98818 0 - 69677 70085 0 1 408, 0, +contig24 70094 70334 KOE98819 0 - 70094 70334 0 1 240, 0, +contig24 70396 71869 KOE98820 0 + 70396 71869 0 1 1473, 0, +contig24 71943 72351 KOE98821 0 - 71943 72351 0 1 408, 0, +contig24 72389 72824 KOE98822 0 - 72389 72824 0 1 435, 0, +contig24 72903 73284 KOE98823 0 - 72903 73284 0 1 381, 0, +contig24 73366 73768 KOE98824 0 - 73366 73768 0 1 402, 0, +contig24 73922 74681 KOE98825 0 - 73922 74681 0 1 759, 0, +contig24 74689 75202 KOE98826 0 - 74689 75202 0 1 513, 0, +contig24 75246 75507 KOE98827 0 - 75246 75507 0 1 261, 0, +contig24 75637 76420 KOE98828 0 - 75637 76420 0 1 783, 0, +contig24 76416 77493 KOE98829 0 - 76416 77493 0 1 1077, 0, +contig24 77582 78959 KOE98830 0 - 77582 78959 0 1 1377, 0, +contig24 79081 79876 KOE98831 0 + 79081 79876 0 1 795, 0, +contig24 79917 80376 KOE98832 0 - 79917 80376 0 1 459, 0, +contig24 80470 82777 KOE98833 0 - 80470 82777 0 1 2307, 0, +contig24 82825 84682 KOE98834 0 - 82825 84682 0 1 1857, 0, +contig24 84921 86298 KOE98835 0 - 84921 86298 0 1 1377, 0, +contig24 86447 88505 KOE98836 0 + 86447 88505 0 1 2058, 0, +contig24 88641 88983 KOE98837 0 - 88641 88983 0 1 342, 0, +contig24 88982 89621 KOE98838 0 - 88982 89621 0 1 639, 0, +contig24 89617 91615 KOE98839 0 - 89617 91615 0 1 1998, 0, +contig24 91617 92658 KOE98840 0 - 91617 92658 0 1 1041, 0, +contig24 93009 93645 KOE98841 0 + 93009 93645 0 1 636, 0, +contig24 94139 95144 KOE98842 0 - 94139 95144 0 1 1005, 0, +contig24 95241 98112 KOE98843 0 - 95241 98112 0 1 2871, 0, +contig24 98462 98876 KOE98844 0 + 98462 98876 0 1 414, 0, +contig24 98872 99841 KOE98845 0 + 98872 99841 0 1 969, 0, +contig24 99852 102651 KOE98846 0 + 99852 102651 0 1 2799, 0, +contig24 102697 103654 KOE98847 0 + 102697 103654 0 1 957, 0, +contig24 103650 104370 KOE98848 0 + 103650 104370 0 1 720, 0, +contig24 104452 105118 KOE98849 0 - 104452 105118 0 1 666, 0, +contig24 105114 106998 KOE98850 0 - 105114 106998 0 1 1884, 0, +contig24 107180 108131 KOE98851 0 - 107180 108131 0 1 951, 0, +contig24 108158 108683 KOE98852 0 - 108158 108683 0 1 525, 0, +contig24 108682 111514 KOE98853 0 - 108682 111514 0 1 2832, 0, +contig24 111510 112458 KOE98854 0 - 111510 112458 0 1 948, 0, +contig24 112533 114138 KOE98855 0 - 112533 114138 0 1 1605, 0, +contig24 114255 114525 KOE98856 0 + 114255 114525 0 1 270, 0, +contig24 114741 115794 KOE98857 0 - 114741 115794 0 1 1053, 0, +contig24 115971 116235 KOE98858 0 - 115971 116235 0 1 264, 0, +contig24 116253 116562 KOE98859 0 - 116253 116562 0 1 309, 0, +contig24 116899 119890 KOE98860 0 + 116899 119890 0 1 2991, 0, +contig24 119889 120297 KOE98861 0 + 119889 120297 0 1 408, 0, +contig24 120382 121108 KOE98862 0 + 120382 121108 0 1 726, 0, +contig24 121180 121627 KOE98863 0 - 121180 121627 0 1 447, 0, +contig24 121661 122438 KOE98864 0 + 121661 122438 0 1 777, 0, +contig24 122537 123446 KOE98865 0 + 122537 123446 0 1 909, 0, +contig24 123450 123990 KOE98866 0 + 123450 123990 0 1 540, 0, +contig24 124214 125432 KOE98867 0 + 124214 125432 0 1 1218, 0, +contig24 125483 126044 KOE98868 0 - 125483 126044 0 1 561, 0, +contig24 126200 126956 KOE98869 0 + 126200 126956 0 1 756, 0, +contig24 126994 128209 KOE98870 0 + 126994 128209 0 1 1215, 0, +contig24 17877 18591 KOE98871 0 - 17877 18591 0 1 714, 0, +contig24 32834 34250 KOE98872 0 + 32834 34250 0 1 1416, 0, +contig25 4 1192 KOE98873 0 - 4 1192 0 1 1188, 0, +contig25 1329 2211 KOE98874 0 + 1329 2211 0 1 882, 0, +contig25 2256 2436 KOE98875 0 + 2256 2436 0 1 180, 0, +contig25 2432 2612 KOE98876 0 + 2432 2612 0 1 180, 0, +contig25 2615 3209 KOE98877 0 + 2615 3209 0 1 594, 0, +contig25 3218 4028 KOE98878 0 + 3218 4028 0 1 810, 0, +contig25 4187 4559 KOE98879 0 - 4187 4559 0 1 372, 0, +contig25 4662 5736 KOE98880 0 - 4662 5736 0 1 1074, 0, +contig25 5970 6612 KOE98881 0 - 5970 6612 0 1 642, 0, +contig25 6611 7814 KOE98882 0 - 6611 7814 0 1 1203, 0, +contig25 7967 8564 KOE98883 0 + 7967 8564 0 1 597, 0, +contig25 8509 9355 KOE98884 0 + 8509 9355 0 1 846, 0, +contig25 9392 10202 KOE98885 0 + 9392 10202 0 1 810, 0, +contig25 10204 10465 KOE98886 0 + 10204 10465 0 1 261, 0, +contig25 10511 10994 KOE98887 0 + 10511 10994 0 1 483, 0, +contig25 12485 14564 KOE98888 0 - 12485 14564 0 1 2079, 0, +contig25 14797 16762 KOE98889 0 - 14797 16762 0 1 1965, 0, +contig25 16962 18111 KOE98890 0 + 16962 18111 0 1 1149, 0, +contig25 18208 19963 KOE98891 0 + 18208 19963 0 1 1755, 0, +contig25 20020 22003 KOE98892 0 - 20020 22003 0 1 1983, 0, +contig25 22170 22806 KOE98893 0 - 22170 22806 0 1 636, 0, +contig25 22944 23850 KOE98894 0 + 22944 23850 0 1 906, 0, +contig25 24008 24443 KOE98895 0 + 24008 24443 0 1 435, 0, +contig25 24643 25090 KOE98896 0 + 24643 25090 0 1 447, 0, +contig25 25283 26978 KOE98897 0 + 25283 26978 0 1 1695, 0, +contig25 27303 29496 KOE98898 0 + 27303 29496 0 1 2193, 0, +contig25 29686 31330 KOE98899 0 + 29686 31330 0 1 1644, 0, +contig25 31340 31661 KOE98900 0 + 31340 31661 0 1 321, 0, +contig25 31657 32566 KOE98901 0 + 31657 32566 0 1 909, 0, +contig25 33265 33907 KOE98902 0 + 33265 33907 0 1 642, 0, +contig25 33903 34761 KOE98903 0 + 33903 34761 0 1 858, 0, +contig25 34757 35678 KOE98904 0 + 34757 35678 0 1 921, 0, +contig25 35775 37143 KOE98905 0 + 35775 37143 0 1 1368, 0, +contig25 37199 37919 KOE98906 0 + 37199 37919 0 1 720, 0, +contig25 38029 38362 KOE98907 0 - 38029 38362 0 1 333, 0, +contig25 38513 39461 KOE98908 0 + 38513 39461 0 1 948, 0, +contig25 39465 40725 KOE98909 0 - 39465 40725 0 1 1260, 0, +contig25 40803 41817 KOE98910 0 - 40803 41817 0 1 1014, 0, +contig25 41900 43214 KOE98911 0 - 41900 43214 0 1 1314, 0, +contig25 44008 44554 KOE98912 0 - 44008 44554 0 1 546, 0, +contig25 44557 45352 KOE98913 0 - 44557 45352 0 1 795, 0, +contig25 45646 46291 KOE98914 0 + 45646 46291 0 1 645, 0, +contig25 46390 46867 KOE98915 0 + 46390 46867 0 1 477, 0, +contig25 46921 47767 KOE98916 0 + 46921 47767 0 1 846, 0, +contig25 47759 48494 KOE98917 0 + 47759 48494 0 1 735, 0, +contig25 49352 50489 KOE98918 0 - 49352 50489 0 1 1137, 0, +contig25 50610 52152 KOE98919 0 - 50610 52152 0 1 1542, 0, +contig25 52195 52420 KOE98920 0 - 52195 52420 0 1 225, 0, +contig25 52419 52887 KOE98921 0 - 52419 52887 0 1 468, 0, +contig25 53071 53656 KOE98922 0 - 53071 53656 0 1 585, 0, +contig25 53750 54197 KOE98923 0 - 53750 54197 0 1 447, 0, +contig25 54411 56154 KOE98924 0 - 54411 56154 0 1 1743, 0, +contig25 56316 57342 KOE98925 0 - 56316 57342 0 1 1026, 0, +contig25 57460 58513 KOE98926 0 - 57460 58513 0 1 1053, 0, +contig25 58658 59666 KOE98927 0 - 58658 59666 0 1 1008, 0, +contig25 59761 60814 KOE98928 0 + 59761 60814 0 1 1053, 0, +contig25 60841 62059 KOE98929 0 + 60841 62059 0 1 1218, 0, +contig25 62071 63196 KOE98930 0 + 62071 63196 0 1 1125, 0, +contig25 63215 64079 KOE98931 0 + 63215 64079 0 1 864, 0, +contig25 65172 65748 KOE98932 0 - 65172 65748 0 1 576, 0, +contig25 65747 67433 KOE98933 0 - 65747 67433 0 1 1686, 0, +contig25 67460 68366 KOE98934 0 - 67460 68366 0 1 906, 0, +contig25 68577 69360 KOE98935 0 - 68577 69360 0 1 783, 0, +contig25 69356 69683 KOE98936 0 - 69356 69683 0 1 327, 0, +contig25 69782 70694 KOE98937 0 + 69782 70694 0 1 912, 0, +contig25 70817 71393 KOE98938 0 - 70817 71393 0 1 576, 0, +contig25 71563 71959 KOE98939 0 - 71563 71959 0 1 396, 0, +contig25 72097 73129 KOE98940 0 + 72097 73129 0 1 1032, 0, +contig25 73260 74163 KOE98941 0 + 73260 74163 0 1 903, 0, +contig25 74175 77760 KOE98942 0 + 74175 77760 0 1 3585, 0, +contig25 77893 78211 KOE98943 0 - 77893 78211 0 1 318, 0, +contig25 78352 78739 KOE98944 0 - 78352 78739 0 1 387, 0, +contig25 78864 80577 KOE98945 0 - 78864 80577 0 1 1713, 0, +contig25 80576 82064 KOE98946 0 - 80576 82064 0 1 1488, 0, +contig25 82060 84253 KOE98947 0 - 82060 84253 0 1 2193, 0, +contig25 89774 91388 KOE98948 0 - 89774 91388 0 1 1614, 0, +contig25 91603 92602 KOE98949 0 + 91603 92602 0 1 999, 0, +contig25 92716 93502 KOE98950 0 - 92716 93502 0 1 786, 0, +contig25 93635 94232 KOE98951 0 + 93635 94232 0 1 597, 0, +contig25 94356 95766 KOE98952 0 - 94356 95766 0 1 1410, 0, +contig25 95746 97099 KOE98953 0 - 95746 97099 0 1 1353, 0, +contig25 97175 99770 KOE98954 0 - 97175 99770 0 1 2595, 0, +contig25 99845 100718 KOE98955 0 + 99845 100718 0 1 873, 0, +contig25 100808 101687 KOE98956 0 + 100808 101687 0 1 879, 0, +contig25 101786 102218 KOE98957 0 - 101786 102218 0 1 432, 0, +contig25 102590 102989 KOE98958 0 + 102590 102989 0 1 399, 0, +contig25 103243 103552 KOE98959 0 + 103243 103552 0 1 309, 0, +contig25 103607 104156 KOE98960 0 + 103607 104156 0 1 549, 0, +contig25 104238 104835 KOE98961 0 + 104238 104835 0 1 597, 0, +contig25 104873 105416 KOE98962 0 - 104873 105416 0 1 543, 0, +contig25 105545 106013 KOE98963 0 - 105545 106013 0 1 468, 0, +contig25 106222 106678 KOE98964 0 + 106222 106678 0 1 456, 0, +contig25 106695 108171 KOE98965 0 + 106695 108171 0 1 1476, 0, +contig25 108245 109010 KOE98966 0 + 108245 109010 0 1 765, 0, +contig25 109009 110272 KOE98967 0 + 109009 110272 0 1 1263, 0, +contig25 110268 111525 KOE98968 0 + 110268 111525 0 1 1257, 0, +contig25 111701 112004 KOE98969 0 - 111701 112004 0 1 303, 0, +contig25 112701 113139 KOE98970 0 - 112701 113139 0 1 438, 0, +contig25 114871 115066 KOE98971 0 - 114871 115066 0 1 195, 0, +contig25 115587 115953 KOE98972 0 - 115587 115953 0 1 366, 0, +contig25 118688 124019 KOE98973 0 - 118688 124019 0 1 5331, 0, +contig25 124260 124800 KOE98974 0 + 124260 124800 0 1 540, 0, +contig25 124796 125129 KOE98975 0 + 124796 125129 0 1 333, 0, +contig25 125334 125739 KOE98976 0 + 125334 125739 0 1 405, 0, +contig25 128264 128984 KOE98977 0 + 128264 128984 0 1 720, 0, +contig25 128994 129672 KOE98978 0 + 128994 129672 0 1 678, 0, +contig25 129836 130247 KOE98979 0 + 129836 130247 0 1 411, 0, +contig25 130393 132814 KOE98980 0 + 130393 132814 0 1 2421, 0, +contig25 133052 133691 KOE98981 0 + 133052 133691 0 1 639, 0, +contig25 133717 134236 KOE98982 0 + 133717 134236 0 1 519, 0, +contig25 134309 135113 KOE98983 0 + 134309 135113 0 1 804, 0, +contig25 135167 136139 KOE98984 0 + 135167 136139 0 1 972, 0, +contig25 136135 137740 KOE98985 0 + 136135 137740 0 1 1605, 0, +contig25 137824 138430 KOE98986 0 - 137824 138430 0 1 606, 0, +contig25 138464 139190 KOE98987 0 - 138464 139190 0 1 726, 0, +contig25 139207 140284 KOE98988 0 - 139207 140284 0 1 1077, 0, +contig25 141164 142658 KOE98989 0 + 141164 142658 0 1 1494, 0, +contig25 142728 142998 KOE98990 0 + 142728 142998 0 1 270, 0, +contig25 143062 144088 KOE98991 0 + 143062 144088 0 1 1026, 0, +contig25 144084 144795 KOE98992 0 + 144084 144795 0 1 711, 0, +contig25 145268 145976 KOE98993 0 - 145268 145976 0 1 708, 0, +contig25 145975 147145 KOE98994 0 - 145975 147145 0 1 1170, 0, +contig25 147141 148281 KOE98995 0 - 147141 148281 0 1 1140, 0, +contig25 148380 149439 KOE98996 0 + 148380 149439 0 1 1059, 0, +contig25 149461 149950 KOE98997 0 + 149461 149950 0 1 489, 0, +contig25 149946 150369 KOE98998 0 + 149946 150369 0 1 423, 0, +contig25 150410 151073 KOE98999 0 + 150410 151073 0 1 663, 0, +contig25 151069 151729 KOE99000 0 + 151069 151729 0 1 660, 0, +contig25 151797 152622 KOE99001 0 + 151797 152622 0 1 825, 0, +contig25 152624 153308 KOE99002 0 + 152624 153308 0 1 684, 0, +contig25 153386 153713 KOE99003 0 - 153386 153713 0 1 327, 0, +contig25 153709 154981 KOE99004 0 - 153709 154981 0 1 1272, 0, +contig25 155002 155233 KOE99005 0 - 155002 155233 0 1 231, 0, +contig25 155287 156289 KOE99006 0 + 155287 156289 0 1 1002, 0, +contig25 156355 156904 KOE99007 0 + 156355 156904 0 1 549, 0, +contig25 156900 157476 KOE99008 0 + 156900 157476 0 1 576, 0, +contig25 157580 158132 KOE99009 0 + 157580 158132 0 1 552, 0, +contig25 158131 158851 KOE99010 0 + 158131 158851 0 1 720, 0, +contig25 158891 160316 KOE99011 0 + 158891 160316 0 1 1425, 0, +contig25 160374 160692 KOE99012 0 + 160374 160692 0 1 318, 0, +contig25 160713 161166 KOE99013 0 + 160713 161166 0 1 453, 0, +contig25 161162 162113 KOE99014 0 + 161162 162113 0 1 951, 0, +contig25 162140 163025 KOE99015 0 + 162140 163025 0 1 885, 0, +contig25 163442 163835 KOE99016 0 + 163442 163835 0 1 393, 0, +contig25 163827 164097 KOE99017 0 + 163827 164097 0 1 270, 0, +contig25 164099 165869 KOE99018 0 + 164099 165869 0 1 1770, 0, +contig25 166072 167434 KOE99019 0 + 166072 167434 0 1 1362, 0, +contig25 167493 167760 KOE99020 0 + 167493 167760 0 1 267, 0, +contig25 167831 168629 KOE99021 0 + 167831 168629 0 1 798, 0, +contig25 168716 169088 KOE99022 0 - 168716 169088 0 1 372, 0, +contig25 169371 170322 KOE99023 0 - 169371 170322 0 1 951, 0, +contig25 170337 170832 KOE99024 0 - 170337 170832 0 1 495, 0, +contig25 170824 171391 KOE99025 0 - 170824 171391 0 1 567, 0, +contig25 171482 173270 KOE99026 0 + 171482 173270 0 1 1788, 0, +contig25 173266 173812 KOE99027 0 + 173266 173812 0 1 546, 0, +contig25 174715 174928 KOE99028 0 - 174715 174928 0 1 213, 0, +contig25 175021 175918 KOE99029 0 + 175021 175918 0 1 897, 0, +contig25 175980 176964 KOE99030 0 - 175980 176964 0 1 984, 0, +contig25 178355 179393 KOE99031 0 - 178355 179393 0 1 1038, 0, +contig25 179480 180158 KOE99032 0 + 179480 180158 0 1 678, 0, +contig25 180176 180998 KOE99033 0 + 180176 180998 0 1 822, 0, +contig25 181057 181933 KOE99034 0 - 181057 181933 0 1 876, 0, +contig25 182031 182634 KOE99035 0 + 182031 182634 0 1 603, 0, +contig25 182707 183142 KOE99036 0 - 182707 183142 0 1 435, 0, +contig25 183171 184593 KOE99037 0 + 183171 184593 0 1 1422, 0, +contig25 184639 186664 KOE99038 0 - 184639 186664 0 1 2025, 0, +contig25 186663 187680 KOE99039 0 - 186663 187680 0 1 1017, 0, +contig25 187809 188214 KOE99040 0 + 187809 188214 0 1 405, 0, +contig25 188484 191586 KOE99041 0 - 188484 191586 0 1 3102, 0, +contig25 191590 192766 KOE99042 0 - 191590 192766 0 1 1176, 0, +contig25 192922 193606 KOE99043 0 + 192922 193606 0 1 684, 0, +contig25 193583 194966 KOE99044 0 + 193583 194966 0 1 1383, 0, +contig25 195064 197158 KOE99045 0 + 195064 197158 0 1 2094, 0, +contig25 197141 198659 KOE99046 0 - 197141 198659 0 1 1518, 0, +contig25 199678 200557 KOE99047 0 - 199678 200557 0 1 879, 0, +contig25 200595 201477 KOE99048 0 - 200595 201477 0 1 882, 0, +contig25 201635 202499 KOE99049 0 - 201635 202499 0 1 864, 0, +contig25 202631 204011 KOE99050 0 + 202631 204011 0 1 1380, 0, +contig25 203949 204894 KOE99051 0 - 203949 204894 0 1 945, 0, +contig25 205009 205708 KOE99052 0 + 205009 205708 0 1 699, 0, +contig25 205794 206469 KOE99053 0 + 205794 206469 0 1 675, 0, +contig25 206472 207120 KOE99054 0 - 206472 207120 0 1 648, 0, +contig25 207280 208057 KOE99055 0 + 207280 208057 0 1 777, 0, +contig25 208068 209202 KOE99056 0 + 208068 209202 0 1 1134, 0, +contig25 209211 210717 KOE99057 0 - 209211 210717 0 1 1506, 0, +contig25 210728 212867 KOE99058 0 - 210728 212867 0 1 2139, 0, +contig25 212996 213365 KOE99059 0 - 212996 213365 0 1 369, 0, +contig25 213576 213831 KOE99060 0 - 213576 213831 0 1 255, 0, +contig25 213842 214067 KOE99061 0 - 213842 214067 0 1 225, 0, +contig25 214555 216892 KOE99062 0 + 214555 216892 0 1 2337, 0, +contig25 217242 217470 KOE99063 0 + 217242 217470 0 1 228, 0, +contig25 217511 218150 KOE99064 0 + 217511 218150 0 1 639, 0, +contig25 218302 218686 KOE99065 0 + 218302 218686 0 1 384, 0, +contig25 219025 219475 KOE99066 0 + 219025 219475 0 1 450, 0, +contig25 219471 219822 KOE99067 0 + 219471 219822 0 1 351, 0, +contig25 219818 220304 KOE99068 0 + 219818 220304 0 1 486, 0, +contig25 220300 220678 KOE99069 0 + 220300 220678 0 1 378, 0, +contig25 220754 220946 KOE99070 0 - 220754 220946 0 1 192, 0, +contig25 221035 221590 KOE99071 0 + 221035 221590 0 1 555, 0, +contig25 221586 222177 KOE99072 0 + 221586 222177 0 1 591, 0, +contig25 222229 222568 KOE99073 0 + 222229 222568 0 1 339, 0, +contig25 222570 223467 KOE99074 0 + 222570 223467 0 1 897, 0, +contig25 223459 224761 KOE99075 0 + 223459 224761 0 1 1302, 0, +contig25 224768 226286 KOE99076 0 + 224768 226286 0 1 1518, 0, +contig25 226290 226887 KOE99077 0 + 226290 226887 0 1 597, 0, +contig25 226994 228194 KOE99078 0 + 226994 228194 0 1 1200, 0, +contig25 228196 228700 KOE99079 0 + 228196 228700 0 1 504, 0, +contig25 228780 229071 KOE99080 0 + 228780 229071 0 1 291, 0, +contig25 229191 231663 KOE99081 0 + 229191 231663 0 1 2472, 0, +contig25 231665 232133 KOE99082 0 + 231665 232133 0 1 468, 0, +contig25 232116 232332 KOE99083 0 + 232116 232332 0 1 216, 0, +contig25 233476 233857 KOE99084 0 - 233476 233857 0 1 381, 0, +contig25 234421 234829 KOE99085 0 + 234421 234829 0 1 408, 0, +contig25 235739 236093 KOE99086 0 - 235739 236093 0 1 354, 0, +contig25 236089 237046 KOE99087 0 - 236089 237046 0 1 957, 0, +contig25 237042 237708 KOE99088 0 - 237042 237708 0 1 666, 0, +contig25 237704 238766 KOE99089 0 - 237704 238766 0 1 1062, 0, +contig25 238887 240252 KOE99090 0 - 238887 240252 0 1 1365, 0, +contig25 240344 241607 KOE99091 0 - 240344 241607 0 1 1263, 0, +contig25 241750 241990 KOE99092 0 - 241750 241990 0 1 240, 0, +contig25 242142 242886 KOE99093 0 - 242142 242886 0 1 744, 0, +contig25 242967 243912 KOE99094 0 - 242967 243912 0 1 945, 0, +contig25 244080 244863 KOE99095 0 - 244080 244863 0 1 783, 0, +contig25 244940 245918 KOE99096 0 - 244940 245918 0 1 978, 0, +contig25 246009 246204 KOE99097 0 - 246009 246204 0 1 195, 0, +contig25 246311 246821 KOE99098 0 - 246311 246821 0 1 510, 0, +contig25 246934 247504 KOE99099 0 + 246934 247504 0 1 570, 0, +contig25 247625 249461 KOE99100 0 - 247625 249461 0 1 1836, 0, +contig25 249503 250457 KOE99101 0 + 249503 250457 0 1 954, 0, +contig25 250480 251404 KOE99102 0 + 250480 251404 0 1 924, 0, +contig25 251396 253346 KOE99103 0 + 251396 253346 0 1 1950, 0, +contig25 253342 253870 KOE99104 0 + 253342 253870 0 1 528, 0, +contig25 253906 254266 KOE99105 0 - 253906 254266 0 1 360, 0, +contig25 254332 254932 KOE99106 0 - 254332 254932 0 1 600, 0, +contig25 255014 255335 KOE99107 0 - 255014 255335 0 1 321, 0, +contig25 259765 260098 KOE99108 0 + 259765 260098 0 1 333, 0, +contig25 261113 261548 KOE99109 0 + 261113 261548 0 1 435, 0, +contig25 261605 272519 KOE99110 0 - 261605 272519 0 1 10914, 0, +contig25 272876 273194 KOE99111 0 - 272876 273194 0 1 318, 0, +contig25 274054 274822 KOE99112 0 - 274054 274822 0 1 768, 0, +contig25 274821 275571 KOE99113 0 - 274821 275571 0 1 750, 0, +contig25 275591 276638 KOE99114 0 + 275591 276638 0 1 1047, 0, +contig25 276656 277061 KOE99115 0 - 276656 277061 0 1 405, 0, +contig25 277557 278262 KOE99116 0 + 277557 278262 0 1 705, 0, +contig25 278324 279056 KOE99117 0 - 278324 279056 0 1 732, 0, +contig25 279060 279513 KOE99118 0 - 279060 279513 0 1 453, 0, +contig25 279526 280171 KOE99119 0 - 279526 280171 0 1 645, 0, +contig25 280182 280947 KOE99120 0 + 280182 280947 0 1 765, 0, +contig25 280943 282143 KOE99121 0 + 280943 282143 0 1 1200, 0, +contig25 282339 284295 KOE99122 0 - 282339 284295 0 1 1956, 0, +contig25 285172 285445 KOE99123 0 - 285172 285445 0 1 273, 0, +contig25 285662 288116 KOE99124 0 - 285662 288116 0 1 2454, 0, +contig25 288258 289548 KOE99125 0 - 288258 289548 0 1 1290, 0, +contig25 289674 290301 KOE99126 0 - 289674 290301 0 1 627, 0, +contig25 290378 291674 KOE99127 0 - 290378 291674 0 1 1296, 0, +contig25 292089 292398 KOE99128 0 - 292089 292398 0 1 309, 0, +contig25 294124 295045 KOE99129 0 + 294124 295045 0 1 921, 0, +contig25 295222 295543 KOE99130 0 + 295222 295543 0 1 321, 0, +contig25 296242 297001 KOE99131 0 + 296242 297001 0 1 759, 0, +contig25 297061 297811 KOE99132 0 - 297061 297811 0 1 750, 0, +contig25 297836 298745 KOE99133 0 - 297836 298745 0 1 909, 0, +contig25 298798 299542 KOE99134 0 - 298798 299542 0 1 744, 0, +contig25 299742 300747 KOE99135 0 - 299742 300747 0 1 1005, 0, +contig25 301065 301458 KOE99136 0 - 301065 301458 0 1 393, 0, +contig25 301454 301745 KOE99137 0 - 301454 301745 0 1 291, 0, +contig25 301887 303534 KOE99138 0 + 301887 303534 0 1 1647, 0, +contig25 303650 304340 KOE99139 0 + 303650 304340 0 1 690, 0, +contig25 304446 305778 KOE99140 0 + 304446 305778 0 1 1332, 0, +contig25 305782 307870 KOE99141 0 + 305782 307870 0 1 2088, 0, +contig25 308248 309775 KOE99142 0 + 308248 309775 0 1 1527, 0, +contig25 310080 313050 KOE99143 0 + 310080 313050 0 1 2970, 0, +contig25 313386 316311 KOE99144 0 + 313386 316311 0 1 2925, 0, +contig25 316454 317600 KOE99145 0 + 316454 317600 0 1 1146, 0, +contig25 317580 318120 KOE99146 0 + 317580 318120 0 1 540, 0, +contig25 318185 318932 KOE99147 0 + 318185 318932 0 1 747, 0, +contig25 319019 320273 KOE99148 0 - 319019 320273 0 1 1254, 0, +contig25 320498 321956 KOE99149 0 + 320498 321956 0 1 1458, 0, +contig25 322025 322850 KOE99150 0 - 322025 322850 0 1 825, 0, +contig25 322859 324326 KOE99151 0 - 322859 324326 0 1 1467, 0, +contig25 324356 325136 KOE99152 0 - 324356 325136 0 1 780, 0, +contig25 325182 326211 KOE99153 0 - 325182 326211 0 1 1029, 0, +contig25 326292 327564 KOE99154 0 - 326292 327564 0 1 1272, 0, +contig25 327605 328250 KOE99155 0 - 327605 328250 0 1 645, 0, +contig25 328449 330612 KOE99156 0 - 328449 330612 0 1 2163, 0, +contig25 332298 332994 KOE99157 0 - 332298 332994 0 1 696, 0, +contig25 333200 334409 KOE99158 0 + 333200 334409 0 1 1209, 0, +contig25 334527 334863 KOE99159 0 - 334527 334863 0 1 336, 0, +contig25 334948 335758 KOE99160 0 - 334948 335758 0 1 810, 0, +contig25 335778 336285 KOE99161 0 - 335778 336285 0 1 507, 0, +contig25 336505 337597 KOE99162 0 - 336505 337597 0 1 1092, 0, +contig25 337954 338974 KOE99163 0 + 337954 338974 0 1 1020, 0, +contig25 339147 339780 KOE99164 0 + 339147 339780 0 1 633, 0, +contig25 339881 341912 KOE99165 0 + 339881 341912 0 1 2031, 0, +contig25 342210 342669 KOE99166 0 + 342210 342669 0 1 459, 0, +contig25 342753 343365 KOE99167 0 + 342753 343365 0 1 612, 0, +contig25 343432 344488 KOE99168 0 - 343432 344488 0 1 1056, 0, +contig25 344535 345039 KOE99169 0 - 344535 345039 0 1 504, 0, +contig25 345232 347113 KOE99170 0 - 345232 347113 0 1 1881, 0, +contig25 347729 348344 KOE99171 0 - 347729 348344 0 1 615, 0, +contig25 348466 349453 KOE99172 0 - 348466 349453 0 1 987, 0, +contig25 349571 350063 KOE99173 0 - 349571 350063 0 1 492, 0, +contig25 350336 352184 KOE99174 0 + 350336 352184 0 1 1848, 0, +contig25 352195 352663 KOE99175 0 + 352195 352663 0 1 468, 0, +contig25 352704 354327 KOE99176 0 + 352704 354327 0 1 1623, 0, +contig25 354399 355542 KOE99177 0 - 354399 355542 0 1 1143, 0, +contig25 356211 357603 KOE99178 0 - 356211 357603 0 1 1392, 0, +contig25 357820 359944 KOE99179 0 + 357820 359944 0 1 2124, 0, +contig25 360008 360515 KOE99180 0 - 360008 360515 0 1 507, 0, +contig25 360746 361130 KOE99181 0 - 360746 361130 0 1 384, 0, +contig25 361321 362320 KOE99182 0 - 361321 362320 0 1 999, 0, +contig25 362375 363005 KOE99183 0 - 362375 363005 0 1 630, 0, +contig25 363020 363410 KOE99184 0 - 363020 363410 0 1 390, 0, +contig25 363421 363778 KOE99185 0 - 363421 363778 0 1 357, 0, +contig25 364125 365493 KOE99186 0 - 364125 365493 0 1 1368, 0, +contig25 365500 365944 KOE99187 0 - 365500 365944 0 1 444, 0, +contig25 365950 366142 KOE99188 0 - 365950 366142 0 1 192, 0, +contig25 366134 366677 KOE99189 0 - 366134 366677 0 1 543, 0, +contig25 366838 367192 KOE99190 0 - 366838 367192 0 1 354, 0, +contig25 367224 367749 KOE99191 0 - 367224 367749 0 1 525, 0, +contig25 367767 368166 KOE99192 0 - 367767 368166 0 1 399, 0, +contig25 368424 368730 KOE99193 0 - 368424 368730 0 1 306, 0, +contig25 368748 369291 KOE99194 0 - 368748 369291 0 1 543, 0, +contig25 369302 369620 KOE99195 0 - 369302 369620 0 1 318, 0, +contig25 369636 370005 KOE99196 0 - 369636 370005 0 1 369, 0, +contig25 370017 370287 KOE99197 0 - 370017 370287 0 1 270, 0, +contig25 370298 370484 KOE99198 0 - 370298 370484 0 1 186, 0, +contig25 370483 370897 KOE99199 0 - 370483 370897 0 1 414, 0, +contig25 370902 371637 KOE99200 0 - 370902 371637 0 1 735, 0, +contig25 371655 371997 KOE99201 0 - 371655 371997 0 1 342, 0, +contig25 372003 372273 KOE99202 0 - 372003 372273 0 1 270, 0, +contig25 372279 373107 KOE99203 0 - 372279 373107 0 1 828, 0, +contig25 373117 373417 KOE99204 0 - 373117 373417 0 1 300, 0, +contig25 373413 374019 KOE99205 0 - 373413 374019 0 1 606, 0, +contig25 374031 374682 KOE99206 0 - 374031 374682 0 1 651, 0, +contig25 374693 375005 KOE99207 0 - 374693 375005 0 1 312, 0, +contig25 11114 12371 KOE99208 0 - 11114 12371 0 1 1257, 0, +contig25 32568 33273 KOE99209 0 + 32568 33273 0 1 705, 0, +contig25 43210 43951 KOE99210 0 - 43210 43951 0 1 741, 0, +contig25 48577 49216 KOE99211 0 + 48577 49216 0 1 639, 0, +contig25 64149 64404 KOE99212 0 + 64149 64404 0 1 255, 0, +contig25 64414 65140 KOE99213 0 - 64414 65140 0 1 726, 0, +contig25 84490 86545 KOE99214 0 + 84490 86545 0 1 2055, 0, +contig25 86822 89591 KOE99215 0 + 86822 89591 0 1 2769, 0, +contig25 125889 128196 KOE99216 0 + 125889 128196 0 1 2307, 0, +contig25 140636 140963 KOE99217 0 - 140636 140963 0 1 327, 0, +contig25 173897 174605 KOE99218 0 - 173897 174605 0 1 708, 0, +contig25 177113 178208 KOE99219 0 - 177113 178208 0 1 1095, 0, +contig25 198765 199665 KOE99220 0 + 198765 199665 0 1 900, 0, +contig25 232328 233396 KOE99221 0 + 232328 233396 0 1 1068, 0, +contig25 255340 257380 KOE99222 0 - 255340 257380 0 1 2040, 0, +contig25 273668 274013 KOE99223 0 - 273668 274013 0 1 345, 0, +contig25 331090 332113 KOE99224 0 + 331090 332113 0 1 1023, 0, +contig26 487 2065 KOE99225 0 - 487 2065 0 1 1578, 0, +contig26 2494 4339 KOE99226 0 + 2494 4339 0 1 1845, 0, +contig26 4432 5104 KOE99227 0 + 4432 5104 0 1 672, 0, +contig26 5364 7689 KOE99228 0 + 5364 7689 0 1 2325, 0, +contig26 7803 8703 KOE99229 0 + 7803 8703 0 1 900, 0, +contig26 8752 11611 KOE99230 0 + 8752 11611 0 1 2859, 0, +contig26 11781 11991 KOE99231 0 + 11781 11991 0 1 210, 0, +contig26 12046 13168 KOE99232 0 - 12046 13168 0 1 1122, 0, +contig26 13320 13857 KOE99233 0 - 13320 13857 0 1 537, 0, +contig26 14040 14514 KOE99234 0 + 14040 14514 0 1 474, 0, +contig26 14586 15087 KOE99235 0 + 14586 15087 0 1 501, 0, +contig26 15191 16127 KOE99236 0 + 15191 16127 0 1 936, 0, +contig26 16355 19274 KOE99237 0 + 16355 19274 0 1 2919, 0, +contig26 19424 19682 KOE99238 0 - 19424 19682 0 1 258, 0, +contig26 19788 20376 KOE99239 0 + 19788 20376 0 1 588, 0, +contig26 20407 20875 KOE99240 0 + 20407 20875 0 1 468, 0, +contig26 21599 22025 KOE99241 0 + 21599 22025 0 1 426, 0, +contig26 22021 22741 KOE99242 0 + 22021 22741 0 1 720, 0, +contig26 22820 24848 KOE99243 0 - 22820 24848 0 1 2028, 0, +contig26 25156 25660 KOE99244 0 + 25156 25660 0 1 504, 0, +contig26 26246 27041 KOE99245 0 - 26246 27041 0 1 795, 0, +contig26 27246 28503 KOE99246 0 - 27246 28503 0 1 1257, 0, +contig26 28639 29203 KOE99247 0 + 28639 29203 0 1 564, 0, +contig26 29531 30896 KOE99248 0 + 29531 30896 0 1 1365, 0, +contig26 30892 31471 KOE99249 0 + 30892 31471 0 1 579, 0, +contig26 31568 33563 KOE99250 0 - 31568 33563 0 1 1995, 0, +contig26 33648 34311 KOE99251 0 + 33648 34311 0 1 663, 0, +contig26 34307 34814 KOE99252 0 + 34307 34814 0 1 507, 0, +contig26 34971 35334 KOE99253 0 + 34971 35334 0 1 363, 0, +contig26 35408 36092 KOE99254 0 - 35408 36092 0 1 684, 0, +contig26 37112 38105 KOE99255 0 + 37112 38105 0 1 993, 0, +contig26 38140 39088 KOE99256 0 + 38140 39088 0 1 948, 0, +contig26 39153 40026 KOE99257 0 - 39153 40026 0 1 873, 0, +contig26 40089 41316 KOE99258 0 + 40089 41316 0 1 1227, 0, +contig26 41409 42012 KOE99259 0 - 41409 42012 0 1 603, 0, +contig26 42135 42585 KOE99260 0 + 42135 42585 0 1 450, 0, +contig26 42655 43945 KOE99261 0 - 42655 43945 0 1 1290, 0, +contig26 43961 44588 KOE99262 0 - 43961 44588 0 1 627, 0, +contig26 44655 44847 KOE99263 0 + 44655 44847 0 1 192, 0, +contig26 44925 45771 KOE99264 0 - 44925 45771 0 1 846, 0, +contig26 45953 46397 KOE99265 0 - 45953 46397 0 1 444, 0, +contig26 46418 47066 KOE99266 0 - 46418 47066 0 1 648, 0, +contig26 47088 47568 KOE99267 0 - 47088 47568 0 1 480, 0, +contig26 47564 48158 KOE99268 0 - 47564 48158 0 1 594, 0, +contig26 48524 48821 KOE99269 0 - 48524 48821 0 1 297, 0, +contig26 48817 49039 KOE99270 0 - 48817 49039 0 1 222, 0, +contig26 49192 49741 KOE99271 0 + 49192 49741 0 1 549, 0, +contig26 49740 51069 KOE99272 0 + 49740 51069 0 1 1329, 0, +contig26 20861 21590 KOE99273 0 + 20861 21590 0 1 729, 0, +contig26 25734 26127 KOE99274 0 - 25734 26127 0 1 393, 0, +contig26 36200 37019 KOE99275 0 + 36200 37019 0 1 819, 0, +contig27 365 1697 KOE99276 0 - 365 1697 0 1 1332, 0, +contig27 1772 2147 KOE99277 0 - 1772 2147 0 1 375, 0, +contig27 2143 4423 KOE99278 0 - 2143 4423 0 1 2280, 0, +contig27 4546 5773 KOE99279 0 - 4546 5773 0 1 1227, 0, +contig27 5829 6426 KOE99280 0 - 5829 6426 0 1 597, 0, +contig27 6422 6812 KOE99281 0 - 6422 6812 0 1 390, 0, +contig27 6808 7534 KOE99282 0 - 6808 7534 0 1 726, 0, +contig27 7658 8519 KOE99283 0 + 7658 8519 0 1 861, 0, +contig27 8576 9656 KOE99284 0 - 8576 9656 0 1 1080, 0, +contig27 11730 13155 KOE99285 0 - 11730 13155 0 1 1425, 0, +contig27 13159 14143 KOE99286 0 - 13159 14143 0 1 984, 0, +contig27 14533 15181 KOE99287 0 - 14533 15181 0 1 648, 0, +contig27 15177 16095 KOE99288 0 - 15177 16095 0 1 918, 0, +contig27 16105 18535 KOE99289 0 - 16105 18535 0 1 2430, 0, +contig27 18583 19174 KOE99290 0 - 18583 19174 0 1 591, 0, +contig27 19465 20131 KOE99291 0 + 19465 20131 0 1 666, 0, +contig27 20241 20541 KOE99292 0 + 20241 20541 0 1 300, 0, +contig27 20646 22809 KOE99293 0 + 20646 22809 0 1 2163, 0, +contig27 23006 23393 KOE99294 0 + 23006 23393 0 1 387, 0, +contig27 23400 25512 KOE99295 0 + 23400 25512 0 1 2112, 0, +contig27 25991 26930 KOE99296 0 + 25991 26930 0 1 939, 0, +contig27 27018 27261 KOE99297 0 + 27018 27261 0 1 243, 0, +contig27 27557 28835 KOE99298 0 + 27557 28835 0 1 1278, 0, +contig27 29126 30197 KOE99299 0 + 29126 30197 0 1 1071, 0, +contig27 31341 31848 KOE99300 0 + 31341 31848 0 1 507, 0, +contig27 31899 34623 KOE99301 0 + 31899 34623 0 1 2724, 0, +contig27 35210 35753 KOE99302 0 + 35210 35753 0 1 543, 0, +contig27 35770 36469 KOE99303 0 + 35770 36469 0 1 699, 0, +contig27 41810 42554 KOE99304 0 + 41810 42554 0 1 744, 0, +contig27 42730 43375 KOE99305 0 - 42730 43375 0 1 645, 0, +contig27 43735 46159 KOE99306 0 - 43735 46159 0 1 2424, 0, +contig27 46378 47437 KOE99307 0 + 46378 47437 0 1 1059, 0, +contig27 47436 48327 KOE99308 0 + 47436 48327 0 1 891, 0, +contig27 48323 48980 KOE99309 0 + 48323 48980 0 1 657, 0, +contig27 49006 49513 KOE99310 0 + 49006 49513 0 1 507, 0, +contig27 49534 51508 KOE99311 0 + 49534 51508 0 1 1974, 0, +contig27 51734 52760 KOE99312 0 + 51734 52760 0 1 1026, 0, +contig27 52768 53698 KOE99313 0 + 52768 53698 0 1 930, 0, +contig27 53694 54144 KOE99314 0 + 53694 54144 0 1 450, 0, +contig27 54140 55145 KOE99315 0 + 54140 55145 0 1 1005, 0, +contig27 56976 58692 KOE99316 0 + 56976 58692 0 1 1716, 0, +contig27 58749 60069 KOE99317 0 + 58749 60069 0 1 1320, 0, +contig27 60284 62282 KOE99318 0 + 60284 62282 0 1 1998, 0, +contig27 62553 62832 KOE99319 0 + 62553 62832 0 1 279, 0, +contig27 62843 63149 KOE99320 0 + 62843 63149 0 1 306, 0, +contig27 63235 65188 KOE99321 0 - 63235 65188 0 1 1953, 0, +contig27 65222 65780 KOE99322 0 - 65222 65780 0 1 558, 0, +contig27 65898 66264 KOE99323 0 + 65898 66264 0 1 366, 0, +contig27 66256 67498 KOE99324 0 + 66256 67498 0 1 1242, 0, +contig27 67494 68058 KOE99325 0 + 67494 68058 0 1 564, 0, +contig27 68115 68916 KOE99326 0 - 68115 68916 0 1 801, 0, +contig27 68927 69746 KOE99327 0 - 68927 69746 0 1 819, 0, +contig27 70221 70851 KOE99328 0 - 70221 70851 0 1 630, 0, +contig27 71044 72049 KOE99329 0 + 71044 72049 0 1 1005, 0, +contig27 72174 74850 KOE99330 0 + 72174 74850 0 1 2676, 0, +contig27 74846 76223 KOE99331 0 + 74846 76223 0 1 1377, 0, +contig27 9802 11734 KOE99332 0 - 9802 11734 0 1 1932, 0, +contig27 30635 31001 KOE99333 0 + 30635 31001 0 1 366, 0, +contig27 40724 41741 KOE99334 0 + 40724 41741 0 1 1017, 0, +contig27 55141 56980 KOE99335 0 + 55141 56980 0 1 1839, 0, +contig28 385 1801 KOE99336 0 + 385 1801 0 1 1416, 0, +contig28 2344 4939 KOE99337 0 - 2344 4939 0 1 2595, 0, +contig28 5013 7653 KOE99338 0 - 5013 7653 0 1 2640, 0, +contig28 7844 8207 KOE99339 0 + 7844 8207 0 1 363, 0, +contig28 8323 8671 KOE99340 0 + 8323 8671 0 1 348, 0, +contig28 9106 11008 KOE99341 0 - 9106 11008 0 1 1902, 0, +contig28 11357 12047 KOE99342 0 + 11357 12047 0 1 690, 0, +contig28 12043 13390 KOE99343 0 + 12043 13390 0 1 1347, 0, +contig28 13386 14856 KOE99344 0 - 13386 14856 0 1 1470, 0, +contig28 14852 15572 KOE99345 0 - 14852 15572 0 1 720, 0, +contig28 15716 16289 KOE99346 0 + 15716 16289 0 1 573, 0, +contig28 16291 18061 KOE99347 0 + 16291 18061 0 1 1770, 0, +contig28 18075 18813 KOE99348 0 + 18075 18813 0 1 738, 0, +contig28 19057 20509 KOE99349 0 + 19057 20509 0 1 1452, 0, +contig28 20588 21272 KOE99350 0 - 20588 21272 0 1 684, 0, +contig28 21340 21823 KOE99351 0 + 21340 21823 0 1 483, 0, +contig28 21819 22182 KOE99352 0 + 21819 22182 0 1 363, 0, +contig28 22271 22850 KOE99353 0 - 22271 22850 0 1 579, 0, +contig28 23330 25175 KOE99354 0 + 23330 25175 0 1 1845, 0, +contig28 25233 25902 KOE99355 0 - 25233 25902 0 1 669, 0, +contig28 25966 26758 KOE99356 0 - 25966 26758 0 1 792, 0, +contig28 26754 27684 KOE99357 0 - 26754 27684 0 1 930, 0, +contig28 27792 28431 KOE99358 0 + 27792 28431 0 1 639, 0, +contig28 28523 29435 KOE99359 0 + 28523 29435 0 1 912, 0, +contig28 29583 30141 KOE99360 0 + 29583 30141 0 1 558, 0, +contig28 30767 31865 KOE99361 0 - 30767 31865 0 1 1098, 0, +contig28 32056 32572 KOE99362 0 + 32056 32572 0 1 516, 0, +contig28 32571 33780 KOE99363 0 + 32571 33780 0 1 1209, 0, +contig28 33877 34561 KOE99364 0 - 33877 34561 0 1 684, 0, +contig28 34557 35259 KOE99365 0 - 34557 35259 0 1 702, 0, +contig28 35255 36320 KOE99366 0 - 35255 36320 0 1 1065, 0, +contig28 36477 36741 KOE99367 0 + 36477 36741 0 1 264, 0, +contig28 36811 37105 KOE99368 0 - 36811 37105 0 1 294, 0, +contig28 37148 39137 KOE99369 0 - 37148 39137 0 1 1989, 0, +contig28 39382 39946 KOE99370 0 + 39382 39946 0 1 564, 0, +contig28 40035 41103 KOE99371 0 - 40035 41103 0 1 1068, 0, +contig28 41081 42386 KOE99372 0 - 41081 42386 0 1 1305, 0, +contig28 42535 43015 KOE99373 0 + 42535 43015 0 1 480, 0, +contig28 43071 43254 KOE99374 0 - 43071 43254 0 1 183, 0, +contig28 43397 43784 KOE99375 0 - 43397 43784 0 1 387, 0, +contig28 43924 44392 KOE99376 0 + 43924 44392 0 1 468, 0, +contig28 44482 45337 KOE99377 0 + 44482 45337 0 1 855, 0, +contig28 45340 46279 KOE99378 0 + 45340 46279 0 1 939, 0, +contig28 46376 46865 KOE99379 0 + 46376 46865 0 1 489, 0, +contig28 46878 47154 KOE99380 0 + 46878 47154 0 1 276, 0, +contig28 47245 47788 KOE99381 0 - 47245 47788 0 1 543, 0, +contig28 47878 48127 KOE99382 0 + 47878 48127 0 1 249, 0, +contig28 48171 49821 KOE99383 0 - 48171 49821 0 1 1650, 0, +contig28 49938 50730 KOE99384 0 - 49938 50730 0 1 792, 0, +contig28 50761 51172 KOE99385 0 - 50761 51172 0 1 411, 0, +contig28 51268 52150 KOE99386 0 + 51268 52150 0 1 882, 0, +contig28 55436 57548 KOE99387 0 + 55436 57548 0 1 2112, 0, +contig28 57656 58586 KOE99388 0 - 57656 58586 0 1 930, 0, +contig28 58895 59510 KOE99389 0 + 58895 59510 0 1 615, 0, +contig28 59549 59894 KOE99390 0 - 59549 59894 0 1 345, 0, +contig28 59912 60683 KOE99391 0 - 59912 60683 0 1 771, 0, +contig28 60672 61932 KOE99392 0 - 60672 61932 0 1 1260, 0, +contig28 62108 63758 KOE99393 0 - 62108 63758 0 1 1650, 0, +contig28 64105 65752 KOE99394 0 - 64105 65752 0 1 1647, 0, +contig28 65768 66446 KOE99395 0 - 65768 66446 0 1 678, 0, +contig28 66581 67682 KOE99396 0 - 66581 67682 0 1 1101, 0, +contig28 67672 68869 KOE99397 0 - 67672 68869 0 1 1197, 0, +contig28 68976 70239 KOE99398 0 - 68976 70239 0 1 1263, 0, +contig28 70284 70641 KOE99399 0 - 70284 70641 0 1 357, 0, +contig28 70665 71076 KOE99400 0 - 70665 71076 0 1 411, 0, +contig28 71116 71539 KOE99401 0 - 71116 71539 0 1 423, 0, +contig28 71606 72020 KOE99402 0 - 71606 72020 0 1 414, 0, +contig28 52197 55260 KOE99403 0 - 52197 55260 0 1 3063, 0, +contig29 461 869 KOE99404 0 + 461 869 0 1 408, 0, +contig29 846 2928 KOE99405 0 - 846 2928 0 1 2082, 0, +contig29 3093 4614 KOE99406 0 + 3093 4614 0 1 1521, 0, +contig29 4707 5484 KOE99407 0 - 4707 5484 0 1 777, 0, +contig29 5768 7142 KOE99408 0 - 5768 7142 0 1 1374, 0, +contig29 7372 8989 KOE99409 0 + 7372 8989 0 1 1617, 0, +contig29 9309 10494 KOE99410 0 - 9309 10494 0 1 1185, 0, +contig29 10490 11669 KOE99411 0 - 10490 11669 0 1 1179, 0, +contig29 11897 12797 KOE99412 0 + 11897 12797 0 1 900, 0, +contig29 13060 14668 KOE99413 0 + 13060 14668 0 1 1608, 0, +contig29 14788 16114 KOE99414 0 - 14788 16114 0 1 1326, 0, +contig29 16183 16558 KOE99415 0 + 16183 16558 0 1 375, 0, +contig29 16653 16938 KOE99416 0 - 16653 16938 0 1 285, 0, +contig29 16991 17969 KOE99417 0 + 16991 17969 0 1 978, 0, +contig29 18092 18377 KOE99418 0 - 18092 18377 0 1 285, 0, +contig29 18467 18884 KOE99419 0 + 18467 18884 0 1 417, 0, +contig29 18953 19277 KOE99420 0 + 18953 19277 0 1 324, 0, +contig29 19405 20248 KOE99421 0 + 19405 20248 0 1 843, 0, +contig29 20251 21220 KOE99422 0 - 20251 21220 0 1 969, 0, +contig29 21290 21950 KOE99423 0 - 21290 21950 0 1 660, 0, +contig29 22083 22764 KOE99424 0 + 22083 22764 0 1 681, 0, +contig29 23032 23845 KOE99425 0 - 23032 23845 0 1 813, 0, +contig29 24066 24546 KOE99426 0 + 24066 24546 0 1 480, 0, +contig29 24621 25038 KOE99427 0 + 24621 25038 0 1 417, 0, +contig29 25100 26171 KOE99428 0 - 25100 26171 0 1 1071, 0, +contig29 26206 26782 KOE99429 0 - 26206 26782 0 1 576, 0, +contig29 26925 28071 KOE99430 0 - 26925 28071 0 1 1146, 0, +contig29 28238 29165 KOE99431 0 - 28238 29165 0 1 927, 0, +contig29 29379 30249 KOE99432 0 + 29379 30249 0 1 870, 0, +contig29 30270 31596 KOE99433 0 + 30270 31596 0 1 1326, 0, +contig29 31682 31904 KOE99434 0 + 31682 31904 0 1 222, 0, +contig29 32390 32759 KOE99435 0 + 32390 32759 0 1 369, 0, +contig29 33383 34289 KOE99436 0 + 33383 34289 0 1 906, 0, +contig29 36049 37363 KOE99437 0 + 36049 37363 0 1 1314, 0, +contig29 37369 38425 KOE99438 0 - 37369 38425 0 1 1056, 0, +contig29 38414 39068 KOE99439 0 - 38414 39068 0 1 654, 0, +contig29 39064 41068 KOE99440 0 - 39064 41068 0 1 2004, 0, +contig29 41206 42436 KOE99441 0 - 41206 42436 0 1 1230, 0, +contig29 42444 43122 KOE99442 0 - 42444 43122 0 1 678, 0, +contig29 43129 45145 KOE99443 0 - 43129 45145 0 1 2016, 0, +contig29 46312 49000 KOE99444 0 - 46312 49000 0 1 2688, 0, +contig29 49545 50106 KOE99445 0 + 49545 50106 0 1 561, 0, +contig29 50166 50964 KOE99446 0 + 50166 50964 0 1 798, 0, +contig29 51241 51643 KOE99447 0 + 51241 51643 0 1 402, 0, +contig29 52594 53185 KOE99448 0 - 52594 53185 0 1 591, 0, +contig29 53311 54271 KOE99449 0 + 53311 54271 0 1 960, 0, +contig29 54399 54630 KOE99450 0 + 54399 54630 0 1 231, 0, +contig29 54678 55530 KOE99451 0 + 54678 55530 0 1 852, 0, +contig29 56085 56601 KOE99452 0 + 56085 56601 0 1 516, 0, +contig29 56676 57237 KOE99453 0 + 56676 57237 0 1 561, 0, +contig29 57379 60175 KOE99454 0 - 57379 60175 0 1 2796, 0, +contig29 60562 62077 KOE99455 0 + 60562 62077 0 1 1515, 0, +contig29 62172 63534 KOE99456 0 - 62172 63534 0 1 1362, 0, +contig29 63699 64188 KOE99457 0 - 63699 64188 0 1 489, 0, +contig29 64219 64972 KOE99458 0 - 64219 64972 0 1 753, 0, +contig29 65067 65478 KOE99459 0 - 65067 65478 0 1 411, 0, +contig29 65710 66082 KOE99460 0 - 65710 66082 0 1 372, 0, +contig29 66602 67316 KOE99461 0 - 66602 67316 0 1 714, 0, +contig29 67248 68805 KOE99462 0 - 67248 68805 0 1 1557, 0, +contig29 68860 71884 KOE99463 0 - 68860 71884 0 1 3024, 0, +contig29 71935 73408 KOE99464 0 - 71935 73408 0 1 1473, 0, +contig29 74976 76071 KOE99465 0 + 74976 76071 0 1 1095, 0, +contig29 76585 77434 KOE99466 0 + 76585 77434 0 1 849, 0, +contig29 77449 78211 KOE99467 0 + 77449 78211 0 1 762, 0, +contig29 78207 79509 KOE99468 0 + 78207 79509 0 1 1302, 0, +contig29 79619 79943 KOE99469 0 + 79619 79943 0 1 324, 0, +contig29 80050 80506 KOE99470 0 - 80050 80506 0 1 456, 0, +contig29 80676 81843 KOE99471 0 + 80676 81843 0 1 1167, 0, +contig29 81889 82432 KOE99472 0 - 81889 82432 0 1 543, 0, +contig29 82563 84738 KOE99473 0 - 82563 84738 0 1 2175, 0, +contig29 84866 86138 KOE99474 0 - 84866 86138 0 1 1272, 0, +contig29 86197 86551 KOE99475 0 - 86197 86551 0 1 354, 0, +contig29 86909 87575 KOE99476 0 + 86909 87575 0 1 666, 0, +contig29 87608 88634 KOE99477 0 - 87608 88634 0 1 1026, 0, +contig29 88800 89016 KOE99478 0 + 88800 89016 0 1 216, 0, +contig29 89149 89593 KOE99479 0 + 89149 89593 0 1 444, 0, +contig29 89696 90641 KOE99480 0 + 89696 90641 0 1 945, 0, +contig29 90701 92444 KOE99481 0 + 90701 92444 0 1 1743, 0, +contig29 92472 92973 KOE99482 0 + 92472 92973 0 1 501, 0, +contig29 93001 93973 KOE99483 0 + 93001 93973 0 1 972, 0, +contig29 95073 95967 KOE99484 0 - 95073 95967 0 1 894, 0, +contig29 95971 97135 KOE99485 0 - 95971 97135 0 1 1164, 0, +contig29 97145 97715 KOE99486 0 - 97145 97715 0 1 570, 0, +contig29 97728 98466 KOE99487 0 - 97728 98466 0 1 738, 0, +contig29 98523 98742 KOE99488 0 + 98523 98742 0 1 219, 0, +contig29 98762 99638 KOE99489 0 - 98762 99638 0 1 876, 0, +contig29 99651 100242 KOE99490 0 - 99651 100242 0 1 591, 0, +contig29 100238 100457 KOE99491 0 - 100238 100457 0 1 219, 0, +contig29 100465 102073 KOE99492 0 - 100465 102073 0 1 1608, 0, +contig29 102132 103089 KOE99493 0 - 102132 103089 0 1 957, 0, +contig29 103100 103577 KOE99494 0 - 103100 103577 0 1 477, 0, +contig29 103851 107070 KOE99495 0 + 103851 107070 0 1 3219, 0, +contig29 107188 107761 KOE99496 0 - 107188 107761 0 1 573, 0, +contig29 107873 109223 KOE99497 0 - 107873 109223 0 1 1350, 0, +contig29 109451 110144 KOE99498 0 + 109451 110144 0 1 693, 0, +contig29 110247 111741 KOE99499 0 - 110247 111741 0 1 1494, 0, +contig29 111849 113148 KOE99500 0 - 111849 113148 0 1 1299, 0, +contig29 113243 113906 KOE99501 0 + 113243 113906 0 1 663, 0, +contig29 113992 115702 KOE99502 0 + 113992 115702 0 1 1710, 0, +contig29 51800 52334 KOE99503 0 - 51800 52334 0 1 534, 0, +contig29 55549 56053 KOE99504 0 + 55549 56053 0 1 504, 0, +contig29 73540 74980 KOE99505 0 + 73540 74980 0 1 1440, 0, +contig30 462 1359 KOE99506 0 + 462 1359 0 1 897, 0, +contig30 1358 2312 KOE99507 0 + 1358 2312 0 1 954, 0, +contig30 2408 2684 KOE99508 0 + 2408 2684 0 1 276, 0, +contig30 2698 4009 KOE99509 0 + 2698 4009 0 1 1311, 0, +contig30 6508 7144 KOE99510 0 + 6508 7144 0 1 636, 0, +contig30 7348 8386 KOE99511 0 + 7348 8386 0 1 1038, 0, +contig30 8496 8988 KOE99512 0 + 8496 8988 0 1 492, 0, +contig30 9098 11747 KOE99513 0 + 9098 11747 0 1 2649, 0, +contig30 11894 12098 KOE99514 0 + 11894 12098 0 1 204, 0, +contig30 12364 12820 KOE99515 0 - 12364 12820 0 1 456, 0, +contig30 12934 15265 KOE99516 0 - 12934 15265 0 1 2331, 0, +contig30 15404 16340 KOE99517 0 + 15404 16340 0 1 936, 0, +contig30 18640 19747 KOE99518 0 - 18640 19747 0 1 1107, 0, +contig30 19746 22242 KOE99519 0 - 19746 22242 0 1 2496, 0, +contig30 22328 23486 KOE99520 0 - 22328 23486 0 1 1158, 0, +contig30 23482 24712 KOE99521 0 - 23482 24712 0 1 1230, 0, +contig30 24903 25386 KOE99522 0 + 24903 25386 0 1 483, 0, +contig30 25437 28110 KOE99523 0 - 25437 28110 0 1 2673, 0, +contig30 28354 28753 KOE99524 0 - 28354 28753 0 1 399, 0, +contig30 28791 29307 KOE99525 0 + 28791 29307 0 1 516, 0, +contig30 29303 30326 KOE99526 0 + 29303 30326 0 1 1023, 0, +contig30 30467 33401 KOE99527 0 + 30467 33401 0 1 2934, 0, +contig30 33411 35007 KOE99528 0 + 33411 35007 0 1 1596, 0, +contig30 35107 37216 KOE99529 0 - 35107 37216 0 1 2109, 0, +contig30 37224 39603 KOE99530 0 - 37224 39603 0 1 2379, 0, +contig30 39718 40645 KOE99531 0 - 39718 40645 0 1 927, 0, +contig30 40641 41988 KOE99532 0 - 40641 41988 0 1 1347, 0, +contig30 42171 43290 KOE99533 0 + 42171 43290 0 1 1119, 0, +contig30 43371 44511 KOE99534 0 - 43371 44511 0 1 1140, 0, +contig30 44695 45391 KOE99535 0 + 44695 45391 0 1 696, 0, +contig30 45523 47722 KOE99536 0 + 45523 47722 0 1 2199, 0, +contig30 47835 48537 KOE99537 0 - 47835 48537 0 1 702, 0, +contig30 48677 49598 KOE99538 0 + 48677 49598 0 1 921, 0, +contig30 4131 4626 KOE99539 0 + 4131 4626 0 1 495, 0, +contig30 4660 6343 KOE99540 0 + 4660 6343 0 1 1683, 0, +contig30 16478 18623 KOE99541 0 + 16478 18623 0 1 2145, 0, +contig31 0 916 KOE99542 0 - 0 916 0 1 916, 0, +contig31 912 1722 KOE99543 0 - 912 1722 0 1 810, 0, +contig31 1849 2518 KOE99544 0 - 1849 2518 0 1 669, 0, +contig31 2530 3037 KOE99545 0 - 2530 3037 0 1 507, 0, +contig31 3033 4434 KOE99546 0 - 3033 4434 0 1 1401, 0, +contig31 4518 4998 KOE99547 0 - 4518 4998 0 1 480, 0, +contig31 5090 5651 KOE99548 0 - 5090 5651 0 1 561, 0, +contig31 5815 6709 KOE99549 0 + 5815 6709 0 1 894, 0, +contig31 6741 7257 KOE99550 0 + 6741 7257 0 1 516, 0, +contig31 7453 7777 KOE99551 0 - 7453 7777 0 1 324, 0, +contig31 7969 9394 KOE99552 0 + 7969 9394 0 1 1425, 0, +contig31 9970 11344 KOE99553 0 + 9970 11344 0 1 1374, 0, +contig31 11347 11833 KOE99554 0 + 11347 11833 0 1 486, 0, +contig31 11867 12683 KOE99555 0 + 11867 12683 0 1 816, 0, +contig31 12679 13519 KOE99556 0 + 12679 13519 0 1 840, 0, +contig31 13585 14083 KOE99557 0 + 13585 14083 0 1 498, 0, +contig31 14170 14551 KOE99558 0 + 14170 14551 0 1 381, 0, +contig31 14547 16062 KOE99559 0 + 14547 16062 0 1 1515, 0, +contig31 16378 16585 KOE99560 0 + 16378 16585 0 1 207, 0, +contig31 16667 19565 KOE99561 0 + 16667 19565 0 1 2898, 0, +contig31 19586 20150 KOE99562 0 - 19586 20150 0 1 564, 0, +contig31 20146 21373 KOE99563 0 - 20146 21373 0 1 1227, 0, +contig31 21487 22753 KOE99564 0 + 21487 22753 0 1 1266, 0, +contig31 22733 23483 KOE99565 0 + 22733 23483 0 1 750, 0, +contig31 23684 24332 KOE99566 0 + 23684 24332 0 1 648, 0, +contig31 24430 25090 KOE99567 0 - 24430 25090 0 1 660, 0, +contig31 25295 27212 KOE99568 0 - 25295 27212 0 1 1917, 0, +contig31 27270 27993 KOE99569 0 - 27270 27993 0 1 723, 0, +contig31 27989 28997 KOE99570 0 - 27989 28997 0 1 1008, 0, +contig31 28993 30430 KOE99571 0 - 28993 30430 0 1 1437, 0, +contig31 30782 31865 KOE99572 0 + 30782 31865 0 1 1083, 0, +contig31 31966 32842 KOE99573 0 - 31966 32842 0 1 876, 0, +contig31 33108 33501 KOE99574 0 + 33108 33501 0 1 393, 0, +contig31 33497 33884 KOE99575 0 + 33497 33884 0 1 387, 0, +contig31 33915 35706 KOE99576 0 + 33915 35706 0 1 1791, 0, +contig31 35772 36558 KOE99577 0 + 35772 36558 0 1 786, 0, +contig31 36631 36880 KOE99578 0 + 36631 36880 0 1 249, 0, +contig31 36830 37280 KOE99579 0 + 36830 37280 0 1 450, 0, +contig31 37303 38545 KOE99580 0 + 37303 38545 0 1 1242, 0, +contig31 38537 39251 KOE99581 0 + 38537 39251 0 1 714, 0, +contig31 39472 39922 KOE99582 0 + 39472 39922 0 1 450, 0, +contig32 0 247 KOE99583 0 - 0 247 0 1 247, 0, +contig32 252 1377 KOE99584 0 - 252 1377 0 1 1125, 0, +contig32 1468 2791 KOE99585 0 - 1468 2791 0 1 1323, 0, +contig32 2920 3226 KOE99586 0 + 2920 3226 0 1 306, 0, +contig32 3394 5287 KOE99587 0 - 3394 5287 0 1 1893, 0, +contig32 5933 6512 KOE99588 0 + 5933 6512 0 1 579, 0, +contig32 6538 7048 KOE99589 0 + 6538 7048 0 1 510, 0, +contig32 7108 7600 KOE99590 0 + 7108 7600 0 1 492, 0, +contig32 7732 8014 KOE99591 0 + 7732 8014 0 1 282, 0, +contig32 8010 9741 KOE99592 0 + 8010 9741 0 1 1731, 0, +contig32 9861 10749 KOE99593 0 + 9861 10749 0 1 888, 0, +contig32 10833 11127 KOE99594 0 - 10833 11127 0 1 294, 0, +contig32 11590 12070 KOE99595 0 + 11590 12070 0 1 480, 0, +contig32 12129 12762 KOE99596 0 - 12129 12762 0 1 633, 0, +contig32 12929 15491 KOE99597 0 + 12929 15491 0 1 2562, 0, +contig32 15490 16606 KOE99598 0 + 15490 16606 0 1 1116, 0, +contig32 16602 17970 KOE99599 0 + 16602 17970 0 1 1368, 0, +contig32 17980 18595 KOE99600 0 + 17980 18595 0 1 615, 0, +contig32 18684 20100 KOE99601 0 + 18684 20100 0 1 1416, 0, +contig32 20239 20935 KOE99602 0 + 20239 20935 0 1 696, 0, +contig32 21265 22297 KOE99603 0 - 21265 22297 0 1 1032, 0, +contig32 22444 22672 KOE99604 0 + 22444 22672 0 1 228, 0, +contig32 22668 23439 KOE99605 0 + 22668 23439 0 1 771, 0, +contig32 23530 24754 KOE99606 0 + 23530 24754 0 1 1224, 0, +contig32 24881 28052 KOE99607 0 + 24881 28052 0 1 3171, 0, +contig32 28116 28854 KOE99608 0 + 28116 28854 0 1 738, 0, +contig32 28847 30269 KOE99609 0 + 28847 30269 0 1 1422, 0, +contig32 30310 30688 KOE99610 0 - 30310 30688 0 1 378, 0, +contig32 30827 31091 KOE99611 0 + 30827 31091 0 1 264, 0, +contig32 31110 31965 KOE99612 0 - 31110 31965 0 1 855, 0, +contig32 32103 32349 KOE99613 0 - 32103 32349 0 1 246, 0, +contig32 32375 32624 KOE99614 0 - 32375 32624 0 1 249, 0, +contig32 32702 33407 KOE99615 0 - 32702 33407 0 1 705, 0, +contig32 33412 34285 KOE99616 0 - 33412 34285 0 1 873, 0, +contig32 34355 35267 KOE99617 0 - 34355 35267 0 1 912, 0, +contig32 35386 36079 KOE99618 0 + 35386 36079 0 1 693, 0, +contig32 36154 38176 KOE99619 0 - 36154 38176 0 1 2022, 0, +contig32 38329 38791 KOE99620 0 + 38329 38791 0 1 462, 0, +contig32 38961 41088 KOE99621 0 + 38961 41088 0 1 2127, 0, +contig32 41188 41674 KOE99622 0 - 41188 41674 0 1 486, 0, +contig32 41817 43215 KOE99623 0 - 41817 43215 0 1 1398, 0, +contig32 44249 45341 KOE99624 0 + 44249 45341 0 1 1092, 0, +contig32 46000 46573 KOE99625 0 + 46000 46573 0 1 573, 0, +contig32 46699 47203 KOE99626 0 - 46699 47203 0 1 504, 0, +contig32 47260 47686 KOE99627 0 + 47260 47686 0 1 426, 0, +contig32 47689 47947 KOE99628 0 + 47689 47947 0 1 258, 0, +contig32 47983 48376 KOE99629 0 - 47983 48376 0 1 393, 0, +contig32 48479 48887 KOE99630 0 + 48479 48887 0 1 408, 0, +contig32 48946 50191 KOE99631 0 - 48946 50191 0 1 1245, 0, +contig32 50288 51206 KOE99632 0 + 50288 51206 0 1 918, 0, +contig32 51306 52968 KOE99633 0 - 51306 52968 0 1 1662, 0, +contig32 53083 54148 KOE99634 0 + 53083 54148 0 1 1065, 0, +contig32 54211 54727 KOE99635 0 + 54211 54727 0 1 516, 0, +contig32 54909 56835 KOE99636 0 + 54909 56835 0 1 1926, 0, +contig32 56989 58111 KOE99637 0 + 56989 58111 0 1 1122, 0, +contig32 58170 58968 KOE99638 0 - 58170 58968 0 1 798, 0, +contig32 59040 60240 KOE99639 0 + 59040 60240 0 1 1200, 0, +contig32 60822 61731 KOE99640 0 + 60822 61731 0 1 909, 0, +contig32 61727 62852 KOE99641 0 + 61727 62852 0 1 1125, 0, +contig32 63078 63273 KOE99642 0 - 63078 63273 0 1 195, 0, +contig32 63343 65116 KOE99643 0 - 63343 65116 0 1 1773, 0, +contig32 65745 66759 KOE99644 0 - 65745 66759 0 1 1014, 0, +contig32 67521 70362 KOE99645 0 + 67521 70362 0 1 2841, 0, +contig32 70381 70975 KOE99646 0 - 70381 70975 0 1 594, 0, +contig32 71239 72736 KOE99647 0 - 71239 72736 0 1 1497, 0, +contig32 72947 74015 KOE99648 0 + 72947 74015 0 1 1068, 0, +contig32 74192 75323 KOE99649 0 + 74192 75323 0 1 1131, 0, +contig32 75456 75801 KOE99650 0 + 75456 75801 0 1 345, 0, +contig32 75862 77719 KOE99651 0 + 75862 77719 0 1 1857, 0, +contig32 77735 78716 KOE99652 0 + 77735 78716 0 1 981, 0, +contig32 79387 80647 KOE99653 0 + 79387 80647 0 1 1260, 0, +contig32 82921 84106 KOE99654 0 - 82921 84106 0 1 1185, 0, +contig32 84102 84651 KOE99655 0 - 84102 84651 0 1 549, 0, +contig32 84774 85653 KOE99656 0 + 84774 85653 0 1 879, 0, +contig32 85659 86148 KOE99657 0 - 85659 86148 0 1 489, 0, +contig32 86450 86660 KOE99658 0 + 86450 86660 0 1 210, 0, +contig32 86845 87535 KOE99659 0 + 86845 87535 0 1 690, 0, +contig32 87567 89133 KOE99660 0 + 87567 89133 0 1 1566, 0, +contig32 11250 11619 KOE99661 0 + 11250 11619 0 1 369, 0, +contig32 65108 65705 KOE99662 0 - 65108 65705 0 1 597, 0, +contig32 66755 67310 KOE99663 0 - 66755 67310 0 1 555, 0, +contig32 80760 82830 KOE99664 0 - 80760 82830 0 1 2070, 0, +contig33 755 2132 KOE99665 0 - 755 2132 0 1 1377, 0, +contig33 2217 3297 KOE99666 0 - 2217 3297 0 1 1080, 0, +contig33 3399 4275 KOE99667 0 + 3399 4275 0 1 876, 0, +contig33 6657 7119 KOE99668 0 - 6657 7119 0 1 462, 0, +contig33 7128 7518 KOE99669 0 - 7128 7518 0 1 390, 0, +contig33 7724 8876 KOE99670 0 + 7724 8876 0 1 1152, 0, +contig33 8872 12394 KOE99671 0 + 8872 12394 0 1 3522, 0, +contig33 12390 15471 KOE99672 0 + 12390 15471 0 1 3081, 0, +contig33 15671 16904 KOE99673 0 - 15671 16904 0 1 1233, 0, +contig33 16896 17427 KOE99674 0 - 16896 17427 0 1 531, 0, +contig33 17440 18328 KOE99675 0 - 17440 18328 0 1 888, 0, +contig33 18493 19531 KOE99676 0 - 18493 19531 0 1 1038, 0, +contig33 19570 19900 KOE99677 0 - 19570 19900 0 1 330, 0, +contig33 20045 20171 KOE99678 0 - 20045 20171 0 1 126, 0, +contig33 20368 21046 KOE99679 0 + 20368 21046 0 1 678, 0, +contig33 21244 22930 KOE99680 0 + 21244 22930 0 1 1686, 0, +contig33 23017 23323 KOE99681 0 + 23017 23323 0 1 306, 0, +contig33 23400 23685 KOE99682 0 + 23400 23685 0 1 285, 0, +contig33 23691 24870 KOE99683 0 + 23691 24870 0 1 1179, 0, +contig33 24873 25863 KOE99684 0 + 24873 25863 0 1 990, 0, +contig33 25866 27780 KOE99685 0 + 25866 27780 0 1 1914, 0, +contig33 27776 28655 KOE99686 0 + 27776 28655 0 1 879, 0, +contig33 29214 30423 KOE99687 0 - 29214 30423 0 1 1209, 0, +contig33 30532 32905 KOE99688 0 - 30532 32905 0 1 2373, 0, +contig33 32944 33598 KOE99689 0 - 32944 33598 0 1 654, 0, +contig33 33943 34369 KOE99690 0 + 33943 34369 0 1 426, 0, +contig33 34379 35585 KOE99691 0 + 34379 35585 0 1 1206, 0, +contig33 35571 36357 KOE99692 0 + 35571 36357 0 1 786, 0, +contig33 36375 37248 KOE99693 0 + 36375 37248 0 1 873, 0, +contig33 37313 37952 KOE99694 0 + 37313 37952 0 1 639, 0, +contig33 37951 39160 KOE99695 0 + 37951 39160 0 1 1209, 0, +contig33 39177 40575 KOE99696 0 + 39177 40575 0 1 1398, 0, +contig33 41778 42702 KOE99697 0 + 41778 42702 0 1 924, 0, +contig33 42856 43993 KOE99698 0 + 42856 43993 0 1 1137, 0, +contig33 44316 46149 KOE99699 0 + 44316 46149 0 1 1833, 0, +contig33 46317 47193 KOE99700 0 + 46317 47193 0 1 876, 0, +contig33 49085 49565 KOE99701 0 + 49085 49565 0 1 480, 0, +contig33 49561 51127 KOE99702 0 + 49561 51127 0 1 1566, 0, +contig33 51271 53557 KOE99703 0 + 51271 53557 0 1 2286, 0, +contig33 57789 58707 KOE99704 0 - 57789 58707 0 1 918, 0, +contig33 58803 59643 KOE99705 0 + 58803 59643 0 1 840, 0, +contig33 59740 60478 KOE99706 0 + 59740 60478 0 1 738, 0, +contig33 61122 61905 KOE99707 0 + 61122 61905 0 1 783, 0, +contig33 61901 62273 KOE99708 0 - 61901 62273 0 1 372, 0, +contig33 62265 63132 KOE99709 0 - 62265 63132 0 1 867, 0, +contig33 63128 63548 KOE99710 0 - 63128 63548 0 1 420, 0, +contig33 63682 64141 KOE99711 0 - 63682 64141 0 1 459, 0, +contig33 64143 64458 KOE99712 0 - 64143 64458 0 1 315, 0, +contig33 64469 64925 KOE99713 0 - 64469 64925 0 1 456, 0, +contig33 65088 65613 KOE99714 0 + 65088 65613 0 1 525, 0, +contig33 65754 67524 KOE99715 0 + 65754 67524 0 1 1770, 0, +contig33 67610 68198 KOE99716 0 + 67610 68198 0 1 588, 0, +contig33 68289 68784 KOE99717 0 + 68289 68784 0 1 495, 0, +contig33 68818 69820 KOE99718 0 - 68818 69820 0 1 1002, 0, +contig33 70158 72735 KOE99719 0 + 70158 72735 0 1 2577, 0, +contig33 72851 73433 KOE99720 0 + 72851 73433 0 1 582, 0, +contig33 73590 73953 KOE99721 0 + 73590 73953 0 1 363, 0, +contig33 73967 74945 KOE99722 0 + 73967 74945 0 1 978, 0, +contig33 74963 76307 KOE99723 0 + 74963 76307 0 1 1344, 0, +contig33 77528 78080 KOE99724 0 + 77528 78080 0 1 552, 0, +contig33 79838 80816 KOE99725 0 + 79838 80816 0 1 978, 0, +contig33 80875 83995 KOE99726 0 - 80875 83995 0 1 3120, 0, +contig33 84160 85237 KOE99727 0 - 84160 85237 0 1 1077, 0, +contig33 85341 85953 KOE99728 0 + 85341 85953 0 1 612, 0, +contig33 85949 87896 KOE99729 0 - 85949 87896 0 1 1947, 0, +contig33 87992 88709 KOE99730 0 - 87992 88709 0 1 717, 0, +contig33 88799 89603 KOE99731 0 + 88799 89603 0 1 804, 0, +contig33 89575 90001 KOE99732 0 - 89575 90001 0 1 426, 0, +contig33 90144 90735 KOE99733 0 + 90144 90735 0 1 591, 0, +contig33 90731 91766 KOE99734 0 + 90731 91766 0 1 1035, 0, +contig33 91865 92870 KOE99735 0 + 91865 92870 0 1 1005, 0, +contig33 92988 93876 KOE99736 0 - 92988 93876 0 1 888, 0, +contig33 93908 94970 KOE99737 0 - 93908 94970 0 1 1062, 0, +contig33 94978 96034 KOE99738 0 - 94978 96034 0 1 1056, 0, +contig33 96042 96813 KOE99739 0 - 96042 96813 0 1 771, 0, +contig33 96818 97103 KOE99740 0 - 96818 97103 0 1 285, 0, +contig33 97263 98073 KOE99741 0 - 97263 98073 0 1 810, 0, +contig33 98113 99646 KOE99742 0 - 98113 99646 0 1 1533, 0, +contig33 99804 100848 KOE99743 0 - 99804 100848 0 1 1044, 0, +contig33 100896 101823 KOE99744 0 - 100896 101823 0 1 927, 0, +contig33 101819 102587 KOE99745 0 - 101819 102587 0 1 768, 0, +contig33 103002 104406 KOE99746 0 - 103002 104406 0 1 1404, 0, +contig33 104415 104751 KOE99747 0 + 104415 104751 0 1 336, 0, +contig33 104827 106117 KOE99748 0 - 104827 106117 0 1 1290, 0, +contig33 106138 106963 KOE99749 0 - 106138 106963 0 1 825, 0, +contig33 106985 108353 KOE99750 0 - 106985 108353 0 1 1368, 0, +contig33 108349 109744 KOE99751 0 - 108349 109744 0 1 1395, 0, +contig33 109852 110914 KOE99752 0 - 109852 110914 0 1 1062, 0, +contig33 110926 111826 KOE99753 0 - 110926 111826 0 1 900, 0, +contig33 111822 112722 KOE99754 0 - 111822 112722 0 1 900, 0, +contig33 112723 113302 KOE99755 0 - 112723 113302 0 1 579, 0, +contig33 113329 114397 KOE99756 0 - 113329 114397 0 1 1068, 0, +contig33 114401 115178 KOE99757 0 - 114401 115178 0 1 777, 0, +contig33 115311 116448 KOE99758 0 - 115311 116448 0 1 1137, 0, +contig33 118296 118737 KOE99759 0 + 118296 118737 0 1 441, 0, +contig33 118775 121004 KOE99760 0 + 118775 121004 0 1 2229, 0, +contig33 121187 123308 KOE99761 0 - 121187 123308 0 1 2121, 0, +contig33 123439 123748 KOE99762 0 + 123439 123748 0 1 309, 0, +contig33 124783 125890 KOE99763 0 - 124783 125890 0 1 1107, 0, +contig33 125978 126287 KOE99764 0 - 125978 126287 0 1 309, 0, +contig33 126396 126987 KOE99765 0 - 126396 126987 0 1 591, 0, +contig33 127321 128251 KOE99766 0 + 127321 128251 0 1 930, 0, +contig33 128262 128781 KOE99767 0 - 128262 128781 0 1 519, 0, +contig33 128857 129091 KOE99768 0 - 128857 129091 0 1 234, 0, +contig33 130669 130879 KOE99769 0 - 130669 130879 0 1 210, 0, +contig33 131111 131726 KOE99770 0 - 131111 131726 0 1 615, 0, +contig33 131722 132019 KOE99771 0 - 131722 132019 0 1 297, 0, +contig33 132045 132420 KOE99772 0 - 132045 132420 0 1 375, 0, +contig33 132446 132692 KOE99773 0 - 132446 132692 0 1 246, 0, +contig33 132666 133050 KOE99774 0 - 132666 133050 0 1 384, 0, +contig33 133860 134211 KOE99775 0 + 133860 134211 0 1 351, 0, +contig33 134334 134910 KOE99776 0 + 134334 134910 0 1 576, 0, +contig33 136602 136824 KOE99777 0 - 136602 136824 0 1 222, 0, +contig33 137703 138150 KOE99778 0 + 137703 138150 0 1 447, 0, +contig33 138671 139115 KOE99779 0 + 138671 139115 0 1 444, 0, +contig33 139118 140294 KOE99780 0 - 139118 140294 0 1 1176, 0, +contig33 141089 143843 KOE99781 0 - 141089 143843 0 1 2754, 0, +contig33 143950 144271 KOE99782 0 - 143950 144271 0 1 321, 0, +contig33 144417 145407 KOE99783 0 - 144417 145407 0 1 990, 0, +contig33 145509 145848 KOE99784 0 + 145509 145848 0 1 339, 0, +contig33 145936 146134 KOE99785 0 - 145936 146134 0 1 198, 0, +contig33 146249 146627 KOE99786 0 - 146249 146627 0 1 378, 0, +contig33 146654 147053 KOE99787 0 - 146654 147053 0 1 399, 0, +contig33 147143 149108 KOE99788 0 - 147143 149108 0 1 1965, 0, +contig33 149104 150295 KOE99789 0 - 149104 150295 0 1 1191, 0, +contig33 150430 150847 KOE99790 0 - 150430 150847 0 1 417, 0, +contig33 151170 152520 KOE99791 0 - 151170 152520 0 1 1350, 0, +contig33 152519 153194 KOE99792 0 - 152519 153194 0 1 675, 0, +contig33 153403 153685 KOE99793 0 + 153403 153685 0 1 282, 0, +contig33 153743 155885 KOE99794 0 - 153743 155885 0 1 2142, 0, +contig33 155959 156604 KOE99795 0 - 155959 156604 0 1 645, 0, +contig33 156686 158210 KOE99796 0 + 156686 158210 0 1 1524, 0, +contig33 158218 159922 KOE99797 0 - 158218 159922 0 1 1704, 0, +contig33 160103 160352 KOE99798 0 - 160103 160352 0 1 249, 0, +contig33 160449 160695 KOE99799 0 - 160449 160695 0 1 246, 0, +contig33 160820 161090 KOE99800 0 - 160820 161090 0 1 270, 0, +contig33 161193 161670 KOE99801 0 - 161193 161670 0 1 477, 0, +contig33 161763 163002 KOE99802 0 - 161763 163002 0 1 1239, 0, +contig33 163091 163571 KOE99803 0 + 163091 163571 0 1 480, 0, +contig33 163587 164799 KOE99804 0 - 163587 164799 0 1 1212, 0, +contig33 165327 167007 KOE99805 0 + 165327 167007 0 1 1680, 0, +contig33 167434 167881 KOE99806 0 + 167434 167881 0 1 447, 0, +contig33 167970 169026 KOE99807 0 + 167970 169026 0 1 1056, 0, +contig33 169022 169802 KOE99808 0 + 169022 169802 0 1 780, 0, +contig33 169798 171052 KOE99809 0 + 169798 171052 0 1 1254, 0, +contig33 171066 172110 KOE99810 0 + 171066 172110 0 1 1044, 0, +contig33 172113 173097 KOE99811 0 + 172113 173097 0 1 984, 0, +contig33 173170 173581 KOE99812 0 + 173170 173581 0 1 411, 0, +contig33 173615 173882 KOE99813 0 + 173615 173882 0 1 267, 0, +contig33 173963 176411 KOE99814 0 + 173963 176411 0 1 2448, 0, +contig33 176407 177259 KOE99815 0 + 176407 177259 0 1 852, 0, +contig33 177320 178466 KOE99816 0 + 177320 178466 0 1 1146, 0, +contig33 181712 182249 KOE99817 0 + 181712 182249 0 1 537, 0, +contig33 182306 183311 KOE99818 0 + 182306 183311 0 1 1005, 0, +contig33 183822 184677 KOE99819 0 + 183822 184677 0 1 855, 0, +contig33 184731 186057 KOE99820 0 - 184731 186057 0 1 1326, 0, +contig33 186053 186707 KOE99821 0 - 186053 186707 0 1 654, 0, +contig33 186747 187419 KOE99822 0 - 186747 187419 0 1 672, 0, +contig33 187678 188185 KOE99823 0 + 187678 188185 0 1 507, 0, +contig33 188207 188414 KOE99824 0 - 188207 188414 0 1 207, 0, +contig33 188472 188910 KOE99825 0 - 188472 188910 0 1 438, 0, +contig33 189823 190183 KOE99826 0 + 189823 190183 0 1 360, 0, +contig33 190258 190783 KOE99827 0 + 190258 190783 0 1 525, 0, +contig33 190858 191431 KOE99828 0 + 190858 191431 0 1 573, 0, +contig33 191556 192432 KOE99829 0 + 191556 192432 0 1 876, 0, +contig33 193733 194627 KOE99830 0 - 193733 194627 0 1 894, 0, +contig33 194781 197160 KOE99831 0 - 194781 197160 0 1 2379, 0, +contig33 197304 198126 KOE99832 0 + 197304 198126 0 1 822, 0, +contig33 198273 198783 KOE99833 0 + 198273 198783 0 1 510, 0, +contig33 198825 199314 KOE99834 0 + 198825 199314 0 1 489, 0, +contig33 199457 200075 KOE99835 0 + 199457 200075 0 1 618, 0, +contig33 200192 201554 KOE99836 0 + 200192 201554 0 1 1362, 0, +contig33 201635 202286 KOE99837 0 - 201635 202286 0 1 651, 0, +contig33 202629 203244 KOE99838 0 + 202629 203244 0 1 615, 0, +contig33 203266 204331 KOE99839 0 + 203266 204331 0 1 1065, 0, +contig33 204327 205395 KOE99840 0 + 204327 205395 0 1 1068, 0, +contig33 205862 206066 KOE99841 0 + 205862 206066 0 1 204, 0, +contig33 206062 206515 KOE99842 0 + 206062 206515 0 1 453, 0, +contig33 207254 207470 KOE99843 0 + 207254 207470 0 1 216, 0, +contig33 207677 210059 KOE99844 0 + 207677 210059 0 1 2382, 0, +contig33 210267 212457 KOE99845 0 + 210267 212457 0 1 2190, 0, +contig33 212519 212750 KOE99846 0 + 212519 212750 0 1 231, 0, +contig33 212789 213878 KOE99847 0 - 212789 213878 0 1 1089, 0, +contig33 214831 216658 KOE99848 0 + 214831 216658 0 1 1827, 0, +contig33 216654 218091 KOE99849 0 - 216654 218091 0 1 1437, 0, +contig33 218752 219133 KOE99850 0 + 218752 219133 0 1 381, 0, +contig33 219202 219400 KOE99851 0 + 219202 219400 0 1 198, 0, +contig33 219445 220402 KOE99852 0 - 219445 220402 0 1 957, 0, +contig33 220479 220896 KOE99853 0 + 220479 220896 0 1 417, 0, +contig33 140 677 KOE99854 0 + 140 677 0 1 537, 0, +contig33 4621 6505 KOE99855 0 + 4621 6505 0 1 1884, 0, +contig33 40636 41662 KOE99856 0 - 40636 41662 0 1 1026, 0, +contig33 47520 48978 KOE99857 0 + 47520 48978 0 1 1458, 0, +contig33 56877 57237 KOE99858 0 - 56877 57237 0 1 360, 0, +contig33 60725 61037 KOE99859 0 + 60725 61037 0 1 312, 0, +contig33 76371 77532 KOE99860 0 + 76371 77532 0 1 1161, 0, +contig33 78280 79822 KOE99861 0 + 78280 79822 0 1 1542, 0, +contig33 116559 117972 KOE99862 0 - 116559 117972 0 1 1413, 0, +contig33 124077 124770 KOE99863 0 - 124077 124770 0 1 693, 0, +contig33 129155 129470 KOE99864 0 - 129155 129470 0 1 315, 0, +contig33 135921 136536 KOE99865 0 + 135921 136536 0 1 615, 0, +contig33 137182 137533 KOE99866 0 + 137182 137533 0 1 351, 0, +contig33 165033 165291 KOE99867 0 + 165033 165291 0 1 258, 0, +contig33 188978 189746 KOE99868 0 - 188978 189746 0 1 768, 0, +contig33 192571 193687 KOE99869 0 + 192571 193687 0 1 1116, 0, +contig33 205428 205797 KOE99870 0 + 205428 205797 0 1 369, 0, +contig33 214030 214576 KOE99871 0 + 214030 214576 0 1 546, 0, +contig34 723 1137 KOE99872 0 - 723 1137 0 1 414, 0, +contig34 1323 2391 KOE99873 0 + 1323 2391 0 1 1068, 0, +contig34 2471 3275 KOE99874 0 + 2471 3275 0 1 804, 0, +contig34 3305 4148 KOE99875 0 + 3305 4148 0 1 843, 0, +contig34 4662 6096 KOE99876 0 + 4662 6096 0 1 1434, 0, +contig34 6172 7525 KOE99877 0 + 6172 7525 0 1 1353, 0, +contig34 7545 9834 KOE99878 0 + 7545 9834 0 1 2289, 0, +contig34 9862 10765 KOE99879 0 + 9862 10765 0 1 903, 0, +contig34 10949 11384 KOE99880 0 + 10949 11384 0 1 435, 0, +contig34 11380 12094 KOE99881 0 - 11380 12094 0 1 714, 0, +contig34 12086 12887 KOE99882 0 - 12086 12887 0 1 801, 0, +contig34 12873 15345 KOE99883 0 - 12873 15345 0 1 2472, 0, +contig34 15409 16336 KOE99884 0 - 15409 16336 0 1 927, 0, +contig34 16332 16842 KOE99885 0 - 16332 16842 0 1 510, 0, +contig34 16966 17473 KOE99886 0 - 16966 17473 0 1 507, 0, +contig34 17581 17806 KOE99887 0 - 17581 17806 0 1 225, 0, +contig34 17802 18504 KOE99888 0 - 17802 18504 0 1 702, 0, +contig34 18500 19274 KOE99889 0 - 18500 19274 0 1 774, 0, +contig34 19350 20637 KOE99890 0 + 19350 20637 0 1 1287, 0, +contig34 20739 21246 KOE99891 0 - 20739 21246 0 1 507, 0, +contig34 21327 24438 KOE99892 0 - 21327 24438 0 1 3111, 0, +contig34 24444 25854 KOE99893 0 - 24444 25854 0 1 1410, 0, +contig34 25863 26478 KOE99894 0 - 25863 26478 0 1 615, 0, +contig34 26736 27744 KOE99895 0 - 26736 27744 0 1 1008, 0, +contig34 27779 28430 KOE99896 0 - 27779 28430 0 1 651, 0, +contig34 28522 29428 KOE99897 0 - 28522 29428 0 1 906, 0, +contig34 29576 30467 KOE99898 0 + 29576 30467 0 1 891, 0, +contig34 30476 31181 KOE99899 0 - 30476 31181 0 1 705, 0, +contig34 31468 31903 KOE99900 0 - 31468 31903 0 1 435, 0, +contig34 35216 36122 KOE99901 0 - 35216 36122 0 1 906, 0, +contig34 36227 37589 KOE99902 0 + 36227 37589 0 1 1362, 0, +contig34 37585 37972 KOE99903 0 + 37585 37972 0 1 387, 0, +contig34 38194 40105 KOE99904 0 + 38194 40105 0 1 1911, 0, +contig34 40315 41269 KOE99905 0 - 40315 41269 0 1 954, 0, +contig34 41715 42474 KOE99906 0 + 41715 42474 0 1 759, 0, +contig34 42604 43057 KOE99907 0 + 42604 43057 0 1 453, 0, +contig34 43281 44940 KOE99908 0 + 43281 44940 0 1 1659, 0, +contig34 45762 46902 KOE99909 0 + 45762 46902 0 1 1140, 0, +contig34 46898 48599 KOE99910 0 + 46898 48599 0 1 1701, 0, +contig34 48710 49595 KOE99911 0 + 48710 49595 0 1 885, 0, +contig34 49691 49988 KOE99912 0 - 49691 49988 0 1 297, 0, +contig34 50159 50816 KOE99913 0 + 50159 50816 0 1 657, 0, +contig34 50884 51661 KOE99914 0 + 50884 51661 0 1 777, 0, +contig34 51657 52257 KOE99915 0 - 51657 52257 0 1 600, 0, +contig34 52475 55202 KOE99916 0 + 52475 55202 0 1 2727, 0, +contig34 55312 55939 KOE99917 0 + 55312 55939 0 1 627, 0, +contig34 55946 56588 KOE99918 0 - 55946 56588 0 1 642, 0, +contig34 56771 57932 KOE99919 0 + 56771 57932 0 1 1161, 0, +contig34 57981 58419 KOE99920 0 - 57981 58419 0 1 438, 0, +contig34 58550 59432 KOE99921 0 - 58550 59432 0 1 882, 0, +contig34 59554 60256 KOE99922 0 + 59554 60256 0 1 702, 0, +contig34 60307 61765 KOE99923 0 + 60307 61765 0 1 1458, 0, +contig34 61781 62711 KOE99924 0 - 61781 62711 0 1 930, 0, +contig34 62804 63998 KOE99925 0 + 62804 63998 0 1 1194, 0, +contig34 64682 65336 KOE99926 0 - 64682 65336 0 1 654, 0, +contig34 65328 68358 KOE99927 0 - 65328 68358 0 1 3030, 0, +contig34 68454 68787 KOE99928 0 + 68454 68787 0 1 333, 0, +contig34 68864 69281 KOE99929 0 + 68864 69281 0 1 417, 0, +contig34 69277 69934 KOE99930 0 + 69277 69934 0 1 657, 0, +contig34 69936 70362 KOE99931 0 + 69936 70362 0 1 426, 0, +contig34 70358 72329 KOE99932 0 + 70358 72329 0 1 1971, 0, +contig34 72307 73591 KOE99933 0 + 72307 73591 0 1 1284, 0, +contig34 73584 75234 KOE99934 0 + 73584 75234 0 1 1650, 0, +contig34 75335 76160 KOE99935 0 - 75335 76160 0 1 825, 0, +contig34 76346 76733 KOE99936 0 + 76346 76733 0 1 387, 0, +contig34 76802 77516 KOE99937 0 - 76802 77516 0 1 714, 0, +contig34 77615 79775 KOE99938 0 - 77615 79775 0 1 2160, 0, +contig34 79783 80242 KOE99939 0 - 79783 80242 0 1 459, 0, +contig34 80238 81135 KOE99940 0 - 80238 81135 0 1 897, 0, +contig34 81134 82070 KOE99941 0 - 81134 82070 0 1 936, 0, +contig34 82098 83055 KOE99942 0 - 82098 83055 0 1 957, 0, +contig34 83057 84407 KOE99943 0 - 83057 84407 0 1 1350, 0, +contig34 84391 85648 KOE99944 0 - 84391 85648 0 1 1257, 0, +contig34 85675 87034 KOE99945 0 - 85675 87034 0 1 1359, 0, +contig34 87052 88090 KOE99946 0 - 87052 88090 0 1 1038, 0, +contig34 88113 88590 KOE99947 0 - 88113 88590 0 1 477, 0, +contig34 88586 89132 KOE99948 0 - 88586 89132 0 1 546, 0, +contig34 89197 89389 KOE99949 0 - 89197 89389 0 1 192, 0, +contig34 90075 91056 KOE99950 0 + 90075 91056 0 1 981, 0, +contig34 91291 96493 KOE99951 0 + 91291 96493 0 1 5202, 0, +contig34 96554 97391 KOE99952 0 + 96554 97391 0 1 837, 0, +contig34 97500 97803 KOE99953 0 + 97500 97803 0 1 303, 0, +contig34 97888 98716 KOE99954 0 - 97888 98716 0 1 828, 0, +contig34 98779 99187 KOE99955 0 + 98779 99187 0 1 408, 0, +contig34 99202 99919 KOE99956 0 - 99202 99919 0 1 717, 0, +contig34 101846 103928 KOE99957 0 - 101846 103928 0 1 2082, 0, +contig34 104059 104980 KOE99958 0 + 104059 104980 0 1 921, 0, +contig34 104987 105839 KOE99959 0 - 104987 105839 0 1 852, 0, +contig34 105989 106343 KOE99960 0 + 105989 106343 0 1 354, 0, +contig34 106342 106666 KOE99961 0 + 106342 106666 0 1 324, 0, +contig34 106808 109757 KOE99962 0 - 106808 109757 0 1 2949, 0, +contig34 109826 110771 KOE99963 0 - 109826 110771 0 1 945, 0, +contig34 110767 111286 KOE99964 0 - 110767 111286 0 1 519, 0, +contig34 111436 111817 KOE99965 0 + 111436 111817 0 1 381, 0, +contig34 112010 113990 KOE99966 0 + 112010 113990 0 1 1980, 0, +contig34 116984 117962 KOE99967 0 - 116984 117962 0 1 978, 0, +contig34 118393 120757 KOE99968 0 + 118393 120757 0 1 2364, 0, +contig34 120867 121908 KOE99969 0 + 120867 121908 0 1 1041, 0, +contig34 122372 122699 KOE99970 0 + 122372 122699 0 1 327, 0, +contig34 122817 124149 KOE99971 0 - 122817 124149 0 1 1332, 0, +contig34 124266 124737 KOE99972 0 + 124266 124737 0 1 471, 0, +contig34 124851 125400 KOE99973 0 - 124851 125400 0 1 549, 0, +contig34 125389 127549 KOE99974 0 - 125389 127549 0 1 2160, 0, +contig34 127779 128436 KOE99975 0 - 127779 128436 0 1 657, 0, +contig34 128528 129599 KOE99976 0 + 128528 129599 0 1 1071, 0, +contig34 129610 130759 KOE99977 0 + 129610 130759 0 1 1149, 0, +contig34 130764 131100 KOE99978 0 - 130764 131100 0 1 336, 0, +contig34 131099 131675 KOE99979 0 - 131099 131675 0 1 576, 0, +contig34 131671 132301 KOE99980 0 - 131671 132301 0 1 630, 0, +contig34 132789 134310 KOE99981 0 - 132789 134310 0 1 1521, 0, +contig34 134429 134879 KOE99982 0 - 134429 134879 0 1 450, 0, +contig34 134945 135881 KOE99983 0 + 134945 135881 0 1 936, 0, +contig34 136006 136318 KOE99984 0 + 136006 136318 0 1 312, 0, +contig34 136472 137669 KOE99985 0 + 136472 137669 0 1 1197, 0, +contig34 137665 138859 KOE99986 0 + 137665 138859 0 1 1194, 0, +contig34 138855 140508 KOE99987 0 + 138855 140508 0 1 1653, 0, +contig34 140507 141140 KOE99988 0 + 140507 141140 0 1 633, 0, +contig34 141139 141397 KOE99989 0 + 141139 141397 0 1 258, 0, +contig34 141393 145284 KOE99990 0 + 141393 145284 0 1 3891, 0, +contig34 145274 146033 KOE99991 0 + 145274 146033 0 1 759, 0, +contig34 146171 147629 KOE99992 0 - 146171 147629 0 1 1458, 0, +contig34 147650 149969 KOE99993 0 - 147650 149969 0 1 2319, 0, +contig34 150253 150631 KOE99994 0 - 150253 150631 0 1 378, 0, +contig34 150620 151259 KOE99995 0 - 150620 151259 0 1 639, 0, +contig34 151255 153520 KOE99996 0 - 151255 153520 0 1 2265, 0, +contig34 153530 154184 KOE99997 0 - 153530 154184 0 1 654, 0, +contig34 154330 155251 KOE99998 0 + 154330 155251 0 1 921, 0, +contig34 155154 156966 KOE99999 0 - 155154 156966 0 1 1812, 0, +contig34 157039 157426 KOF00001 0 - 157039 157426 0 1 387, 0, +contig34 157485 158718 KOF00002 0 - 157485 158718 0 1 1233, 0, +contig34 158714 159389 KOF00003 0 - 158714 159389 0 1 675, 0, +contig34 159500 160031 KOF00004 0 - 159500 160031 0 1 531, 0, +contig34 160066 160513 KOF00005 0 - 160066 160513 0 1 447, 0, +contig34 160505 160700 KOF00006 0 - 160505 160700 0 1 195, 0, +contig34 161192 161510 KOF00007 0 + 161192 161510 0 1 318, 0, +contig34 161559 161907 KOF00008 0 - 161559 161907 0 1 348, 0, +contig34 162040 163477 KOF00009 0 - 162040 163477 0 1 1437, 0, +contig34 163473 164358 KOF00010 0 - 163473 164358 0 1 885, 0, +contig34 164359 164569 KOF00011 0 - 164359 164569 0 1 210, 0, +contig34 164573 166364 KOF00012 0 - 164573 166364 0 1 1791, 0, +contig34 166614 167409 KOF00013 0 + 166614 167409 0 1 795, 0, +contig34 167444 168266 KOF00014 0 - 167444 168266 0 1 822, 0, +contig34 168622 173350 KOF00015 0 + 168622 173350 0 1 4728, 0, +contig34 174854 175250 KOF00016 0 + 174854 175250 0 1 396, 0, +contig34 175299 175674 KOF00017 0 - 175299 175674 0 1 375, 0, +contig34 176277 176607 KOF00018 0 + 176277 176607 0 1 330, 0, +contig34 176600 177005 KOF00019 0 - 176600 177005 0 1 405, 0, +contig34 177199 178180 KOF00020 0 + 177199 178180 0 1 981, 0, +contig34 178188 179187 KOF00021 0 + 178188 179187 0 1 999, 0, +contig34 179183 180437 KOF00022 0 + 179183 180437 0 1 1254, 0, +contig34 180436 180697 KOF00023 0 + 180436 180697 0 1 261, 0, +contig34 180700 181165 KOF00024 0 + 180700 181165 0 1 465, 0, +contig34 181237 181780 KOF00025 0 + 181237 181780 0 1 543, 0, +contig34 181776 182142 KOF00026 0 + 181776 182142 0 1 366, 0, +contig34 182286 183705 KOF00027 0 + 182286 183705 0 1 1419, 0, +contig34 183777 187521 KOF00028 0 + 183777 187521 0 1 3744, 0, +contig34 187520 189065 KOF00029 0 + 187520 189065 0 1 1545, 0, +contig34 189064 189745 KOF00030 0 + 189064 189745 0 1 681, 0, +contig34 189741 190449 KOF00031 0 + 189741 190449 0 1 708, 0, +contig34 190452 191352 KOF00032 0 + 190452 191352 0 1 900, 0, +contig34 191375 192707 KOF00033 0 + 191375 192707 0 1 1332, 0, +contig34 192849 194064 KOF00034 0 + 192849 194064 0 1 1215, 0, +contig34 194075 194852 KOF00035 0 + 194075 194852 0 1 777, 0, +contig34 194871 195615 KOF00036 0 + 194871 195615 0 1 744, 0, +contig34 195618 196302 KOF00037 0 + 195618 196302 0 1 684, 0, +contig34 196291 196960 KOF00038 0 + 196291 196960 0 1 669, 0, +contig34 197053 198583 KOF00039 0 - 197053 198583 0 1 1530, 0, +contig34 198579 199008 KOF00040 0 - 198579 199008 0 1 429, 0, +contig34 199180 199438 KOF00041 0 + 199180 199438 0 1 258, 0, +contig34 200290 200605 KOF00042 0 - 200290 200605 0 1 315, 0, +contig34 200601 201333 KOF00043 0 - 200601 201333 0 1 732, 0, +contig34 201461 201926 KOF00044 0 + 201461 201926 0 1 465, 0, +contig34 202417 203098 KOF00045 0 + 202417 203098 0 1 681, 0, +contig34 203714 204695 KOF00046 0 + 203714 204695 0 1 981, 0, +contig34 204753 205305 KOF00047 0 + 204753 205305 0 1 552, 0, +contig34 205425 206010 KOF00048 0 + 205425 206010 0 1 585, 0, +contig34 206067 206505 KOF00049 0 + 206067 206505 0 1 438, 0, +contig34 206514 207420 KOF00050 0 + 206514 207420 0 1 906, 0, +contig34 207416 208580 KOF00051 0 + 207416 208580 0 1 1164, 0, +contig34 208576 209104 KOF00052 0 + 208576 209104 0 1 528, 0, +contig34 209100 211482 KOF00053 0 + 209100 211482 0 1 2382, 0, +contig34 211478 212912 KOF00054 0 + 211478 212912 0 1 1434, 0, +contig34 212919 214119 KOF00055 0 + 212919 214119 0 1 1200, 0, +contig34 214373 215564 KOF00056 0 + 214373 215564 0 1 1191, 0, +contig34 215768 228161 KOF00057 0 + 215768 228161 0 1 12393, 0, +contig34 228506 229121 KOF00058 0 - 228506 229121 0 1 615, 0, +contig34 229117 229480 KOF00059 0 - 229117 229480 0 1 363, 0, +contig34 229476 229923 KOF00060 0 - 229476 229923 0 1 447, 0, +contig34 230614 230950 KOF00061 0 - 230614 230950 0 1 336, 0, +contig34 231151 232768 KOF00062 0 + 231151 232768 0 1 1617, 0, +contig34 232806 234591 KOF00063 0 + 232806 234591 0 1 1785, 0, +contig34 234601 235015 KOF00064 0 + 234601 235015 0 1 414, 0, +contig34 235054 235720 KOF00065 0 + 235054 235720 0 1 666, 0, +contig34 235762 237508 KOF00066 0 + 235762 237508 0 1 1746, 0, +contig34 237606 237936 KOF00067 0 + 237606 237936 0 1 330, 0, +contig34 238030 238429 KOF00068 0 - 238030 238429 0 1 399, 0, +contig34 238620 239124 KOF00069 0 + 238620 239124 0 1 504, 0, +contig34 239206 240163 KOF00070 0 + 239206 240163 0 1 957, 0, +contig34 240347 243467 KOF00071 0 + 240347 243467 0 1 3120, 0, +contig34 244309 245074 KOF00072 0 + 244309 245074 0 1 765, 0, +contig34 245164 246619 KOF00073 0 + 245164 246619 0 1 1455, 0, +contig34 246755 247160 KOF00074 0 + 246755 247160 0 1 405, 0, +contig34 247169 248765 KOF00075 0 + 247169 248765 0 1 1596, 0, +contig34 248835 249177 KOF00076 0 + 248835 249177 0 1 342, 0, +contig34 249180 249810 KOF00077 0 + 249180 249810 0 1 630, 0, +contig34 249909 251397 KOF00078 0 - 249909 251397 0 1 1488, 0, +contig34 251873 252290 KOF00079 0 + 251873 252290 0 1 417, 0, +contig34 252350 252950 KOF00080 0 - 252350 252950 0 1 600, 0, +contig34 253038 255723 KOF00081 0 - 253038 255723 0 1 2685, 0, +contig34 255959 258311 KOF00082 0 + 255959 258311 0 1 2352, 0, +contig34 258423 259809 KOF00083 0 - 258423 259809 0 1 1386, 0, +contig34 259801 260476 KOF00084 0 - 259801 260476 0 1 675, 0, +contig34 260538 261786 KOF00085 0 + 260538 261786 0 1 1248, 0, +contig34 261782 262955 KOF00086 0 + 261782 262955 0 1 1173, 0, +contig34 262951 266029 KOF00087 0 + 262951 266029 0 1 3078, 0, +contig34 266146 266890 KOF00088 0 - 266146 266890 0 1 744, 0, +contig34 266996 267920 KOF00089 0 + 266996 267920 0 1 924, 0, +contig34 267908 269276 KOF00090 0 - 267908 269276 0 1 1368, 0, +contig34 269272 269971 KOF00091 0 - 269272 269971 0 1 699, 0, +contig34 270016 270901 KOF00092 0 - 270016 270901 0 1 885, 0, +contig34 270911 271289 KOF00093 0 - 270911 271289 0 1 378, 0, +contig34 271416 271740 KOF00094 0 - 271416 271740 0 1 324, 0, +contig34 271736 272675 KOF00095 0 - 271736 272675 0 1 939, 0, +contig34 272694 273669 KOF00096 0 - 272694 273669 0 1 975, 0, +contig34 273680 274484 KOF00097 0 - 273680 274484 0 1 804, 0, +contig34 274602 275505 KOF00098 0 + 274602 275505 0 1 903, 0, +contig34 275597 276071 KOF00099 0 - 275597 276071 0 1 474, 0, +contig34 276103 276637 KOF00100 0 + 276103 276637 0 1 534, 0, +contig34 276633 277329 KOF00101 0 + 276633 277329 0 1 696, 0, +contig34 277321 278575 KOF00102 0 + 277321 278575 0 1 1254, 0, +contig34 278577 279129 KOF00103 0 + 278577 279129 0 1 552, 0, +contig34 279118 279739 KOF00104 0 + 279118 279739 0 1 621, 0, +contig34 279738 280485 KOF00105 0 + 279738 280485 0 1 747, 0, +contig34 280635 282168 KOF00106 0 + 280635 282168 0 1 1533, 0, +contig34 282172 282736 KOF00107 0 + 282172 282736 0 1 564, 0, +contig34 282830 283712 KOF00108 0 - 282830 283712 0 1 882, 0, +contig34 283818 284355 KOF00109 0 + 283818 284355 0 1 537, 0, +contig34 284393 285242 KOF00110 0 - 284393 285242 0 1 849, 0, +contig34 285486 287772 KOF00111 0 + 285486 287772 0 1 2286, 0, +contig34 288904 289777 KOF00112 0 - 288904 289777 0 1 873, 0, +contig34 289872 292302 KOF00113 0 - 289872 292302 0 1 2430, 0, +contig34 292373 293210 KOF00114 0 - 292373 293210 0 1 837, 0, +contig34 293206 293731 KOF00115 0 - 293206 293731 0 1 525, 0, +contig34 293933 294200 KOF00116 0 + 293933 294200 0 1 267, 0, +contig34 294209 295382 KOF00117 0 + 294209 295382 0 1 1173, 0, +contig34 295424 295817 KOF00118 0 + 295424 295817 0 1 393, 0, +contig34 295830 296472 KOF00119 0 - 295830 296472 0 1 642, 0, +contig34 296464 297520 KOF00120 0 - 296464 297520 0 1 1056, 0, +contig34 297755 298493 KOF00121 0 - 297755 298493 0 1 738, 0, +contig34 298524 301284 KOF00122 0 - 298524 301284 0 1 2760, 0, +contig34 301347 301647 KOF00123 0 - 301347 301647 0 1 300, 0, +contig34 301938 302238 KOF00124 0 - 301938 302238 0 1 300, 0, +contig34 302444 303425 KOF00125 0 - 302444 303425 0 1 981, 0, +contig34 303506 304172 KOF00126 0 + 303506 304172 0 1 666, 0, +contig34 304422 306618 KOF00127 0 - 304422 306618 0 1 2196, 0, +contig34 306862 307447 KOF00128 0 + 306862 307447 0 1 585, 0, +contig34 307551 308640 KOF00129 0 + 307551 308640 0 1 1089, 0, +contig34 308777 309056 KOF00130 0 - 308777 309056 0 1 279, 0, +contig34 309052 310663 KOF00131 0 - 309052 310663 0 1 1611, 0, +contig34 310659 310959 KOF00132 0 - 310659 310959 0 1 300, 0, +contig34 311011 313189 KOF00133 0 - 311011 313189 0 1 2178, 0, +contig34 313384 314221 KOF00134 0 - 313384 314221 0 1 837, 0, +contig34 314391 315006 KOF00135 0 + 314391 315006 0 1 615, 0, +contig34 315099 316026 KOF00136 0 - 315099 316026 0 1 927, 0, +contig34 316296 317373 KOF00137 0 - 316296 317373 0 1 1077, 0, +contig34 317377 318094 KOF00138 0 - 317377 318094 0 1 717, 0, +contig34 318935 320117 KOF00139 0 + 318935 320117 0 1 1182, 0, +contig34 320119 322063 KOF00140 0 + 320119 322063 0 1 1944, 0, +contig34 322088 323798 KOF00141 0 - 322088 323798 0 1 1710, 0, +contig34 324031 324991 KOF00142 0 - 324031 324991 0 1 960, 0, +contig34 325216 325471 KOF00143 0 + 325216 325471 0 1 255, 0, +contig34 325518 326163 KOF00144 0 - 325518 326163 0 1 645, 0, +contig34 326277 328575 KOF00145 0 + 326277 328575 0 1 2298, 0, +contig34 328592 329489 KOF00146 0 + 328592 329489 0 1 897, 0, +contig34 329587 329845 KOF00147 0 - 329587 329845 0 1 258, 0, +contig34 329841 331194 KOF00148 0 - 329841 331194 0 1 1353, 0, +contig34 331214 332354 KOF00149 0 - 331214 332354 0 1 1140, 0, +contig34 332455 333298 KOF00150 0 - 332455 333298 0 1 843, 0, +contig34 333391 334684 KOF00151 0 - 333391 334684 0 1 1293, 0, +contig34 334730 335480 KOF00152 0 - 334730 335480 0 1 750, 0, +contig34 335492 336197 KOF00153 0 - 335492 336197 0 1 705, 0, +contig34 336297 337614 KOF00154 0 - 336297 337614 0 1 1317, 0, +contig34 337657 338275 KOF00155 0 - 337657 338275 0 1 618, 0, +contig34 338271 338802 KOF00156 0 - 338271 338802 0 1 531, 0, +contig34 339199 340555 KOF00157 0 + 339199 340555 0 1 1356, 0, +contig34 340555 340864 KOF00158 0 - 340555 340864 0 1 309, 0, +contig34 340856 341399 KOF00159 0 - 340856 341399 0 1 543, 0, +contig34 341461 342343 KOF00160 0 - 341461 342343 0 1 882, 0, +contig34 342339 343380 KOF00161 0 - 342339 343380 0 1 1041, 0, +contig34 343472 344399 KOF00162 0 + 343472 344399 0 1 927, 0, +contig34 344395 344857 KOF00163 0 + 344395 344857 0 1 462, 0, +contig34 344867 345293 KOF00164 0 + 344867 345293 0 1 426, 0, +contig34 345289 345520 KOF00165 0 + 345289 345520 0 1 231, 0, +contig34 345527 346223 KOF00166 0 - 345527 346223 0 1 696, 0, +contig34 346327 347068 KOF00167 0 - 346327 347068 0 1 741, 0, +contig34 347358 348663 KOF00168 0 - 347358 348663 0 1 1305, 0, +contig34 348817 350392 KOF00169 0 + 348817 350392 0 1 1575, 0, +contig34 350479 351594 KOF00170 0 + 350479 351594 0 1 1115, 0, +contig34 32856 35037 KOF00171 0 + 32856 35037 0 1 2181, 0, +contig34 44993 45758 KOF00172 0 + 44993 45758 0 1 765, 0, +contig34 100011 101784 KOF00173 0 - 100011 101784 0 1 1773, 0, +contig34 114097 116725 KOF00174 0 - 114097 116725 0 1 2628, 0, +contig34 121921 122401 KOF00175 0 + 121921 122401 0 1 480, 0, +contig34 203114 203645 KOF00176 0 + 203114 203645 0 1 531, 0, +contig34 230038 230524 KOF00177 0 + 230038 230524 0 1 486, 0, +contig34 243542 244250 KOF00178 0 + 243542 244250 0 1 708, 0, +contig34 288372 288789 KOF00179 0 + 288372 288789 0 1 417, 0, +contig34 318141 318606 KOF00180 0 - 318141 318606 0 1 465, 0, +contig35 0 325 KOF00181 0 + 1 325 0 1 325, 0, +contig35 448 1342 KOF00182 0 + 448 1342 0 1 894, 0, +contig35 1359 2379 KOF00183 0 - 1359 2379 0 1 1020, 0, +contig35 2389 3577 KOF00184 0 - 2389 3577 0 1 1188, 0, +contig35 3591 4344 KOF00185 0 - 3591 4344 0 1 753, 0, +contig35 4404 5709 KOF00186 0 - 4404 5709 0 1 1305, 0, +contig35 5705 7934 KOF00187 0 - 5705 7934 0 1 2229, 0, +contig35 7930 9370 KOF00188 0 - 7930 9370 0 1 1440, 0, +contig35 9611 12503 KOF00189 0 + 9611 12503 0 1 2892, 0, +contig35 12605 13349 KOF00190 0 + 12605 13349 0 1 744, 0, +contig35 13417 14344 KOF00191 0 - 13417 14344 0 1 927, 0, +contig35 14773 15475 KOF00192 0 + 14773 15475 0 1 702, 0, +contig35 15487 17329 KOF00193 0 + 15487 17329 0 1 1842, 0, +contig35 17325 18036 KOF00194 0 - 17325 18036 0 1 711, 0, +contig35 18048 19407 KOF00195 0 - 18048 19407 0 1 1359, 0, +contig35 19403 20867 KOF00196 0 - 19403 20867 0 1 1464, 0, +contig35 20877 23262 KOF00197 0 - 20877 23262 0 1 2385, 0, +contig35 23435 25085 KOF00198 0 + 23435 25085 0 1 1650, 0, +contig35 25222 25822 KOF00199 0 + 25222 25822 0 1 600, 0, +contig35 25841 27488 KOF00200 0 - 25841 27488 0 1 1647, 0, +contig35 27617 28292 KOF00201 0 + 27617 28292 0 1 675, 0, +contig35 28296 31626 KOF00202 0 - 28296 31626 0 1 3330, 0, +contig35 31662 32139 KOF00203 0 - 31662 32139 0 1 477, 0, +contig35 32135 33014 KOF00204 0 - 32135 33014 0 1 879, 0, +contig35 33046 35221 KOF00205 0 - 33046 35221 0 1 2175, 0, +contig35 35442 36447 KOF00206 0 + 35442 36447 0 1 1005, 0, +contig35 38443 39478 KOF00207 0 - 38443 39478 0 1 1035, 0, +contig35 39517 40495 KOF00208 0 - 39517 40495 0 1 978, 0, +contig35 40551 41139 KOF00209 0 - 40551 41139 0 1 588, 0, +contig35 41214 42129 KOF00210 0 + 41214 42129 0 1 915, 0, +contig35 42128 43013 KOF00211 0 + 42128 43013 0 1 885, 0, +contig35 43289 43670 KOF00212 0 + 43289 43670 0 1 381, 0, +contig35 43731 44634 KOF00213 0 - 43731 44634 0 1 903, 0, +contig35 44743 45865 KOF00214 0 + 44743 45865 0 1 1122, 0, +contig35 45940 46999 KOF00215 0 + 45940 46999 0 1 1059, 0, +contig35 47013 47847 KOF00216 0 + 47013 47847 0 1 834, 0, +contig35 47830 48607 KOF00217 0 + 47830 48607 0 1 777, 0, +contig35 48741 50175 KOF00218 0 + 48741 50175 0 1 1434, 0, +contig35 50199 51447 KOF00219 0 - 50199 51447 0 1 1248, 0, +contig35 51741 52923 KOF00220 0 + 51741 52923 0 1 1182, 0, +contig35 53029 53242 KOF00221 0 + 53029 53242 0 1 213, 0, +contig35 53338 53899 KOF00222 0 - 53338 53899 0 1 561, 0, +contig35 54322 57451 KOF00223 0 + 54322 57451 0 1 3129, 0, +contig35 57581 58340 KOF00224 0 + 57581 58340 0 1 759, 0, +contig35 59377 60910 KOF00225 0 + 59377 60910 0 1 1533, 0, +contig35 61073 62567 KOF00226 0 + 61073 62567 0 1 1494, 0, +contig35 62610 63945 KOF00227 0 + 62610 63945 0 1 1335, 0, +contig35 63989 65399 KOF00228 0 + 63989 65399 0 1 1410, 0, +contig35 67962 69021 KOF00229 0 - 67962 69021 0 1 1059, 0, +contig35 69113 71288 KOF00230 0 + 69113 71288 0 1 2175, 0, +contig35 71320 73273 KOF00231 0 + 71320 73273 0 1 1953, 0, +contig35 73326 75021 KOF00232 0 + 73326 75021 0 1 1695, 0, +contig35 75017 77711 KOF00233 0 + 75017 77711 0 1 2694, 0, +contig35 77770 79255 KOF00234 0 + 77770 79255 0 1 1485, 0, +contig35 79271 80309 KOF00235 0 + 79271 80309 0 1 1038, 0, +contig35 80298 81144 KOF00236 0 + 80298 81144 0 1 846, 0, +contig35 81257 82511 KOF00237 0 - 81257 82511 0 1 1254, 0, +contig35 82594 84298 KOF00238 0 - 82594 84298 0 1 1704, 0, +contig35 84385 85342 KOF00239 0 - 84385 85342 0 1 957, 0, +contig35 85338 87849 KOF00240 0 - 85338 87849 0 1 2511, 0, +contig35 88005 88989 KOF00241 0 + 88005 88989 0 1 984, 0, +contig35 89086 89716 KOF00242 0 + 89086 89716 0 1 630, 0, +contig35 90270 90648 KOF00243 0 - 90270 90648 0 1 378, 0, +contig35 91562 94214 KOF00244 0 + 91562 94214 0 1 2652, 0, +contig35 94305 94614 KOF00245 0 + 94305 94614 0 1 309, 0, +contig35 94610 94892 KOF00246 0 - 94610 94892 0 1 282, 0, +contig35 95045 95261 KOF00247 0 + 95045 95261 0 1 216, 0, +contig35 95850 96150 KOF00248 0 + 95850 96150 0 1 300, 0, +contig35 96195 96507 KOF00249 0 - 96195 96507 0 1 312, 0, +contig35 96744 97698 KOF00250 0 - 96744 97698 0 1 954, 0, +contig35 97867 98461 KOF00251 0 + 97867 98461 0 1 594, 0, +contig35 98498 98975 KOF00252 0 + 98498 98975 0 1 477, 0, +contig35 99056 99788 KOF00253 0 + 99056 99788 0 1 732, 0, +contig35 100056 100704 KOF00254 0 + 100056 100704 0 1 648, 0, +contig35 100700 101651 KOF00255 0 + 100700 101651 0 1 951, 0, +contig35 101650 103855 KOF00256 0 + 101650 103855 0 1 2205, 0, +contig35 103863 104925 KOF00257 0 + 103863 104925 0 1 1062, 0, +contig35 104900 105527 KOF00258 0 + 104900 105527 0 1 627, 0, +contig35 105618 106089 KOF00259 0 - 105618 106089 0 1 471, 0, +contig35 106089 106446 KOF00260 0 - 106089 106446 0 1 357, 0, +contig35 106905 107661 KOF00261 0 - 106905 107661 0 1 756, 0, +contig35 107828 108545 KOF00262 0 + 107828 108545 0 1 717, 0, +contig35 108816 116430 KOF00263 0 + 108816 116430 0 1 7614, 0, +contig35 117451 117883 KOF00264 0 - 117451 117883 0 1 432, 0, +contig35 120333 120819 KOF00265 0 + 120333 120819 0 1 486, 0, +contig35 120835 121129 KOF00266 0 - 120835 121129 0 1 294, 0, +contig35 121380 123618 KOF00267 0 + 121380 123618 0 1 2238, 0, +contig35 123614 124082 KOF00268 0 + 123614 124082 0 1 468, 0, +contig35 124074 126474 KOF00269 0 + 124074 126474 0 1 2400, 0, +contig35 126476 127169 KOF00270 0 - 126476 127169 0 1 693, 0, +contig35 127180 127855 KOF00271 0 - 127180 127855 0 1 675, 0, +contig35 127851 128475 KOF00272 0 - 127851 128475 0 1 624, 0, +contig35 128606 129374 KOF00273 0 + 128606 129374 0 1 768, 0, +contig35 129455 130406 KOF00274 0 + 129455 130406 0 1 951, 0, +contig35 130407 131685 KOF00275 0 + 130407 131685 0 1 1278, 0, +contig35 131681 132449 KOF00276 0 + 131681 132449 0 1 768, 0, +contig35 132445 133705 KOF00277 0 + 132445 133705 0 1 1260, 0, +contig35 133706 134255 KOF00278 0 + 133706 134255 0 1 549, 0, +contig35 134251 135037 KOF00279 0 + 134251 135037 0 1 786, 0, +contig35 135033 136107 KOF00280 0 + 135033 136107 0 1 1074, 0, +contig35 136115 136649 KOF00281 0 + 136115 136649 0 1 534, 0, +contig35 136784 137303 KOF00282 0 + 136784 137303 0 1 519, 0, +contig35 137476 138103 KOF00283 0 + 137476 138103 0 1 627, 0, +contig35 140424 141180 KOF00284 0 - 140424 141180 0 1 756, 0, +contig35 141290 141563 KOF00285 0 - 141290 141563 0 1 273, 0, +contig35 141837 143874 KOF00286 0 - 141837 143874 0 1 2037, 0, +contig35 144290 145040 KOF00287 0 - 144290 145040 0 1 750, 0, +contig35 145103 145865 KOF00288 0 - 145103 145865 0 1 762, 0, +contig35 145861 146905 KOF00289 0 - 145861 146905 0 1 1044, 0, +contig35 146901 147948 KOF00290 0 - 146901 147948 0 1 1047, 0, +contig35 147999 149376 KOF00291 0 - 147999 149376 0 1 1377, 0, +contig35 149498 150527 KOF00292 0 - 149498 150527 0 1 1029, 0, +contig35 151132 151342 KOF00293 0 - 151132 151342 0 1 210, 0, +contig35 151340 151976 KOF00294 0 + 151340 151976 0 1 636, 0, +contig35 152068 152458 KOF00295 0 - 152068 152458 0 1 390, 0, +contig35 152647 154009 KOF00296 0 - 152647 154009 0 1 1362, 0, +contig35 154119 154758 KOF00297 0 - 154119 154758 0 1 639, 0, +contig35 154869 156813 KOF00298 0 - 154869 156813 0 1 1944, 0, +contig35 156852 159213 KOF00299 0 - 156852 159213 0 1 2361, 0, +contig35 159446 160418 KOF00300 0 + 159446 160418 0 1 972, 0, +contig35 160520 161645 KOF00301 0 + 160520 161645 0 1 1125, 0, +contig35 161768 163037 KOF00302 0 - 161768 163037 0 1 1269, 0, +contig35 163936 164155 KOF00303 0 + 163936 164155 0 1 219, 0, +contig35 164326 164599 KOF00304 0 + 164326 164599 0 1 273, 0, +contig35 164728 165106 KOF00305 0 + 164728 165106 0 1 378, 0, +contig35 165174 167460 KOF00306 0 - 165174 167460 0 1 2286, 0, +contig35 167598 168411 KOF00307 0 + 167598 168411 0 1 813, 0, +contig35 168515 168842 KOF00308 0 - 168515 168842 0 1 327, 0, +contig35 168954 169428 KOF00309 0 + 168954 169428 0 1 474, 0, +contig35 169429 169891 KOF00310 0 + 169429 169891 0 1 462, 0, +contig35 169887 171030 KOF00311 0 + 169887 171030 0 1 1143, 0, +contig35 171026 171641 KOF00312 0 + 171026 171641 0 1 615, 0, +contig35 171804 172995 KOF00313 0 + 171804 172995 0 1 1191, 0, +contig35 173093 173309 KOF00314 0 + 173093 173309 0 1 216, 0, +contig35 173450 173957 KOF00315 0 + 173450 173957 0 1 507, 0, +contig35 174098 176858 KOF00316 0 - 174098 176858 0 1 2760, 0, +contig35 176989 179092 KOF00317 0 + 176989 179092 0 1 2103, 0, +contig35 179096 180869 KOF00318 0 + 179096 180869 0 1 1773, 0, +contig35 180886 182107 KOF00319 0 - 180886 182107 0 1 1221, 0, +contig35 182198 182537 KOF00320 0 - 182198 182537 0 1 339, 0, +contig35 182533 182839 KOF00321 0 - 182533 182839 0 1 306, 0, +contig35 182914 183571 KOF00322 0 - 182914 183571 0 1 657, 0, +contig35 183751 184696 KOF00323 0 + 183751 184696 0 1 945, 0, +contig35 184852 185248 KOF00324 0 + 184852 185248 0 1 396, 0, +contig35 185251 185659 KOF00325 0 + 185251 185659 0 1 408, 0, +contig35 185682 186366 KOF00326 0 + 185682 186366 0 1 684, 0, +contig35 186398 187622 KOF00327 0 + 186398 187622 0 1 1224, 0, +contig35 187654 188404 KOF00328 0 + 187654 188404 0 1 750, 0, +contig35 188506 189292 KOF00329 0 + 188506 189292 0 1 786, 0, +contig35 189314 190007 KOF00330 0 + 189314 190007 0 1 693, 0, +contig35 190009 191152 KOF00331 0 + 190009 191152 0 1 1143, 0, +contig35 191153 192353 KOF00332 0 + 191153 192353 0 1 1200, 0, +contig35 192361 194242 KOF00333 0 + 192361 194242 0 1 1881, 0, +contig35 194238 195441 KOF00334 0 + 194238 195441 0 1 1203, 0, +contig35 195845 197021 KOF00335 0 + 195845 197021 0 1 1176, 0, +contig35 197093 198323 KOF00336 0 + 197093 198323 0 1 1230, 0, +contig35 198762 200181 KOF00337 0 + 198762 200181 0 1 1419, 0, +contig35 200309 200726 KOF00338 0 + 200309 200726 0 1 417, 0, +contig35 200722 201016 KOF00339 0 + 200722 201016 0 1 294, 0, +contig35 201012 201591 KOF00340 0 + 201012 201591 0 1 579, 0, +contig35 201682 202315 KOF00341 0 + 201682 202315 0 1 633, 0, +contig35 202638 204048 KOF00342 0 + 202638 204048 0 1 1410, 0, +contig35 204062 204440 KOF00343 0 + 204062 204440 0 1 378, 0, +contig35 204436 205942 KOF00344 0 + 204436 205942 0 1 1506, 0, +contig35 206511 206877 KOF00345 0 + 206511 206877 0 1 366, 0, +contig35 206890 208537 KOF00346 0 + 206890 208537 0 1 1647, 0, +contig35 209527 210169 KOF00347 0 + 209527 210169 0 1 642, 0, +contig35 210165 211551 KOF00348 0 + 210165 211551 0 1 1386, 0, +contig35 211554 212022 KOF00349 0 + 211554 212022 0 1 468, 0, +contig35 212021 213167 KOF00350 0 + 212021 213167 0 1 1146, 0, +contig35 37023 37839 KOF00351 0 + 37023 37839 0 1 816, 0, +contig35 58361 59366 KOF00352 0 + 58361 59366 0 1 1005, 0, +contig35 65404 67954 KOF00353 0 + 65404 67954 0 1 2550, 0, +contig35 90977 91202 KOF00354 0 + 90977 91202 0 1 225, 0, +contig35 118063 120259 KOF00355 0 + 118063 120259 0 1 2196, 0, +contig35 138243 140424 KOF00356 0 + 138243 140424 0 1 2181, 0, +contig35 163109 163850 KOF00357 0 + 163109 163850 0 1 741, 0, +contig35 208544 209531 KOF00358 0 + 208544 209531 0 1 987, 0, +contig36 758 962 KOF00359 0 + 758 962 0 1 204, 0, +contig36 1069 1297 KOF00360 0 + 1069 1297 0 1 228, 0, +contig37 174 360 KOF00361 0 - 174 360 0 1 186, 0, +contig37 462 2397 KOF00362 0 - 462 2397 0 1 1935, 0, +contig37 2466 3099 KOF00363 0 - 2466 3099 0 1 633, 0, +contig37 3164 3470 KOF00364 0 + 3164 3470 0 1 306, 0, +contig37 3483 3858 KOF00365 0 + 3483 3858 0 1 375, 0, +contig37 3996 4779 KOF00366 0 - 3996 4779 0 1 783, 0, +contig37 4775 5390 KOF00367 0 - 4775 5390 0 1 615, 0, +contig37 5408 6086 KOF00368 0 - 5408 6086 0 1 678, 0, +contig37 6082 6862 KOF00369 0 - 6082 6862 0 1 780, 0, +contig37 7071 7611 KOF00370 0 + 7071 7611 0 1 540, 0, +contig37 7710 8742 KOF00371 0 - 7710 8742 0 1 1032, 0, +contig37 8738 9236 KOF00372 0 - 8738 9236 0 1 498, 0, +contig37 9270 9969 KOF00373 0 - 9270 9969 0 1 699, 0, +contig37 9965 10319 KOF00374 0 - 9965 10319 0 1 354, 0, +contig37 10323 11616 KOF00375 0 - 10323 11616 0 1 1293, 0, +contig37 11711 12041 KOF00376 0 - 11711 12041 0 1 330, 0, +contig37 12040 12388 KOF00377 0 - 12040 12388 0 1 348, 0, +contig37 12384 13215 KOF00378 0 - 12384 13215 0 1 831, 0, +contig37 13304 14969 KOF00379 0 - 13304 14969 0 1 1665, 0, +contig37 15369 15603 KOF00380 0 - 15369 15603 0 1 234, 0, +contig37 15775 17665 KOF00381 0 + 15775 17665 0 1 1890, 0, +contig37 17818 18397 KOF00382 0 + 17818 18397 0 1 579, 0, +contig37 18506 20003 KOF00383 0 + 18506 20003 0 1 1497, 0, +contig37 20333 21455 KOF00384 0 - 20333 21455 0 1 1122, 0, +contig37 21468 22095 KOF00385 0 - 21468 22095 0 1 627, 0, +contig37 22372 23692 KOF00386 0 + 22372 23692 0 1 1320, 0, +contig37 23675 24335 KOF00387 0 + 23675 24335 0 1 660, 0, +contig37 24392 24890 KOF00388 0 - 24392 24890 0 1 498, 0, +contig37 24959 25955 KOF00389 0 - 24959 25955 0 1 996, 0, +contig37 26148 26916 KOF00390 0 - 26148 26916 0 1 768, 0, +contig37 27101 27467 KOF00391 0 - 27101 27467 0 1 366, 0, +contig37 27537 27972 KOF00392 0 + 27537 27972 0 1 435, 0, +contig37 27958 29062 KOF00393 0 + 27958 29062 0 1 1104, 0, +contig38 106 301 KOF00394 0 + 106 301 0 1 195, 0, +contig38 358 820 KOF00395 0 - 358 820 0 1 462, 0, +contig38 926 2549 KOF00396 0 - 926 2549 0 1 1623, 0, +contig38 2604 3891 KOF00397 0 - 2604 3891 0 1 1287, 0, +contig38 4033 4468 KOF00398 0 - 4033 4468 0 1 435, 0, +contig38 6165 6606 KOF00399 0 - 6165 6606 0 1 441, 0, +contig38 6785 7073 KOF00400 0 + 6785 7073 0 1 288, 0, +contig38 7069 8119 KOF00401 0 + 7069 8119 0 1 1050, 0, +contig38 8120 8357 KOF00402 0 - 8120 8357 0 1 237, 0, +contig38 8710 8920 KOF00403 0 - 8710 8920 0 1 210, 0, +contig38 9031 9433 KOF00404 0 + 9031 9433 0 1 402, 0, +contig38 9601 9994 KOF00405 0 + 9601 9994 0 1 393, 0, +contig38 9998 10832 KOF00406 0 - 9998 10832 0 1 834, 0, +contig38 10966 11461 KOF00407 0 + 10966 11461 0 1 495, 0, +contig38 11479 11986 KOF00408 0 - 11479 11986 0 1 507, 0, +contig38 12247 13321 KOF00409 0 + 12247 13321 0 1 1074, 0, +contig38 13329 13950 KOF00410 0 + 13329 13950 0 1 621, 0, +contig38 13965 14235 KOF00411 0 - 13965 14235 0 1 270, 0, +contig38 14358 15063 KOF00412 0 - 14358 15063 0 1 705, 0, +contig38 15168 15810 KOF00413 0 + 15168 15810 0 1 642, 0, +contig38 17009 17414 KOF00414 0 + 17009 17414 0 1 405, 0, +contig38 18050 18452 KOF00415 0 + 18050 18452 0 1 402, 0, +contig38 18444 18873 KOF00416 0 + 18444 18873 0 1 429, 0, +contig38 18895 19816 KOF00417 0 - 18895 19816 0 1 921, 0, +contig38 19812 20541 KOF00418 0 - 19812 20541 0 1 729, 0, +contig38 20551 21691 KOF00419 0 - 20551 21691 0 1 1140, 0, +contig38 21687 23151 KOF00420 0 - 21687 23151 0 1 1464, 0, +contig38 23948 25055 KOF00421 0 - 23948 25055 0 1 1107, 0, +contig38 25383 26010 KOF00422 0 - 25383 26010 0 1 627, 0, +contig38 26028 27873 KOF00423 0 - 26028 27873 0 1 1845, 0, +contig38 27869 29282 KOF00424 0 - 27869 29282 0 1 1413, 0, +contig38 29278 29767 KOF00425 0 - 29278 29767 0 1 489, 0, +contig38 29763 30537 KOF00426 0 - 29763 30537 0 1 774, 0, +contig38 30611 31631 KOF00427 0 - 30611 31631 0 1 1020, 0, +contig38 31630 33379 KOF00428 0 - 31630 33379 0 1 1749, 0, +contig38 33375 33798 KOF00429 0 - 33375 33798 0 1 423, 0, +contig38 33801 34464 KOF00430 0 - 33801 34464 0 1 663, 0, +contig38 34467 36867 KOF00431 0 - 34467 36867 0 1 2400, 0, +contig38 36926 38270 KOF00432 0 - 36926 38270 0 1 1344, 0, +contig38 38271 38943 KOF00433 0 - 38271 38943 0 1 672, 0, +contig38 39088 39856 KOF00434 0 + 39088 39856 0 1 768, 0, +contig38 39886 40171 KOF00435 0 + 39886 40171 0 1 285, 0, +contig38 40540 40873 KOF00436 0 + 40540 40873 0 1 333, 0, +contig38 41326 43351 KOF00437 0 - 41326 43351 0 1 2025, 0, +contig38 43479 44004 KOF00438 0 + 43479 44004 0 1 525, 0, +contig38 44209 44623 KOF00439 0 - 44209 44623 0 1 414, 0, +contig38 44646 49221 KOF00440 0 - 44646 49221 0 1 4575, 0, +contig38 49217 49709 KOF00441 0 - 49217 49709 0 1 492, 0, +contig38 49716 50907 KOF00442 0 - 49716 50907 0 1 1191, 0, +contig38 50906 51380 KOF00443 0 - 50906 51380 0 1 474, 0, +contig38 51370 51889 KOF00444 0 - 51370 51889 0 1 519, 0, +contig38 52050 53439 KOF00445 0 - 52050 53439 0 1 1389, 0, +contig38 53691 56922 KOF00446 0 - 53691 56922 0 1 3231, 0, +contig38 57172 57949 KOF00447 0 - 57172 57949 0 1 777, 0, +contig38 57945 58266 KOF00448 0 - 57945 58266 0 1 321, 0, +contig38 58386 58965 KOF00449 0 + 58386 58965 0 1 579, 0, +contig38 59039 59381 KOF00450 0 - 59039 59381 0 1 342, 0, +contig38 59493 60642 KOF00451 0 - 59493 60642 0 1 1149, 0, +contig38 60638 61142 KOF00452 0 - 60638 61142 0 1 504, 0, +contig38 61200 61470 KOF00453 0 + 61200 61470 0 1 270, 0, +contig38 61466 62318 KOF00454 0 + 61466 62318 0 1 852, 0, +contig38 62499 63498 KOF00455 0 + 62499 63498 0 1 999, 0, +contig38 63566 63917 KOF00456 0 + 63566 63917 0 1 351, 0, +contig38 64021 64474 KOF00457 0 - 64021 64474 0 1 453, 0, +contig38 64558 65194 KOF00458 0 - 64558 65194 0 1 636, 0, +contig38 65328 66078 KOF00459 0 - 65328 66078 0 1 750, 0, +contig38 66070 67330 KOF00460 0 - 66070 67330 0 1 1260, 0, +contig38 67329 67950 KOF00461 0 - 67329 67950 0 1 621, 0, +contig38 68151 69078 KOF00462 0 - 68151 69078 0 1 927, 0, +contig38 69124 70093 KOF00463 0 - 69124 70093 0 1 969, 0, +contig38 70173 70794 KOF00464 0 + 70173 70794 0 1 621, 0, +contig38 70982 72401 KOF00465 0 + 70982 72401 0 1 1419, 0, +contig38 72480 73593 KOF00466 0 - 72480 73593 0 1 1113, 0, +contig38 73589 74513 KOF00467 0 - 73589 74513 0 1 924, 0, +contig38 74533 75490 KOF00468 0 - 74533 75490 0 1 957, 0, +contig38 75972 76959 KOF00469 0 + 75972 76959 0 1 987, 0, +contig38 76955 77441 KOF00470 0 + 76955 77441 0 1 486, 0, +contig38 77482 78091 KOF00471 0 + 77482 78091 0 1 609, 0, +contig38 78090 78678 KOF00472 0 + 78090 78678 0 1 588, 0, +contig38 78742 79624 KOF00473 0 + 78742 79624 0 1 882, 0, +contig38 79620 80874 KOF00474 0 + 79620 80874 0 1 1254, 0, +contig38 80880 81903 KOF00475 0 + 80880 81903 0 1 1023, 0, +contig38 4711 6121 KOF00476 0 - 4711 6121 0 1 1410, 0, +contig38 15814 16324 KOF00477 0 - 15814 16324 0 1 510, 0, +contig39 0 1360 KOF00478 0 - 0 1360 0 1 1360, 0, +contig39 1423 2266 KOF00479 0 - 1423 2266 0 1 843, 0, +contig39 2262 3195 KOF00480 0 - 2262 3195 0 1 933, 0, +contig39 3191 4328 KOF00481 0 - 3191 4328 0 1 1137, 0, +contig39 4601 6026 KOF00482 0 + 4601 6026 0 1 1425, 0, +contig39 6046 7156 KOF00483 0 - 6046 7156 0 1 1110, 0, +contig39 7247 8645 KOF00484 0 - 7247 8645 0 1 1398, 0, +contig39 8641 9403 KOF00485 0 - 8641 9403 0 1 762, 0, +contig39 9564 10842 KOF00486 0 + 9564 10842 0 1 1278, 0, +contig39 10892 12500 KOF00487 0 + 10892 12500 0 1 1608, 0, +contig39 12685 14281 KOF00488 0 + 12685 14281 0 1 1596, 0, +contig39 15154 16690 KOF00489 0 + 15154 16690 0 1 1536, 0, +contig39 18220 18682 KOF00490 0 + 18220 18682 0 1 462, 0, +contig39 20111 20753 KOF00491 0 + 20111 20753 0 1 642, 0, +contig39 20898 22395 KOF00492 0 - 20898 22395 0 1 1497, 0, +contig39 22499 23852 KOF00493 0 + 22499 23852 0 1 1353, 0, +contig39 23915 24794 KOF00494 0 + 23915 24794 0 1 879, 0, +contig39 24918 26205 KOF00495 0 + 24918 26205 0 1 1287, 0, +contig39 26476 28675 KOF00496 0 + 26476 28675 0 1 2199, 0, +contig39 28781 29096 KOF00497 0 + 28781 29096 0 1 315, 0, +contig39 29092 30721 KOF00498 0 + 29092 30721 0 1 1629, 0, +contig39 30717 31047 KOF00499 0 + 30717 31047 0 1 330, 0, +contig39 31118 33257 KOF00500 0 - 31118 33257 0 1 2139, 0, +contig39 33402 33930 KOF00501 0 - 33402 33930 0 1 528, 0, +contig39 34002 34569 KOF00502 0 + 34002 34569 0 1 567, 0, +contig39 34954 35857 KOF00503 0 - 34954 35857 0 1 903, 0, +contig39 35853 36657 KOF00504 0 - 35853 36657 0 1 804, 0, +contig39 36793 37495 KOF00505 0 - 36793 37495 0 1 702, 0, +contig39 37662 38445 KOF00506 0 + 37662 38445 0 1 783, 0, +contig39 38449 38803 KOF00507 0 + 38449 38803 0 1 354, 0, +contig39 38802 39492 KOF00508 0 + 38802 39492 0 1 690, 0, +contig39 39688 40900 KOF00509 0 + 39688 40900 0 1 1212, 0, +contig39 41122 42139 KOF00510 0 + 41122 42139 0 1 1017, 0, +contig39 42550 43639 KOF00511 0 + 42550 43639 0 1 1089, 0, +contig39 43721 44690 KOF00512 0 + 43721 44690 0 1 969, 0, +contig39 44689 45553 KOF00513 0 + 44689 45553 0 1 864, 0, +contig39 45572 46403 KOF00514 0 + 45572 46403 0 1 831, 0, +contig39 46479 47187 KOF00515 0 + 46479 47187 0 1 708, 0, +contig39 47446 47803 KOF00516 0 + 47446 47803 0 1 357, 0, +contig39 47789 48665 KOF00517 0 + 47789 48665 0 1 876, 0, +contig39 48657 49413 KOF00518 0 + 48657 49413 0 1 756, 0, +contig39 49439 49961 KOF00519 0 + 49439 49961 0 1 522, 0, +contig39 50195 50780 KOF00520 0 + 50195 50780 0 1 585, 0, +contig39 51191 54218 KOF00521 0 - 51191 54218 0 1 3027, 0, +contig39 54395 55805 KOF00522 0 - 54395 55805 0 1 1410, 0, +contig39 55811 56540 KOF00523 0 - 55811 56540 0 1 729, 0, +contig39 56744 57986 KOF00524 0 + 56744 57986 0 1 1242, 0, +contig39 57982 59941 KOF00525 0 + 57982 59941 0 1 1959, 0, +contig39 59937 61377 KOF00526 0 + 59937 61377 0 1 1440, 0, +contig39 61450 62194 KOF00527 0 - 61450 62194 0 1 744, 0, +contig39 62348 62831 KOF00528 0 - 62348 62831 0 1 483, 0, +contig39 62950 65410 KOF00529 0 - 62950 65410 0 1 2460, 0, +contig39 14389 14839 KOF00530 0 - 14389 14839 0 1 450, 0, +contig39 16791 18135 KOF00531 0 + 16791 18135 0 1 1344, 0, +contig39 18662 19964 KOF00532 0 - 18662 19964 0 1 1302, 0, +contig40 76 823 KOF00533 0 - 76 823 0 1 747, 0, +contig40 922 1822 KOF00534 0 + 922 1822 0 1 900, 0, +contig40 2280 2559 KOF00535 0 + 2280 2559 0 1 279, 0, +contig40 2670 4266 KOF00536 0 - 2670 4266 0 1 1596, 0, +contig40 4273 5455 KOF00537 0 - 4273 5455 0 1 1182, 0, +contig40 5466 6960 KOF00538 0 - 5466 6960 0 1 1494, 0, +contig40 6956 7400 KOF00539 0 - 6956 7400 0 1 444, 0, +contig40 7572 8454 KOF00540 0 + 7572 8454 0 1 882, 0, +contig40 8513 10757 KOF00541 0 + 8513 10757 0 1 2244, 0, +contig40 11081 11570 KOF00542 0 - 11081 11570 0 1 489, 0, +contig40 11693 14021 KOF00543 0 + 11693 14021 0 1 2328, 0, +contig40 14156 15545 KOF00544 0 - 14156 15545 0 1 1389, 0, +contig40 15668 17360 KOF00545 0 - 15668 17360 0 1 1692, 0, +contig40 17698 18577 KOF00546 0 + 17698 18577 0 1 879, 0, +contig41 0 1114 KOF00547 0 - 0 1114 0 1 1114, 0, +contig41 1513 2380 KOF00548 0 - 1513 2380 0 1 867, 0, +contig41 2382 3447 KOF00549 0 - 2382 3447 0 1 1065, 0, +contig41 3446 6074 KOF00550 0 - 3446 6074 0 1 2628, 0, +contig41 6076 6919 KOF00551 0 - 6076 6919 0 1 843, 0, +contig41 7092 7623 KOF00552 0 + 7092 7623 0 1 531, 0, +contig41 7622 8372 KOF00553 0 + 7622 8372 0 1 750, 0, +contig41 8379 10755 KOF00554 0 + 8379 10755 0 1 2376, 0, +contig41 10751 11789 KOF00555 0 + 10751 11789 0 1 1038, 0, +contig41 11949 12168 KOF00556 0 + 11949 12168 0 1 219, 0, +contig41 12167 12866 KOF00557 0 + 12167 12866 0 1 699, 0, +contig41 13086 13893 KOF00558 0 + 13086 13893 0 1 807, 0, +contig41 14019 14895 KOF00559 0 + 14019 14895 0 1 876, 0, +contig41 15153 16692 KOF00560 0 + 15153 16692 0 1 1539, 0, +contig41 16813 17542 KOF00561 0 + 16813 17542 0 1 729, 0, +contig41 17638 18193 KOF00562 0 + 17638 18193 0 1 555, 0, +contig41 18198 18966 KOF00563 0 + 18198 18966 0 1 768, 0, +contig41 18962 19799 KOF00564 0 + 18962 19799 0 1 837, 0, +contig41 19801 20992 KOF00565 0 + 19801 20992 0 1 1191, 0, +contig41 21048 22407 KOF00566 0 + 21048 22407 0 1 1359, 0, +contig41 22481 24845 KOF00567 0 + 22481 24845 0 1 2364, 0, +contig41 25279 26302 KOF00568 0 + 25279 26302 0 1 1023, 0, +contig41 26298 26757 KOF00569 0 + 26298 26757 0 1 459, 0, +contig41 26773 27565 KOF00570 0 + 26773 27565 0 1 792, 0, +contig41 27561 28821 KOF00571 0 + 27561 28821 0 1 1260, 0, +contig41 28817 29486 KOF00572 0 + 28817 29486 0 1 669, 0, +contig41 29702 33293 KOF00573 0 + 29702 33293 0 1 3591, 0, +contig41 33357 34227 KOF00574 0 + 33357 34227 0 1 870, 0, +contig41 34340 35300 KOF00575 0 + 34340 35300 0 1 960, 0, +contig41 35613 36069 KOF00576 0 - 35613 36069 0 1 456, 0, +contig41 36218 36809 KOF00577 0 + 36218 36809 0 1 591, 0, +contig41 36902 38210 KOF00578 0 + 36902 38210 0 1 1308, 0, +contig41 38339 39329 KOF00579 0 - 38339 39329 0 1 990, 0, +contig41 39325 39691 KOF00580 0 - 39325 39691 0 1 366, 0, +contig41 39827 40730 KOF00581 0 + 39827 40730 0 1 903, 0, +contig41 41311 42184 KOF00582 0 - 41311 42184 0 1 873, 0, +contig41 42299 43244 KOF00583 0 + 42299 43244 0 1 945, 0, +contig41 43312 43606 KOF00584 0 + 43312 43606 0 1 294, 0, +contig41 43637 44453 KOF00585 0 - 43637 44453 0 1 816, 0, +contig41 44449 44806 KOF00586 0 - 44449 44806 0 1 357, 0, +contig41 44918 46727 KOF00587 0 + 44918 46727 0 1 1809, 0, +contig41 47212 48211 KOF00588 0 + 47212 48211 0 1 999, 0, +contig41 48220 49432 KOF00589 0 - 48220 49432 0 1 1212, 0, +contig41 49428 51261 KOF00590 0 - 49428 51261 0 1 1833, 0, +contig41 51433 52993 KOF00591 0 - 51433 52993 0 1 1560, 0, +contig41 53103 53547 KOF00592 0 + 53103 53547 0 1 444, 0, +contig41 53543 54362 KOF00593 0 + 53543 54362 0 1 819, 0, +contig41 54396 55344 KOF00594 0 + 54396 55344 0 1 948, 0, +contig41 55374 56535 KOF00595 0 - 55374 56535 0 1 1161, 0, +contig41 56656 57727 KOF00596 0 - 56656 57727 0 1 1071, 0, +contig41 57843 58566 KOF00597 0 - 57843 58566 0 1 723, 0, +contig41 58600 60265 KOF00598 0 - 58600 60265 0 1 1665, 0, +contig41 60375 62799 KOF00599 0 - 60375 62799 0 1 2424, 0, +contig41 63017 64964 KOF00600 0 - 63017 64964 0 1 1947, 0, +contig41 65231 65453 KOF00601 0 + 65231 65453 0 1 222, 0, +contig41 65464 66643 KOF00602 0 - 65464 66643 0 1 1179, 0, +contig41 67124 67670 KOF00603 0 - 67124 67670 0 1 546, 0, +contig41 67728 68892 KOF00604 0 - 67728 68892 0 1 1164, 0, +contig41 1110 1476 KOF00605 0 - 1110 1476 0 1 366, 0, +contig41 66723 67113 KOF00606 0 - 66723 67113 0 1 390, 0, +contig42 240 996 KOF00607 0 + 240 996 0 1 756, 0, +contig42 1027 1465 KOF00608 0 + 1027 1465 0 1 438, 0, +contig42 1712 2069 KOF00609 0 + 1712 2069 0 1 357, 0, +contig42 2059 2614 KOF00610 0 + 2059 2614 0 1 555, 0, +contig42 2647 3397 KOF00611 0 + 2647 3397 0 1 750, 0, +contig42 3393 4701 KOF00612 0 + 3393 4701 0 1 1308, 0, +contig42 4798 5326 KOF00613 0 + 4798 5326 0 1 528, 0, +contig42 5330 6671 KOF00614 0 + 5330 6671 0 1 1341, 0, +contig42 6667 8902 KOF00615 0 + 6667 8902 0 1 2235, 0, +contig42 8898 9993 KOF00616 0 + 8898 9993 0 1 1095, 0, +contig42 9997 10486 KOF00617 0 + 9997 10486 0 1 489, 0, +contig42 10495 11152 KOF00618 0 + 10495 11152 0 1 657, 0, +contig42 11148 11454 KOF00619 0 + 11148 11454 0 1 306, 0, +contig42 11461 13621 KOF00620 0 + 11461 13621 0 1 2160, 0, +contig42 13644 15153 KOF00621 0 + 13644 15153 0 1 1509, 0, +contig42 15168 16629 KOF00622 0 + 15168 16629 0 1 1461, 0, +contig42 17380 17971 KOF00623 0 + 17380 17971 0 1 591, 0, +contig42 17975 19487 KOF00624 0 + 17975 19487 0 1 1512, 0, +contig42 19579 22225 KOF00625 0 + 19579 22225 0 1 2646, 0, +contig42 22317 22701 KOF00626 0 + 22317 22701 0 1 384, 0, +contig42 22809 23718 KOF00627 0 + 22809 23718 0 1 909, 0, +contig42 23891 24152 KOF00628 0 + 23891 24152 0 1 261, 0, +contig42 24303 26412 KOF00629 0 + 24303 26412 0 1 2109, 0, +contig42 26689 27880 KOF00630 0 + 26689 27880 0 1 1191, 0, +contig42 27970 28375 KOF00631 0 + 27970 28375 0 1 405, 0, +contig42 28399 29959 KOF00632 0 - 28399 29959 0 1 1560, 0, +contig42 29969 30233 KOF00633 0 - 29969 30233 0 1 264, 0, +contig42 30232 30529 KOF00634 0 - 30232 30529 0 1 297, 0, +contig42 30957 32859 KOF00635 0 + 30957 32859 0 1 1902, 0, +contig42 32970 33450 KOF00636 0 + 32970 33450 0 1 480, 0, +contig42 33716 33914 KOF00637 0 + 33716 33914 0 1 198, 0, +contig42 33925 34285 KOF00638 0 + 33925 34285 0 1 360, 0, +contig42 34478 35474 KOF00639 0 + 34478 35474 0 1 996, 0, +contig42 35595 37977 KOF00640 0 + 35595 37977 0 1 2382, 0, +contig42 38004 38304 KOF00641 0 + 38004 38304 0 1 300, 0, +contig42 38284 38641 KOF00642 0 + 38284 38641 0 1 357, 0, +contig42 38854 39295 KOF00643 0 - 38854 39295 0 1 441, 0, +contig42 39291 39645 KOF00644 0 - 39291 39645 0 1 354, 0, +contig42 39731 40241 KOF00645 0 - 39731 40241 0 1 510, 0, +contig42 40483 40879 KOF00646 0 + 40483 40879 0 1 396, 0, +contig42 40903 41596 KOF00647 0 - 40903 41596 0 1 693, 0, +contig42 41992 42343 KOF00648 0 + 41992 42343 0 1 351, 0, +contig42 42380 42989 KOF00649 0 + 42380 42989 0 1 609, 0, +contig42 43087 43729 KOF00650 0 + 43087 43729 0 1 642, 0, +contig42 43823 43997 KOF00651 0 + 43823 43997 0 1 174, 0, +contig42 44019 44352 KOF00652 0 - 44019 44352 0 1 333, 0, +contig42 44365 44938 KOF00653 0 - 44365 44938 0 1 573, 0, +contig42 45026 45260 KOF00654 0 - 45026 45260 0 1 234, 0, +contig42 45272 45545 KOF00655 0 - 45272 45545 0 1 273, 0, +contig42 45947 46154 KOF00656 0 + 45947 46154 0 1 207, 0, +contig42 46286 46850 KOF00657 0 + 46286 46850 0 1 564, 0, +contig42 47017 47221 KOF00658 0 + 47017 47221 0 1 204, 0, +contig42 49349 50015 KOF00659 0 - 49349 50015 0 1 666, 0, +contig42 50559 52350 KOF00660 0 - 50559 52350 0 1 1791, 0, +contig42 52415 52892 KOF00661 0 - 52415 52892 0 1 477, 0, +contig42 53054 53606 KOF00662 0 - 53054 53606 0 1 552, 0, +contig42 53703 54282 KOF00663 0 - 53703 54282 0 1 579, 0, +contig42 54941 55967 KOF00664 0 + 54941 55967 0 1 1026, 0, +contig42 56040 56883 KOF00665 0 - 56040 56883 0 1 843, 0, +contig42 57015 57777 KOF00666 0 + 57015 57777 0 1 762, 0, +contig42 57783 58269 KOF00667 0 - 57783 58269 0 1 486, 0, +contig42 58426 58636 KOF00668 0 - 58426 58636 0 1 210, 0, +contig42 58760 59042 KOF00669 0 - 58760 59042 0 1 282, 0, +contig42 59038 59290 KOF00670 0 - 59038 59290 0 1 252, 0, +contig42 59282 59780 KOF00671 0 - 59282 59780 0 1 498, 0, +contig42 60195 60489 KOF00672 0 + 60195 60489 0 1 294, 0, +contig42 60502 61465 KOF00673 0 - 60502 61465 0 1 963, 0, +contig42 61485 62112 KOF00674 0 + 61485 62112 0 1 627, 0, +contig42 62120 62765 KOF00675 0 - 62120 62765 0 1 645, 0, +contig42 62829 63120 KOF00676 0 + 62829 63120 0 1 291, 0, +contig42 63116 63581 KOF00677 0 + 63116 63581 0 1 465, 0, +contig42 63577 63793 KOF00678 0 + 63577 63793 0 1 216, 0, +contig42 63779 64313 KOF00679 0 + 63779 64313 0 1 534, 0, +contig42 66928 67432 KOF00680 0 + 66928 67432 0 1 504, 0, +contig42 67435 68320 KOF00681 0 - 67435 68320 0 1 885, 0, +contig42 68968 69895 KOF00682 0 - 68968 69895 0 1 927, 0, +contig42 69884 70778 KOF00683 0 - 69884 70778 0 1 894, 0, +contig42 70799 71855 KOF00684 0 - 70799 71855 0 1 1056, 0, +contig42 71956 72538 KOF00685 0 + 71956 72538 0 1 582, 0, +contig42 72718 75049 KOF00686 0 + 72718 75049 0 1 2331, 0, +contig42 75137 77210 KOF00687 0 - 75137 77210 0 1 2073, 0, +contig42 77329 78061 KOF00688 0 - 77329 78061 0 1 732, 0, +contig42 78265 79345 KOF00689 0 - 78265 79345 0 1 1080, 0, +contig42 79429 81316 KOF00690 0 + 79429 81316 0 1 1887, 0, +contig42 81405 82302 KOF00691 0 + 81405 82302 0 1 897, 0, +contig42 82847 84179 KOF00692 0 - 82847 84179 0 1 1332, 0, +contig42 84223 85294 KOF00693 0 - 84223 85294 0 1 1071, 0, +contig42 85317 86802 KOF00694 0 + 85317 86802 0 1 1485, 0, +contig42 86798 87281 KOF00695 0 + 86798 87281 0 1 483, 0, +contig42 87363 88932 KOF00696 0 + 87363 88932 0 1 1569, 0, +contig42 89135 91043 KOF00697 0 + 89135 91043 0 1 1908, 0, +contig42 91054 91984 KOF00698 0 + 91054 91984 0 1 930, 0, +contig42 91985 92939 KOF00699 0 + 91985 92939 0 1 954, 0, +contig42 93737 94478 KOF00700 0 - 93737 94478 0 1 741, 0, +contig42 94495 95416 KOF00701 0 - 94495 95416 0 1 921, 0, +contig42 95509 96376 KOF00702 0 + 95509 96376 0 1 867, 0, +contig42 96695 97058 KOF00703 0 + 96695 97058 0 1 363, 0, +contig42 97027 97855 KOF00704 0 - 97027 97855 0 1 828, 0, +contig42 97975 98746 KOF00705 0 + 97975 98746 0 1 771, 0, +contig42 98792 99725 KOF00706 0 + 98792 99725 0 1 933, 0, +contig42 99721 101848 KOF00707 0 + 99721 101848 0 1 2127, 0, +contig42 101926 102943 KOF00708 0 - 101926 102943 0 1 1017, 0, +contig42 103063 103630 KOF00709 0 + 103063 103630 0 1 567, 0, +contig42 103798 105142 KOF00710 0 + 103798 105142 0 1 1344, 0, +contig42 105167 105884 KOF00711 0 + 105167 105884 0 1 717, 0, +contig42 105880 106576 KOF00712 0 + 105880 106576 0 1 696, 0, +contig42 106587 107292 KOF00713 0 + 106587 107292 0 1 705, 0, +contig42 107380 108229 KOF00714 0 - 107380 108229 0 1 849, 0, +contig42 108228 109575 KOF00715 0 - 108228 109575 0 1 1347, 0, +contig42 109576 109831 KOF00716 0 - 109576 109831 0 1 255, 0, +contig42 110103 111333 KOF00717 0 + 110103 111333 0 1 1230, 0, +contig42 111778 113026 KOF00718 0 - 111778 113026 0 1 1248, 0, +contig42 113022 113475 KOF00719 0 - 113022 113475 0 1 453, 0, +contig42 113528 114905 KOF00720 0 - 113528 114905 0 1 1377, 0, +contig42 115093 115663 KOF00721 0 + 115093 115663 0 1 570, 0, +contig42 115981 116992 KOF00722 0 + 115981 116992 0 1 1011, 0, +contig42 117054 118248 KOF00723 0 + 117054 118248 0 1 1194, 0, +contig42 118380 119469 KOF00724 0 + 118380 119469 0 1 1089, 0, +contig42 119494 120823 KOF00725 0 + 119494 120823 0 1 1329, 0, +contig42 120826 121429 KOF00726 0 + 120826 121429 0 1 603, 0, +contig42 121425 122379 KOF00727 0 + 121425 122379 0 1 954, 0, +contig42 122399 123695 KOF00728 0 + 122399 123695 0 1 1296, 0, +contig42 123694 123958 KOF00729 0 + 123694 123958 0 1 264, 0, +contig42 123969 125127 KOF00730 0 + 123969 125127 0 1 1158, 0, +contig42 125123 126395 KOF00731 0 + 125123 126395 0 1 1272, 0, +contig42 126502 126973 KOF00732 0 - 126502 126973 0 1 471, 0, +contig42 126969 128226 KOF00733 0 - 126969 128226 0 1 1257, 0, +contig42 128227 130114 KOF00734 0 - 128227 130114 0 1 1887, 0, +contig42 130115 132143 KOF00735 0 - 130115 132143 0 1 2028, 0, +contig42 132485 133691 KOF00736 0 - 132485 133691 0 1 1206, 0, +contig42 134264 134381 KOF00737 0 - 134264 134381 0 1 117, 0, +contig42 134434 135586 KOF00738 0 - 134434 135586 0 1 1152, 0, +contig42 135601 137191 KOF00739 0 - 135601 137191 0 1 1590, 0, +contig42 137419 139165 KOF00740 0 + 137419 139165 0 1 1746, 0, +contig42 139161 140835 KOF00741 0 + 139161 140835 0 1 1674, 0, +contig42 140935 141280 KOF00742 0 - 140935 141280 0 1 345, 0, +contig42 141280 142393 KOF00743 0 - 141280 142393 0 1 1113, 0, +contig42 142573 143563 KOF00744 0 - 142573 143563 0 1 990, 0, +contig42 143556 144006 KOF00745 0 - 143556 144006 0 1 450, 0, +contig42 144010 144628 KOF00746 0 - 144010 144628 0 1 618, 0, +contig42 144636 146556 KOF00747 0 - 144636 146556 0 1 1920, 0, +contig42 146556 147018 KOF00748 0 - 146556 147018 0 1 462, 0, +contig42 147014 147203 KOF00749 0 - 147014 147203 0 1 189, 0, +contig42 147199 147970 KOF00750 0 - 147199 147970 0 1 771, 0, +contig42 148013 148709 KOF00751 0 - 148013 148709 0 1 696, 0, +contig42 148705 149335 KOF00752 0 - 148705 149335 0 1 630, 0, +contig42 151604 152039 KOF00753 0 + 151604 152039 0 1 435, 0, +contig42 152025 152319 KOF00754 0 - 152025 152319 0 1 294, 0, +contig42 152672 153080 KOF00755 0 + 152672 153080 0 1 408, 0, +contig42 153192 154320 KOF00756 0 - 153192 154320 0 1 1128, 0, +contig42 154410 155199 KOF00757 0 + 154410 155199 0 1 789, 0, +contig42 155315 156950 KOF00758 0 - 155315 156950 0 1 1635, 0, +contig42 156942 157818 KOF00759 0 - 156942 157818 0 1 876, 0, +contig42 157831 158737 KOF00760 0 - 157831 158737 0 1 906, 0, +contig42 159432 159684 KOF00761 0 + 159432 159684 0 1 252, 0, +contig42 159833 160871 KOF00762 0 + 159833 160871 0 1 1038, 0, +contig42 160947 164034 KOF00763 0 + 160947 164034 0 1 3087, 0, +contig42 164284 165889 KOF00764 0 + 164284 165889 0 1 1605, 0, +contig42 165893 167234 KOF00765 0 + 165893 167234 0 1 1341, 0, +contig42 167230 168112 KOF00766 0 + 167230 168112 0 1 882, 0, +contig42 168108 168945 KOF00767 0 + 168108 168945 0 1 837, 0, +contig42 168941 172109 KOF00768 0 + 168941 172109 0 1 3168, 0, +contig42 172111 172999 KOF00769 0 + 172111 172999 0 1 888, 0, +contig42 173176 176437 KOF00770 0 - 173176 176437 0 1 3261, 0, +contig42 176844 177819 KOF00771 0 + 176844 177819 0 1 975, 0, +contig42 178381 179191 KOF00772 0 - 178381 179191 0 1 810, 0, +contig42 179289 179706 KOF00773 0 - 179289 179706 0 1 417, 0, +contig42 179702 180053 KOF00774 0 - 179702 180053 0 1 351, 0, +contig42 180143 180743 KOF00775 0 + 180143 180743 0 1 600, 0, +contig42 180753 182520 KOF00776 0 + 180753 182520 0 1 1767, 0, +contig42 182663 183077 KOF00777 0 - 182663 183077 0 1 414, 0, +contig42 183076 183529 KOF00778 0 - 183076 183529 0 1 453, 0, +contig42 183749 184361 KOF00779 0 + 183749 184361 0 1 612, 0, +contig42 184421 185270 KOF00780 0 - 184421 185270 0 1 849, 0, +contig42 185432 186998 KOF00781 0 + 185432 186998 0 1 1566, 0, +contig42 187005 187632 KOF00782 0 + 187005 187632 0 1 627, 0, +contig42 187675 187861 KOF00783 0 - 187675 187861 0 1 186, 0, +contig42 188046 188349 KOF00784 0 + 188046 188349 0 1 303, 0, +contig42 189287 190403 KOF00785 0 + 189287 190403 0 1 1116, 0, +contig42 190496 192665 KOF00786 0 - 190496 192665 0 1 2169, 0, +contig42 192795 193275 KOF00787 0 + 192795 193275 0 1 480, 0, +contig42 193309 193843 KOF00788 0 - 193309 193843 0 1 534, 0, +contig42 193977 194757 KOF00789 0 - 193977 194757 0 1 780, 0, +contig42 194837 196709 KOF00790 0 - 194837 196709 0 1 1872, 0, +contig42 197150 197600 KOF00791 0 - 197150 197600 0 1 450, 0, +contig42 197636 198533 KOF00792 0 - 197636 198533 0 1 897, 0, +contig42 198680 200198 KOF00793 0 + 198680 200198 0 1 1518, 0, +contig42 200315 200711 KOF00794 0 + 200315 200711 0 1 396, 0, +contig42 200786 201122 KOF00795 0 + 200786 201122 0 1 336, 0, +contig42 201180 201816 KOF00796 0 + 201180 201816 0 1 636, 0, +contig42 201889 202231 KOF00797 0 - 201889 202231 0 1 342, 0, +contig42 202230 203385 KOF00798 0 - 202230 203385 0 1 1155, 0, +contig42 203504 203990 KOF00799 0 - 203504 203990 0 1 486, 0, +contig42 204225 204435 KOF00800 0 + 204225 204435 0 1 210, 0, +contig42 204507 205002 KOF00801 0 - 204507 205002 0 1 495, 0, +contig42 205138 205573 KOF00802 0 - 205138 205573 0 1 435, 0, +contig42 205653 206478 KOF00803 0 + 205653 206478 0 1 825, 0, +contig42 206511 207285 KOF00804 0 - 206511 207285 0 1 774, 0, +contig42 207281 207500 KOF00805 0 - 207281 207500 0 1 219, 0, +contig42 208635 209175 KOF00806 0 + 208635 209175 0 1 540, 0, +contig42 210073 212353 KOF00807 0 + 210073 212353 0 1 2280, 0, +contig42 212356 214300 KOF00808 0 + 212356 214300 0 1 1944, 0, +contig42 214366 214927 KOF00809 0 + 214366 214927 0 1 561, 0, +contig42 215139 216570 KOF00810 0 + 215139 216570 0 1 1431, 0, +contig42 216743 218987 KOF00811 0 + 216743 218987 0 1 2244, 0, +contig42 218986 220579 KOF00812 0 + 218986 220579 0 1 1593, 0, +contig42 220753 220966 KOF00813 0 + 220753 220966 0 1 213, 0, +contig42 220962 221220 KOF00814 0 + 220962 221220 0 1 258, 0, +contig42 221381 222818 KOF00815 0 - 221381 222818 0 1 1437, 0, +contig42 222881 224099 KOF00816 0 - 222881 224099 0 1 1218, 0, +contig42 224139 226971 KOF00817 0 - 224139 226971 0 1 2832, 0, +contig42 227157 228054 KOF00818 0 - 227157 228054 0 1 897, 0, +contig42 228063 229479 KOF00819 0 - 228063 229479 0 1 1416, 0, +contig42 41681 41993 KOF00820 0 + 41681 41993 0 1 312, 0, +contig42 47336 49244 KOF00821 0 - 47336 49244 0 1 1908, 0, +contig42 64328 64565 KOF00822 0 + 64328 64565 0 1 237, 0, +contig42 93013 93553 KOF00823 0 - 93013 93553 0 1 540, 0, +contig42 149531 150680 KOF00824 0 + 149531 150680 0 1 1149, 0, +contig42 150694 151501 KOF00825 0 + 150694 151501 0 1 807, 0, +contig42 159112 159412 KOF00826 0 + 159112 159412 0 1 300, 0, +contig42 188386 189268 KOF00827 0 + 188386 189268 0 1 882, 0, +contig42 207663 208509 KOF00828 0 + 207663 208509 0 1 846, 0, +contig42 209339 209996 KOF00829 0 + 209339 209996 0 1 657, 0, +contig43 390 1602 KOF00830 0 - 390 1602 0 1 1212, 0, +contig43 1769 3242 KOF00831 0 + 1769 3242 0 1 1473, 0, +contig43 3298 4435 KOF00832 0 + 3298 4435 0 1 1137, 0, +contig43 4514 4745 KOF00833 0 - 4514 4745 0 1 231, 0, +contig43 4822 6196 KOF00834 0 - 4822 6196 0 1 1374, 0, +contig43 6192 6993 KOF00835 0 - 6192 6993 0 1 801, 0, +contig43 7155 7815 KOF00836 0 + 7155 7815 0 1 660, 0, +contig43 7833 8496 KOF00837 0 + 7833 8496 0 1 663, 0, +contig43 8775 10485 KOF00838 0 + 8775 10485 0 1 1710, 0, +contig43 10495 12553 KOF00839 0 + 10495 12553 0 1 2058, 0, +contig43 12549 13200 KOF00840 0 + 12549 13200 0 1 651, 0, +contig43 13251 15912 KOF00841 0 + 13251 15912 0 1 2661, 0, +contig43 15892 16606 KOF00842 0 + 15892 16606 0 1 714, 0, +contig43 16829 19181 KOF00843 0 - 16829 19181 0 1 2352, 0, +contig43 19193 19667 KOF00844 0 - 19193 19667 0 1 474, 0, +contig43 19663 20926 KOF00845 0 - 19663 20926 0 1 1263, 0, +contig43 21154 21781 KOF00846 0 + 21154 21781 0 1 627, 0, +contig43 22670 24359 KOF00847 0 + 22670 24359 0 1 1689, 0, +contig43 24380 25283 KOF00848 0 + 24380 25283 0 1 903, 0, +contig43 25410 26163 KOF00849 0 - 25410 26163 0 1 753, 0, +contig43 26262 26751 KOF00850 0 - 26262 26751 0 1 489, 0, +contig43 26835 27303 KOF00851 0 + 26835 27303 0 1 468, 0, +contig43 27271 28159 KOF00852 0 - 27271 28159 0 1 888, 0, +contig43 28258 29452 KOF00853 0 + 28258 29452 0 1 1194, 0, +contig43 30277 30715 KOF00854 0 + 30277 30715 0 1 438, 0, +contig43 30721 31411 KOF00855 0 - 30721 31411 0 1 690, 0, +contig43 31601 32174 KOF00856 0 - 31601 32174 0 1 573, 0, +contig43 32385 34788 KOF00857 0 + 32385 34788 0 1 2403, 0, +contig43 34879 35239 KOF00858 0 + 34879 35239 0 1 360, 0, +contig43 35254 35947 KOF00859 0 - 35254 35947 0 1 693, 0, +contig43 36054 36948 KOF00860 0 - 36054 36948 0 1 894, 0, +contig43 37438 38872 KOF00861 0 + 37438 38872 0 1 1434, 0, +contig43 38973 39339 KOF00862 0 + 38973 39339 0 1 366, 0, +contig43 39347 39818 KOF00863 0 + 39347 39818 0 1 471, 0, +contig43 39814 40282 KOF00864 0 + 39814 40282 0 1 468, 0, +contig43 40349 41459 KOF00865 0 + 40349 41459 0 1 1110, 0, +contig43 41550 42018 KOF00866 0 + 41550 42018 0 1 468, 0, +contig43 42091 42811 KOF00867 0 + 42091 42811 0 1 720, 0, +contig43 42814 44182 KOF00868 0 + 42814 44182 0 1 1368, 0, +contig43 44316 45420 KOF00869 0 + 44316 45420 0 1 1104, 0, +contig43 45416 45953 KOF00870 0 + 45416 45953 0 1 537, 0, +contig43 8670 8763 KOF00871 0 + 8670 8763 0 1 93, 0, +contig43 21851 22556 KOF00872 0 + 21851 22556 0 1 705, 0, +contig43 29448 30147 KOF00873 0 - 29448 30147 0 1 699, 0, +contig44 68 671 KOF00874 0 - 68 671 0 1 603, 0, +contig44 667 1882 KOF00875 0 - 667 1882 0 1 1215, 0, +contig44 1888 2671 KOF00876 0 - 1888 2671 0 1 783, 0, +contig44 2667 3564 KOF00877 0 - 2667 3564 0 1 897, 0, +contig44 3766 5020 KOF00878 0 + 3766 5020 0 1 1254, 0, +contig44 5122 5812 KOF00879 0 + 5122 5812 0 1 690, 0, +contig44 5826 6984 KOF00880 0 + 5826 6984 0 1 1158, 0, +contig44 6996 8313 KOF00881 0 + 6996 8313 0 1 1317, 0, +contig44 8672 11531 KOF00882 0 + 8672 11531 0 1 2859, 0, +contig44 11649 12543 KOF00883 0 - 11649 12543 0 1 894, 0, +contig44 12539 13445 KOF00884 0 - 12539 13445 0 1 906, 0, +contig44 13668 15003 KOF00885 0 + 13668 15003 0 1 1335, 0, +contig44 15455 17108 KOF00886 0 - 15455 17108 0 1 1653, 0, +contig44 17213 18146 KOF00887 0 - 17213 18146 0 1 933, 0, +contig44 18376 18673 KOF00888 0 - 18376 18673 0 1 297, 0, +contig44 18877 20173 KOF00889 0 - 18877 20173 0 1 1296, 0, +contig44 20281 21076 KOF00890 0 + 20281 21076 0 1 795, 0, +contig44 21152 21374 KOF00891 0 - 21152 21374 0 1 222, 0, +contig44 21577 21715 KOF00892 0 - 21577 21715 0 1 138, 0, +contig44 21877 22798 KOF00893 0 - 21877 22798 0 1 921, 0, +contig44 22928 23276 KOF00894 0 + 22928 23276 0 1 348, 0, +contig44 24653 25061 KOF00895 0 + 24653 25061 0 1 408, 0, +contig44 25141 25465 KOF00896 0 + 25141 25465 0 1 324, 0, +contig44 25522 25825 KOF00897 0 - 25522 25825 0 1 303, 0, +contig44 25883 26171 KOF00898 0 - 25883 26171 0 1 288, 0, +contig44 26580 27027 KOF00899 0 - 26580 27027 0 1 447, 0, +contig44 27373 27634 KOF00900 0 - 27373 27634 0 1 261, 0, +contig44 27907 28120 KOF00901 0 - 27907 28120 0 1 213, 0, +contig44 28350 29199 KOF00902 0 - 28350 29199 0 1 849, 0, +contig44 29208 29940 KOF00903 0 - 29208 29940 0 1 732, 0, +contig44 29936 30905 KOF00904 0 - 29936 30905 0 1 969, 0, +contig44 31048 31327 KOF00905 0 + 31048 31327 0 1 279, 0, +contig44 31335 32082 KOF00906 0 + 31335 32082 0 1 747, 0, +contig44 32166 33591 KOF00907 0 - 32166 33591 0 1 1425, 0, +contig44 33616 34300 KOF00908 0 - 33616 34300 0 1 684, 0, +contig44 34373 34748 KOF00909 0 - 34373 34748 0 1 375, 0, +contig44 34960 35992 KOF00910 0 - 34960 35992 0 1 1032, 0, +contig44 36981 38445 KOF00911 0 - 36981 38445 0 1 1464, 0, +contig44 38654 39635 KOF00912 0 + 38654 39635 0 1 981, 0, +contig44 39746 40172 KOF00913 0 + 39746 40172 0 1 426, 0, +contig44 40403 41294 KOF00914 0 - 40403 41294 0 1 891, 0, +contig44 41290 42466 KOF00915 0 - 41290 42466 0 1 1176, 0, +contig44 42462 43260 KOF00916 0 - 42462 43260 0 1 798, 0, +contig44 43256 44423 KOF00917 0 - 43256 44423 0 1 1167, 0, +contig44 44437 45943 KOF00918 0 - 44437 45943 0 1 1506, 0, +contig44 46057 47425 KOF00919 0 + 46057 47425 0 1 1368, 0, +contig44 50184 50856 KOF00920 0 + 50184 50856 0 1 672, 0, +contig44 50912 51539 KOF00921 0 + 50912 51539 0 1 627, 0, +contig44 52712 53624 KOF00922 0 + 52712 53624 0 1 912, 0, +contig44 53627 54719 KOF00923 0 - 53627 54719 0 1 1092, 0, +contig44 54893 55700 KOF00924 0 - 54893 55700 0 1 807, 0, +contig44 55755 56157 KOF00925 0 - 55755 56157 0 1 402, 0, +contig44 56249 56885 KOF00926 0 + 56249 56885 0 1 636, 0, +contig44 57029 58049 KOF00927 0 - 57029 58049 0 1 1020, 0, +contig44 58196 60599 KOF00928 0 - 58196 60599 0 1 2403, 0, +contig44 61129 61966 KOF00929 0 + 61129 61966 0 1 837, 0, +contig44 62068 63169 KOF00930 0 - 62068 63169 0 1 1101, 0, +contig44 63165 63837 KOF00931 0 - 63165 63837 0 1 672, 0, +contig44 63880 64738 KOF00932 0 + 63880 64738 0 1 858, 0, +contig44 65039 66485 KOF00933 0 - 65039 66485 0 1 1446, 0, +contig44 66693 67212 KOF00934 0 - 66693 67212 0 1 519, 0, +contig44 67431 68049 KOF00935 0 - 67431 68049 0 1 618, 0, +contig44 68210 69374 KOF00936 0 + 68210 69374 0 1 1164, 0, +contig44 69384 70995 KOF00937 0 + 69384 70995 0 1 1611, 0, +contig44 71021 73004 KOF00938 0 + 71021 73004 0 1 1983, 0, +contig44 73023 74190 KOF00939 0 - 73023 74190 0 1 1167, 0, +contig44 74328 74625 KOF00940 0 + 74328 74625 0 1 297, 0, +contig44 77135 78176 KOF00941 0 - 77135 78176 0 1 1041, 0, +contig44 78593 79895 KOF00942 0 - 78593 79895 0 1 1302, 0, +contig44 79960 81583 KOF00943 0 - 79960 81583 0 1 1623, 0, +contig44 81692 82661 KOF00944 0 + 81692 82661 0 1 969, 0, +contig44 82993 83902 KOF00945 0 + 82993 83902 0 1 909, 0, +contig44 83985 85242 KOF00946 0 - 83985 85242 0 1 1257, 0, +contig44 85366 85993 KOF00947 0 - 85366 85993 0 1 627, 0, +contig44 86250 86652 KOF00948 0 + 86250 86652 0 1 402, 0, +contig44 86655 87102 KOF00949 0 + 86655 87102 0 1 447, 0, +contig44 87237 89394 KOF00950 0 - 87237 89394 0 1 2157, 0, +contig44 89505 90108 KOF00951 0 - 89505 90108 0 1 603, 0, +contig44 90112 90544 KOF00952 0 - 90112 90544 0 1 432, 0, +contig44 90677 91205 KOF00953 0 + 90677 91205 0 1 528, 0, +contig44 91275 92019 KOF00954 0 - 91275 92019 0 1 744, 0, +contig44 92126 92705 KOF00955 0 - 92126 92705 0 1 579, 0, +contig44 92710 94366 KOF00956 0 - 92710 94366 0 1 1656, 0, +contig44 94362 94998 KOF00957 0 - 94362 94998 0 1 636, 0, +contig44 96637 96793 KOF00958 0 - 96637 96793 0 1 156, 0, +contig44 96875 97868 KOF00959 0 - 96875 97868 0 1 993, 0, +contig44 97864 99523 KOF00960 0 - 97864 99523 0 1 1659, 0, +contig44 99627 100059 KOF00961 0 + 99627 100059 0 1 432, 0, +contig44 100135 101026 KOF00962 0 - 100135 101026 0 1 891, 0, +contig44 101166 102183 KOF00963 0 - 101166 102183 0 1 1017, 0, +contig44 102285 102603 KOF00964 0 - 102285 102603 0 1 318, 0, +contig44 102805 105655 KOF00965 0 - 102805 105655 0 1 2850, 0, +contig44 106069 106546 KOF00966 0 + 106069 106546 0 1 477, 0, +contig44 106615 107095 KOF00967 0 + 106615 107095 0 1 480, 0, +contig44 107395 108559 KOF00968 0 - 107395 108559 0 1 1164, 0, +contig44 108782 110459 KOF00969 0 + 108782 110459 0 1 1677, 0, +contig44 110524 110926 KOF00970 0 + 110524 110926 0 1 402, 0, +contig44 110919 114516 KOF00971 0 - 110919 114516 0 1 3597, 0, +contig44 114590 115229 KOF00972 0 + 114590 115229 0 1 639, 0, +contig44 115606 116377 KOF00973 0 + 115606 116377 0 1 771, 0, +contig44 118726 119134 KOF00974 0 + 118726 119134 0 1 408, 0, +contig44 119262 120387 KOF00975 0 + 119262 120387 0 1 1125, 0, +contig44 120596 122786 KOF00976 0 + 120596 122786 0 1 2190, 0, +contig44 123470 123887 KOF00977 0 - 123470 123887 0 1 417, 0, +contig44 123972 124947 KOF00978 0 - 123972 124947 0 1 975, 0, +contig44 125070 125439 KOF00979 0 - 125070 125439 0 1 369, 0, +contig44 125507 126275 KOF00980 0 - 125507 126275 0 1 768, 0, +contig44 126396 126972 KOF00981 0 - 126396 126972 0 1 576, 0, +contig44 127178 128129 KOF00982 0 + 127178 128129 0 1 951, 0, +contig44 128341 128614 KOF00983 0 + 128341 128614 0 1 273, 0, +contig44 128771 129458 KOF00984 0 + 128771 129458 0 1 687, 0, +contig44 129481 130210 KOF00985 0 - 129481 130210 0 1 729, 0, +contig44 130227 130557 KOF00986 0 + 130227 130557 0 1 330, 0, +contig44 131531 132563 KOF00987 0 + 131531 132563 0 1 1032, 0, +contig44 133488 134163 KOF00988 0 - 133488 134163 0 1 675, 0, +contig44 134298 134751 KOF00989 0 + 134298 134751 0 1 453, 0, +contig44 134893 135919 KOF00990 0 - 134893 135919 0 1 1026, 0, +contig44 135939 136458 KOF00991 0 - 135939 136458 0 1 519, 0, +contig44 136557 136995 KOF00992 0 - 136557 136995 0 1 438, 0, +contig44 137052 137478 KOF00993 0 - 137052 137478 0 1 426, 0, +contig44 137510 137978 KOF00994 0 - 137510 137978 0 1 468, 0, +contig44 138013 138823 KOF00995 0 + 138013 138823 0 1 810, 0, +contig44 138927 139905 KOF00996 0 + 138927 139905 0 1 978, 0, +contig44 139911 141207 KOF00997 0 + 139911 141207 0 1 1296, 0, +contig44 141325 142606 KOF00998 0 - 141325 142606 0 1 1281, 0, +contig44 142714 143602 KOF00999 0 + 142714 143602 0 1 888, 0, +contig44 143716 144343 KOF01000 0 - 143716 144343 0 1 627, 0, +contig44 144374 144944 KOF01001 0 - 144374 144944 0 1 570, 0, +contig44 145037 146486 KOF01002 0 - 145037 146486 0 1 1449, 0, +contig44 147654 149700 KOF01003 0 - 147654 149700 0 1 2046, 0, +contig44 149837 150152 KOF01004 0 - 149837 150152 0 1 315, 0, +contig44 151479 152226 KOF01005 0 - 151479 152226 0 1 747, 0, +contig44 152471 153899 KOF01006 0 - 152471 153899 0 1 1428, 0, +contig44 154604 156014 KOF01007 0 - 154604 156014 0 1 1410, 0, +contig44 156238 157033 KOF01008 0 + 156238 157033 0 1 795, 0, +contig44 157106 157934 KOF01009 0 + 157106 157934 0 1 828, 0, +contig44 158080 158548 KOF01010 0 + 158080 158548 0 1 468, 0, +contig44 158899 159511 KOF01011 0 - 158899 159511 0 1 612, 0, +contig44 159521 161591 KOF01012 0 - 159521 161591 0 1 2070, 0, +contig44 162689 163481 KOF01013 0 - 162689 163481 0 1 792, 0, +contig44 163601 164036 KOF01014 0 - 163601 164036 0 1 435, 0, +contig44 164046 166098 KOF01015 0 - 164046 166098 0 1 2052, 0, +contig44 166094 166712 KOF01016 0 - 166094 166712 0 1 618, 0, +contig44 166716 167193 KOF01017 0 - 166716 167193 0 1 477, 0, +contig44 167242 167872 KOF01018 0 - 167242 167872 0 1 630, 0, +contig44 167995 169480 KOF01019 0 + 167995 169480 0 1 1485, 0, +contig44 170068 170704 KOF01020 0 - 170068 170704 0 1 636, 0, +contig44 170873 174560 KOF01021 0 + 170873 174560 0 1 3687, 0, +contig44 174721 174979 KOF01022 0 + 174721 174979 0 1 258, 0, +contig44 175958 176573 KOF01023 0 - 175958 176573 0 1 615, 0, +contig44 15070 15367 KOF01024 0 + 15070 15367 0 1 297, 0, +contig44 47791 49639 KOF01025 0 - 47791 49639 0 1 1848, 0, +contig44 51746 52598 KOF01026 0 - 51746 52598 0 1 852, 0, +contig44 74632 77122 KOF01027 0 - 74632 77122 0 1 2490, 0, +contig44 95399 96494 KOF01028 0 + 95399 96494 0 1 1095, 0, +contig44 116488 118480 KOF01029 0 + 116488 118480 0 1 1992, 0, +contig44 122794 123364 KOF01030 0 + 122794 123364 0 1 570, 0, +contig44 131014 131518 KOF01031 0 + 131014 131518 0 1 504, 0, +contig44 133077 133428 KOF01032 0 + 133077 133428 0 1 351, 0, +contig44 146478 147540 KOF01033 0 - 146478 147540 0 1 1062, 0, +contig44 150236 151412 KOF01034 0 - 150236 151412 0 1 1176, 0, +contig44 153920 154259 KOF01035 0 - 153920 154259 0 1 339, 0, +contig44 161647 162637 KOF01036 0 - 161647 162637 0 1 990, 0, +contig45 445 2077 KOF01037 0 + 445 2077 0 1 1632, 0, +contig45 2107 3742 KOF01038 0 + 2107 3742 0 1 1635, 0, +contig45 3763 5098 KOF01039 0 + 3763 5098 0 1 1335, 0, +contig45 5097 5805 KOF01040 0 + 5097 5805 0 1 708, 0, +contig45 5821 6805 KOF01041 0 + 5821 6805 0 1 984, 0, +contig45 6812 7709 KOF01042 0 + 6812 7709 0 1 897, 0, +contig45 7705 8827 KOF01043 0 + 7705 8827 0 1 1122, 0, +contig45 11012 12821 KOF01044 0 + 11012 12821 0 1 1809, 0, +contig45 12931 13606 KOF01045 0 - 12931 13606 0 1 675, 0, +contig45 13645 14164 KOF01046 0 - 13645 14164 0 1 519, 0, +contig45 14404 15508 KOF01047 0 + 14404 15508 0 1 1104, 0, +contig45 15601 18091 KOF01048 0 + 15601 18091 0 1 2490, 0, +contig45 18087 19110 KOF01049 0 + 18087 19110 0 1 1023, 0, +contig45 19188 19503 KOF01050 0 + 19188 19503 0 1 315, 0, +contig45 19542 21534 KOF01051 0 - 19542 21534 0 1 1992, 0, +contig45 21537 21924 KOF01052 0 - 21537 21924 0 1 387, 0, +contig45 23185 24292 KOF01053 0 - 23185 24292 0 1 1107, 0, +contig45 24487 24796 KOF01054 0 + 24487 24796 0 1 309, 0, +contig45 24773 25829 KOF01055 0 - 24773 25829 0 1 1056, 0, +contig45 26504 30959 KOF01056 0 + 26504 30959 0 1 4455, 0, +contig45 31020 32466 KOF01057 0 + 31020 32466 0 1 1446, 0, +contig45 32451 34860 KOF01058 0 - 32451 34860 0 1 2409, 0, +contig45 35027 35894 KOF01059 0 + 35027 35894 0 1 867, 0, +contig45 36178 36958 KOF01060 0 - 36178 36958 0 1 780, 0, +contig45 37017 37923 KOF01061 0 - 37017 37923 0 1 906, 0, +contig45 37959 38901 KOF01062 0 - 37959 38901 0 1 942, 0, +contig45 38983 39187 KOF01063 0 + 38983 39187 0 1 204, 0, +contig45 39292 41929 KOF01064 0 - 39292 41929 0 1 2637, 0, +contig45 41928 42882 KOF01065 0 - 41928 42882 0 1 954, 0, +contig45 43306 44032 KOF01066 0 - 43306 44032 0 1 726, 0, +contig45 44028 44952 KOF01067 0 - 44028 44952 0 1 924, 0, +contig45 45053 45707 KOF01068 0 + 45053 45707 0 1 654, 0, +contig45 45785 46310 KOF01069 0 - 45785 46310 0 1 525, 0, +contig45 46570 48547 KOF01070 0 - 46570 48547 0 1 1977, 0, +contig45 48648 49269 KOF01071 0 + 48648 49269 0 1 621, 0, +contig45 49364 50072 KOF01072 0 + 49364 50072 0 1 708, 0, +contig45 50114 51719 KOF01073 0 - 50114 51719 0 1 1605, 0, +contig45 51824 52637 KOF01074 0 - 51824 52637 0 1 813, 0, +contig45 52656 52989 KOF01075 0 - 52656 52989 0 1 333, 0, +contig45 52985 54188 KOF01076 0 - 52985 54188 0 1 1203, 0, +contig45 54339 55161 KOF01077 0 + 54339 55161 0 1 822, 0, +contig45 55289 56492 KOF01078 0 - 55289 56492 0 1 1203, 0, +contig45 56503 57382 KOF01079 0 - 56503 57382 0 1 879, 0, +contig45 57645 58485 KOF01080 0 + 57645 58485 0 1 840, 0, +contig45 58612 60880 KOF01081 0 - 58612 60880 0 1 2268, 0, +contig45 61038 62055 KOF01082 0 + 61038 62055 0 1 1017, 0, +contig45 63229 65230 KOF01083 0 - 63229 65230 0 1 2001, 0, +contig45 65315 65798 KOF01084 0 - 65315 65798 0 1 483, 0, +contig45 65923 66817 KOF01085 0 + 65923 66817 0 1 894, 0, +contig45 66921 67977 KOF01086 0 - 66921 67977 0 1 1056, 0, +contig45 68216 68807 KOF01087 0 + 68216 68807 0 1 591, 0, +contig45 68924 69563 KOF01088 0 + 68924 69563 0 1 639, 0, +contig45 69659 70688 KOF01089 0 + 69659 70688 0 1 1029, 0, +contig45 70815 71208 KOF01090 0 + 70815 71208 0 1 393, 0, +contig45 71283 73767 KOF01091 0 - 71283 73767 0 1 2484, 0, +contig45 73770 74676 KOF01092 0 - 73770 74676 0 1 906, 0, +contig45 74815 75214 KOF01093 0 - 74815 75214 0 1 399, 0, +contig45 75358 75703 KOF01094 0 + 75358 75703 0 1 345, 0, +contig45 75745 77836 KOF01095 0 - 75745 77836 0 1 2091, 0, +contig45 78007 79210 KOF01096 0 + 78007 79210 0 1 1203, 0, +contig45 79555 80572 KOF01097 0 + 79555 80572 0 1 1017, 0, +contig45 80680 81391 KOF01098 0 + 80680 81391 0 1 711, 0, +contig45 83248 85480 KOF01099 0 - 83248 85480 0 1 2232, 0, +contig45 85674 88896 KOF01100 0 - 85674 88896 0 1 3222, 0, +contig45 89064 90156 KOF01101 0 - 89064 90156 0 1 1092, 0, +contig45 90298 91042 KOF01102 0 - 90298 91042 0 1 744, 0, +contig45 91051 91321 KOF01103 0 - 91051 91321 0 1 270, 0, +contig45 92958 93372 KOF01104 0 - 92958 93372 0 1 414, 0, +contig45 93375 93801 KOF01105 0 - 93375 93801 0 1 426, 0, +contig45 93862 94624 KOF01106 0 - 93862 94624 0 1 762, 0, +contig45 94717 95386 KOF01107 0 - 94717 95386 0 1 669, 0, +contig45 95529 96717 KOF01108 0 - 95529 96717 0 1 1188, 0, +contig45 96849 97656 KOF01109 0 - 96849 97656 0 1 807, 0, +contig45 97727 98573 KOF01110 0 - 97727 98573 0 1 846, 0, +contig45 98640 101100 KOF01111 0 - 98640 101100 0 1 2460, 0, +contig45 101212 102307 KOF01112 0 - 101212 102307 0 1 1095, 0, +contig45 103288 104389 KOF01113 0 - 103288 104389 0 1 1101, 0, +contig45 106252 106393 KOF01114 0 + 106252 106393 0 1 141, 0, +contig45 106892 108608 KOF01115 0 + 106892 108608 0 1 1716, 0, +contig45 108723 111396 KOF01116 0 + 108723 111396 0 1 2673, 0, +contig45 111399 112749 KOF01117 0 + 111399 112749 0 1 1350, 0, +contig45 112886 113993 KOF01118 0 + 112886 113993 0 1 1107, 0, +contig45 114147 114918 KOF01119 0 - 114147 114918 0 1 771, 0, +contig45 115024 115987 KOF01120 0 - 115024 115987 0 1 963, 0, +contig45 116360 117530 KOF01121 0 + 116360 117530 0 1 1170, 0, +contig45 117668 118910 KOF01122 0 + 117668 118910 0 1 1242, 0, +contig45 119003 120431 KOF01123 0 - 119003 120431 0 1 1428, 0, +contig45 120606 121602 KOF01124 0 - 120606 121602 0 1 996, 0, +contig45 121723 122626 KOF01125 0 + 121723 122626 0 1 903, 0, +contig45 122649 123084 KOF01126 0 - 122649 123084 0 1 435, 0, +contig45 123080 123710 KOF01127 0 - 123080 123710 0 1 630, 0, +contig45 123724 124696 KOF01128 0 - 123724 124696 0 1 972, 0, +contig45 124787 125795 KOF01129 0 + 124787 125795 0 1 1008, 0, +contig45 125956 126562 KOF01130 0 - 125956 126562 0 1 606, 0, +contig45 126607 128164 KOF01131 0 + 126607 128164 0 1 1557, 0, +contig45 128235 128634 KOF01132 0 + 128235 128634 0 1 399, 0, +contig45 128760 129306 KOF01133 0 + 128760 129306 0 1 546, 0, +contig45 129391 130405 KOF01134 0 - 129391 130405 0 1 1014, 0, +contig45 130406 130718 KOF01135 0 - 130406 130718 0 1 312, 0, +contig45 130707 131370 KOF01136 0 - 130707 131370 0 1 663, 0, +contig45 131366 131891 KOF01137 0 - 131366 131891 0 1 525, 0, +contig45 131950 132700 KOF01138 0 - 131950 132700 0 1 750, 0, +contig45 133677 137025 KOF01139 0 + 133677 137025 0 1 3348, 0, +contig45 137021 140702 KOF01140 0 + 137021 140702 0 1 3681, 0, +contig45 140698 142582 KOF01141 0 + 140698 142582 0 1 1884, 0, +contig45 142915 143314 KOF01142 0 - 142915 143314 0 1 399, 0, +contig45 143364 145404 KOF01143 0 - 143364 145404 0 1 2040, 0, +contig45 145407 146868 KOF01144 0 - 145407 146868 0 1 1461, 0, +contig45 147778 147988 KOF01145 0 - 147778 147988 0 1 210, 0, +contig45 148096 148552 KOF01146 0 - 148096 148552 0 1 456, 0, +contig45 149161 149773 KOF01147 0 + 149161 149773 0 1 612, 0, +contig45 149885 151355 KOF01148 0 + 149885 151355 0 1 1470, 0, +contig45 151341 152043 KOF01149 0 + 151341 152043 0 1 702, 0, +contig45 152059 155440 KOF01150 0 + 152059 155440 0 1 3381, 0, +contig45 156427 156820 KOF01151 0 + 156427 156820 0 1 393, 0, +contig45 156823 158104 KOF01152 0 - 156823 158104 0 1 1281, 0, +contig45 158254 159526 KOF01153 0 + 158254 159526 0 1 1272, 0, +contig45 159522 160497 KOF01154 0 + 159522 160497 0 1 975, 0, +contig45 160581 161847 KOF01155 0 + 160581 161847 0 1 1266, 0, +contig45 161887 162754 KOF01156 0 + 161887 162754 0 1 867, 0, +contig45 162804 163578 KOF01157 0 + 162804 163578 0 1 774, 0, +contig45 163584 164772 KOF01158 0 - 163584 164772 0 1 1188, 0, +contig45 8823 11016 KOF01159 0 + 8823 11016 0 1 2193, 0, +contig45 22116 23229 KOF01160 0 + 22116 23229 0 1 1113, 0, +contig45 25940 26330 KOF01161 0 + 25940 26330 0 1 390, 0, +contig45 62195 63188 KOF01162 0 + 62195 63188 0 1 993, 0, +contig45 81453 81849 KOF01163 0 - 81453 81849 0 1 396, 0, +contig45 91361 92822 KOF01164 0 - 91361 92822 0 1 1461, 0, +contig45 104664 105996 KOF01165 0 - 104664 105996 0 1 1332, 0, +contig45 106542 106893 KOF01166 0 + 106542 106893 0 1 351, 0, +contig45 132699 133488 KOF01167 0 - 132699 133488 0 1 789, 0, +contig45 146864 147782 KOF01168 0 - 146864 147782 0 1 918, 0, +contig45 155545 156325 KOF01169 0 - 155545 156325 0 1 780, 0, +contig46 485 2018 KOF01170 0 - 485 2018 0 1 1533, 0, +contig46 0 499 KOF01171 0 - 0 499 0 1 499, 0, +contig47 0 1537 KOF01172 0 + 1 1537 0 1 1537, 0, +contig47 1533 2220 KOF01173 0 + 1533 2220 0 1 687, 0, +contig47 2216 2708 KOF01174 0 + 2216 2708 0 1 492, 0, +contig47 2685 3249 KOF01175 0 - 2685 3249 0 1 564, 0, +contig47 3378 4038 KOF01176 0 + 3378 4038 0 1 660, 0, +contig47 7033 7984 KOF01177 0 - 7033 7984 0 1 951, 0, +contig47 9194 9815 KOF01178 0 - 9194 9815 0 1 621, 0, +contig47 9801 10854 KOF01179 0 - 9801 10854 0 1 1053, 0, +contig47 10846 11668 KOF01180 0 - 10846 11668 0 1 822, 0, +contig47 12913 13411 KOF01181 0 + 12913 13411 0 1 498, 0, +contig47 13494 13878 KOF01182 0 + 13494 13878 0 1 384, 0, +contig47 14081 16280 KOF01183 0 - 14081 16280 0 1 2199, 0, +contig47 17247 17616 KOF01184 0 + 17247 17616 0 1 369, 0, +contig47 17829 20022 KOF01185 0 - 17829 20022 0 1 2193, 0, +contig47 20811 22041 KOF01186 0 + 20811 22041 0 1 1230, 0, +contig47 22483 23884 KOF01187 0 + 22483 23884 0 1 1401, 0, +contig47 23916 25401 KOF01188 0 + 23916 25401 0 1 1485, 0, +contig47 25969 26590 KOF01189 0 + 25969 26590 0 1 621, 0, +contig47 26725 27475 KOF01190 0 + 26725 27475 0 1 750, 0, +contig47 27492 28422 KOF01191 0 + 27492 28422 0 1 930, 0, +contig47 28917 29172 KOF01192 0 - 28917 29172 0 1 255, 0, +contig47 4233 6258 KOF01193 0 + 4233 6258 0 1 2025, 0, +contig47 6273 6978 KOF01194 0 - 6273 6978 0 1 705, 0, +contig47 7980 9144 KOF01195 0 - 7980 9144 0 1 1164, 0, +contig47 11667 12372 KOF01196 0 - 11667 12372 0 1 705, 0, +contig47 16320 16773 KOF01197 0 - 16320 16773 0 1 453, 0, +contig48 45 1230 KOF01198 0 - 45 1230 0 1 1185, 0, +contig48 1381 1594 KOF01199 0 + 1381 1594 0 1 213, 0, +contig48 1595 2348 KOF01200 0 + 1595 2348 0 1 753, 0, +contig48 2344 2788 KOF01201 0 + 2344 2788 0 1 444, 0, +contig48 4350 6534 KOF01202 0 + 4350 6534 0 1 2184, 0, +contig48 6533 10790 KOF01203 0 + 6533 10790 0 1 4257, 0, +contig48 10845 12330 KOF01204 0 + 10845 12330 0 1 1485, 0, +contig48 14033 16469 KOF01205 0 + 14033 16469 0 1 2436, 0, +contig48 16913 17126 KOF01206 0 - 16913 17126 0 1 213, 0, +contig48 18841 19060 KOF01207 0 - 18841 19060 0 1 219, 0, +contig48 19098 20205 KOF01208 0 - 19098 20205 0 1 1107, 0, +contig48 20328 20772 KOF01209 0 + 20328 20772 0 1 444, 0, +contig48 20972 22895 KOF01210 0 + 20972 22895 0 1 1923, 0, +contig48 22891 23401 KOF01211 0 + 22891 23401 0 1 510, 0, +contig48 23619 23913 KOF01212 0 + 23619 23913 0 1 294, 0, +contig48 23909 24701 KOF01213 0 - 23909 24701 0 1 792, 0, +contig48 25197 27486 KOF01214 0 - 25197 27486 0 1 2289, 0, +contig48 27894 30909 KOF01215 0 + 27894 30909 0 1 3015, 0, +contig48 30996 31965 KOF01216 0 + 30996 31965 0 1 969, 0, +contig48 32041 32806 KOF01217 0 - 32041 32806 0 1 765, 0, +contig48 32793 33504 KOF01218 0 - 32793 33504 0 1 711, 0, +contig48 33515 33788 KOF01219 0 - 33515 33788 0 1 273, 0, +contig48 33873 35367 KOF01220 0 + 33873 35367 0 1 1494, 0, +contig48 35363 36578 KOF01221 0 + 35363 36578 0 1 1215, 0, +contig48 36766 37204 KOF01222 0 - 36766 37204 0 1 438, 0, +contig48 37365 38013 KOF01223 0 + 37365 38013 0 1 648, 0, +contig48 38017 39529 KOF01224 0 + 38017 39529 0 1 1512, 0, +contig48 39539 40571 KOF01225 0 + 39539 40571 0 1 1032, 0, +contig48 40570 42172 KOF01226 0 + 40570 42172 0 1 1602, 0, +contig48 42184 43606 KOF01227 0 + 42184 43606 0 1 1422, 0, +contig48 43595 44450 KOF01228 0 + 43595 44450 0 1 855, 0, +contig48 44449 45493 KOF01229 0 + 44449 45493 0 1 1044, 0, +contig48 45492 46647 KOF01230 0 + 45492 46647 0 1 1155, 0, +contig48 46643 48140 KOF01231 0 + 46643 48140 0 1 1497, 0, +contig48 48139 50026 KOF01232 0 + 48139 50026 0 1 1887, 0, +contig48 50104 51415 KOF01233 0 + 50104 51415 0 1 1311, 0, +contig48 51418 51604 KOF01234 0 - 51418 51604 0 1 186, 0, +contig48 51603 52029 KOF01235 0 - 51603 52029 0 1 426, 0, +contig48 52137 52917 KOF01236 0 + 52137 52917 0 1 780, 0, +contig48 53097 54180 KOF01237 0 - 53097 54180 0 1 1083, 0, +contig48 54298 55363 KOF01238 0 - 54298 55363 0 1 1065, 0, +contig48 55712 56645 KOF01239 0 + 55712 56645 0 1 933, 0, +contig48 56762 57446 KOF01240 0 - 56762 57446 0 1 684, 0, +contig48 57455 58853 KOF01241 0 - 57455 58853 0 1 1398, 0, +contig48 58854 59757 KOF01242 0 - 58854 59757 0 1 903, 0, +contig48 59820 60768 KOF01243 0 - 59820 60768 0 1 948, 0, +contig48 60788 61193 KOF01244 0 + 60788 61193 0 1 405, 0, +contig48 61383 62028 KOF01245 0 + 61383 62028 0 1 645, 0, +contig48 62106 64398 KOF01246 0 + 62106 64398 0 1 2292, 0, +contig48 64397 64823 KOF01247 0 + 64397 64823 0 1 426, 0, +contig48 64891 65257 KOF01248 0 + 64891 65257 0 1 366, 0, +contig48 66419 67325 KOF01249 0 + 66419 67325 0 1 906, 0, +contig48 67383 68073 KOF01250 0 + 67383 68073 0 1 690, 0, +contig48 68507 70463 KOF01251 0 + 68507 70463 0 1 1956, 0, +contig48 71034 71355 KOF01252 0 + 71034 71355 0 1 321, 0, +contig48 71490 71895 KOF01253 0 - 71490 71895 0 1 405, 0, +contig48 72360 72738 KOF01254 0 - 72360 72738 0 1 378, 0, +contig48 72814 73330 KOF01255 0 - 72814 73330 0 1 516, 0, +contig48 77292 77985 KOF01256 0 - 77292 77985 0 1 693, 0, +contig48 77989 78421 KOF01257 0 - 77989 78421 0 1 432, 0, +contig48 78726 79857 KOF01258 0 - 78726 79857 0 1 1131, 0, +contig48 80371 81469 KOF01259 0 - 80371 81469 0 1 1098, 0, +contig48 81537 82128 KOF01260 0 + 81537 82128 0 1 591, 0, +contig48 82828 83269 KOF01261 0 - 82828 83269 0 1 441, 0, +contig48 83319 84012 KOF01262 0 - 83319 84012 0 1 693, 0, +contig48 84008 84473 KOF01263 0 - 84008 84473 0 1 465, 0, +contig48 84536 85286 KOF01264 0 - 84536 85286 0 1 750, 0, +contig48 86580 87840 KOF01265 0 - 86580 87840 0 1 1260, 0, +contig48 87893 88655 KOF01266 0 + 87893 88655 0 1 762, 0, +contig48 88813 90223 KOF01267 0 + 88813 90223 0 1 1410, 0, +contig48 90219 90939 KOF01268 0 + 90219 90939 0 1 720, 0, +contig48 91308 92493 KOF01269 0 - 91308 92493 0 1 1185, 0, +contig48 92496 93030 KOF01270 0 - 92496 93030 0 1 534, 0, +contig48 93026 93971 KOF01271 0 - 93026 93971 0 1 945, 0, +contig48 94084 95227 KOF01272 0 + 94084 95227 0 1 1143, 0, +contig48 95233 96298 KOF01273 0 - 95233 96298 0 1 1065, 0, +contig48 96314 97268 KOF01274 0 - 96314 97268 0 1 954, 0, +contig48 97264 97675 KOF01275 0 - 97264 97675 0 1 411, 0, +contig48 97722 98454 KOF01276 0 - 97722 98454 0 1 732, 0, +contig48 98450 99032 KOF01277 0 - 98450 99032 0 1 582, 0, +contig48 99240 100398 KOF01278 0 + 99240 100398 0 1 1158, 0, +contig48 100399 102061 KOF01279 0 + 100399 102061 0 1 1662, 0, +contig48 102472 104260 KOF01280 0 + 102472 104260 0 1 1788, 0, +contig48 104265 105651 KOF01281 0 + 104265 105651 0 1 1386, 0, +contig48 105654 106356 KOF01282 0 - 105654 106356 0 1 702, 0, +contig48 106400 107126 KOF01283 0 - 106400 107126 0 1 726, 0, +contig48 107192 107921 KOF01284 0 - 107192 107921 0 1 729, 0, +contig48 108069 108603 KOF01285 0 - 108069 108603 0 1 534, 0, +contig48 108812 109154 KOF01286 0 - 108812 109154 0 1 342, 0, +contig48 109256 109550 KOF01287 0 - 109256 109550 0 1 294, 0, +contig48 109542 112017 KOF01288 0 - 109542 112017 0 1 2475, 0, +contig48 112248 112875 KOF01289 0 - 112248 112875 0 1 627, 0, +contig48 114008 117341 KOF01290 0 - 114008 117341 0 1 3333, 0, +contig48 117498 119037 KOF01291 0 - 117498 119037 0 1 1539, 0, +contig48 118948 119719 KOF01292 0 - 118948 119719 0 1 771, 0, +contig48 120228 120624 KOF01293 0 - 120228 120624 0 1 396, 0, +contig48 120892 121540 KOF01294 0 + 120892 121540 0 1 648, 0, +contig48 121571 123593 KOF01295 0 - 121571 123593 0 1 2022, 0, +contig48 123940 125032 KOF01296 0 - 123940 125032 0 1 1092, 0, +contig48 127590 128010 KOF01297 0 - 127590 128010 0 1 420, 0, +contig48 128309 129836 KOF01298 0 - 128309 129836 0 1 1527, 0, +contig48 129936 131337 KOF01299 0 + 129936 131337 0 1 1401, 0, +contig48 131515 132319 KOF01300 0 + 131515 132319 0 1 804, 0, +contig48 132375 132570 KOF01301 0 + 132375 132570 0 1 195, 0, +contig48 132604 133066 KOF01302 0 - 132604 133066 0 1 462, 0, +contig48 133187 133706 KOF01303 0 - 133187 133706 0 1 519, 0, +contig48 133702 134191 KOF01304 0 - 133702 134191 0 1 489, 0, +contig48 134294 134867 KOF01305 0 + 134294 134867 0 1 573, 0, +contig48 135079 137200 KOF01306 0 - 135079 137200 0 1 2121, 0, +contig48 137455 137920 KOF01307 0 - 137455 137920 0 1 465, 0, +contig48 2784 4200 KOF01308 0 + 2784 4200 0 1 1416, 0, +contig48 12835 14032 KOF01309 0 + 12835 14032 0 1 1197, 0, +contig48 16527 16917 KOF01310 0 + 16527 16917 0 1 390, 0, +contig48 17343 18699 KOF01311 0 + 17343 18699 0 1 1356, 0, +contig48 20830 21022 KOF01312 0 + 20830 21022 0 1 192, 0, +contig48 24697 25201 KOF01313 0 - 24697 25201 0 1 504, 0, +contig48 65304 66423 KOF01314 0 + 65304 66423 0 1 1119, 0, +contig48 70510 71050 KOF01315 0 + 70510 71050 0 1 540, 0, +contig48 73912 76387 KOF01316 0 + 73912 76387 0 1 2475, 0, +contig48 76595 77063 KOF01317 0 + 76595 77063 0 1 468, 0, +contig48 85564 86551 KOF01318 0 - 85564 86551 0 1 987, 0, +contig48 112871 113765 KOF01319 0 - 112871 113765 0 1 894, 0, +contig48 125031 125397 KOF01320 0 - 125031 125397 0 1 366, 0, +contig48 125399 127484 KOF01321 0 - 125399 127484 0 1 2085, 0,