changeset 0:e323c49b8bcc draft

planemo upload for repository https://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2asko commit 92849224db1963d090fbb25d410cc659a5449241
author genouest
date Thu, 12 Apr 2018 06:05:23 -0400
parents
children af75f883cab4
files feelnc2asko.pl feelnc2asko.xml test-data/completeAnnot.gff3 test-data/feelnc_lncRNA.gtf test-data/feelnc_mRNA.gtf test-data/initial.gff3
diffstat 6 files changed, 3598 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/feelnc2asko.pl	Thu Apr 12 06:05:23 2018 -0400
@@ -0,0 +1,147 @@
+use strict;
+use warnings;
+use Getopt::Long;
+use Bio::Tools::GFF;
+
+my ($anngff, $lncgff, $newgff);
+
+GetOptions("ann=s" => \$anngff, "lnc=s" => \$lncgff, "new=s" => \$newgff);
+
+my $gffout = Bio::Tools::GFF->new(-fh=> \*STDOUT, -gff_version => 3);
+
+#1. the standard annotation
+my $gffin = Bio::Tools::GFF->new(-file => $anngff, -gff_version => 3);
+
+
+while (my $feature = $gffin->next_feature()) {
+	if ($feature-> primary_tag eq 'mRNA') {
+    my ($gene)=$feature->get_tag_values("gene");
+    $feature->remove_tag("Parent");
+    $feature->add_tag_value("Parent", $gene);
+    $feature->add_tag_value("feelnc_type", "standard");
+    $gffout->write_feature($feature);
+  }
+  if ($feature-> primary_tag eq 'gene') {
+    my ($name)=$feature->get_tag_values("Name");
+    $feature->remove_tag("ID");
+    $feature->add_tag_value("ID", $name);
+    $feature->add_tag_value("feelnc_type", "standard");
+    $gffout->write_feature($feature);
+  }
+}
+$gffin->close();
+
+
+my %genes=();
+my %transcripts=();
+
+#2. The lncRNA gtf
+my $fncgtf = Bio::Tools::GFF->new( -file => $lncgff, -gff_version => '2' );
+
+while (my $feat = $fncgtf->next_feature()) {
+	next if ($feat->primary_tag() ne 'exon');
+
+	my $mrna= ($feat->get_tag_values('transcript_id'))[0];
+  my $gene= ($feat->get_tag_values('gene_id'))[0];
+#	print STDERR "str: ", $feat->strand(), "\n";
+	if (exists($genes{$gene})) {
+		if ($genes{$gene}->start() > $feat->start()) {
+        	$genes{$gene}->start($feat->start());
+        }
+        if ($genes{$gene}->end() < $feat->end()) {
+        	$genes{$gene}->end($feat->end());
+        }
+	}
+  else {
+    my $geneft = Bio::SeqFeature::Generic->new(
+			-start       => $feat->start(),
+			-end         => $feat->end(),
+			-strand      => $feat->strand(),
+			-primary_tag => 'gene',
+			-source_tag  => $feat->source_tag(),
+			-seq_id => $feat->seq_id());
+#    $geneft->add_tag_value("feelnc_type", "lncRNA");
+		$genes{$gene}=$geneft;
+}
+
+if (exists($transcripts{$mrna})) {
+		if ($transcripts{$mrna}->start() > $feat->start()) {
+        	$transcripts{$mrna}->start($feat->start());
+        }
+        if ($transcripts{$mrna}->end() < $feat->end()) {
+        	$transcripts{$mrna}->end($feat->end());
+        }
+  }
+	else {
+		my $tr = Bio::SeqFeature::Generic->new(
+			-start       => $feat->start(),
+			-end         => $feat->end(),
+			-strand      => $feat->strand(),
+			-primary_tag => 'mRNA',
+			-source_tag  => $feat->source_tag(),
+			-seq_id => $feat->seq_id());
+		$tr->add_tag_value("ID", $mrna);
+    $tr->add_tag_value("Parent",$gene);
+    $tr->add_tag_value("feelnc_type", "lncRNA");
+		$transcripts{$mrna}=$tr;
+	}
+}
+
+#3. The new mRNA gtf
+my $nmgtf = Bio::Tools::GFF->new( -file => $newgff, -gff_version => '2' );
+
+while (my $feat = $nmgtf->next_feature()) {
+	next if ($feat->primary_tag() ne 'exon');
+
+	my $mrna= ($feat->get_tag_values('transcript_id'))[0];
+  my $gene= ($feat->get_tag_values('gene_id'))[0];
+#	print STDERR "str: ", $feat->strand() , "\n";
+	if (exists($genes{$gene})) {
+		if ($genes{$gene}->start() > $feat->start()) {
+        	$genes{$gene}->start($feat->start());
+        }
+        if ($genes{$gene}->end() < $feat->end()) {
+        	$genes{$gene}->end($feat->end());
+        }
+	}
+  else {
+    my $geneft = Bio::SeqFeature::Generic->new(
+			-start       => $feat->start(),
+			-end         => $feat->end(),
+			-strand      => $feat->strand(),
+			-primary_tag => 'gene',
+			-source_tag  => $feat->source_tag(),
+			-seq_id => $feat->seq_id());
+		$geneft->add_tag_value("ID", $gene);
+#    $geneft->add_tag_value("feelnc_type", "new");
+		$genes{$gene}=$geneft;
+}
+
+if (exists($transcripts{$mrna})) {
+		if ($transcripts{$mrna}->start() > $feat->start()) {
+        	$transcripts{$mrna}->start($feat->start());
+        }
+        if ($transcripts{$mrna}->end() < $feat->end()) {
+        	$transcripts{$mrna}->end($feat->end());
+        }
+  }
+	else {
+		my $tr = Bio::SeqFeature::Generic->new(
+			-start       => $feat->start(),
+			-end         => $feat->end(),
+			-strand      => $feat->strand(),
+			-primary_tag => 'mRNA',
+			-source_tag  => $feat->source_tag(),
+			-seq_id => $feat->seq_id());
+		$tr->add_tag_value("ID", $mrna);
+    $tr->add_tag_value("Parent",$gene);
+    $tr->add_tag_value("feelnc_type", "new");
+		$transcripts{$mrna}=$tr;
+	}
+}
+
+foreach my $mrna (keys %transcripts) {
+	my ($parent)=$transcripts{$mrna}->get_tag_values("Parent");
+  $gffout->write_feature($genes{$parent});
+  $gffout->write_feature($transcripts{$mrna});
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/feelnc2asko.xml	Thu Apr 12 06:05:23 2018 -0400
@@ -0,0 +1,36 @@
+<tool id="feelnc2asko" name="Convert FeelNC GTF" version="0.1">
+    <description>to GFF3 for AskOmics</description>
+    <requirements>
+        <requirement type="package" version="1.6.924">perl-bioperl</requirement>
+    </requirements>
+
+    <command detect_errors="exit_code"><![CDATA[
+        perl '$__tool_directory__/feelnc2asko.pl' --ann '${anngff}' --lnc '${lncgtf}' --new '${newgtf}' > '${outgff}'
+    ]]></command>
+
+    <inputs>
+        <param format="gff" name="anngff" type="data" label="Initial annotation file" />
+        <param format="gtf" name="lncgtf" type="data" label="FeelNC lncRNA annotation" />
+        <param format="gtf" name="newgtf" type="data" label="FeelNC new mRNA annotation" />
+    </inputs>
+
+    <outputs>
+        <data format="gff" name="outgff" label="${tool.name} on ${on_string} : FeelNC GFF" />
+    </outputs>
+
+    <tests>
+        <test>
+            <param name="anngff" ftype="gff" value="initial.gff3" />
+            <param name="lncgtf" ftype="gtf" value="feelnc_lncRNA.gtf" />
+            <param name="newgtf" ftype="gtf" value="feelnc_mRNA.gtf" />
+            <output name="outgff" ftype="gff" file="completeAnnot.gff3" compare="sim_size" />
+        </test>
+    </tests>
+
+    <help>
+        Generates a GFF compliant to AskOmics from the FeelNC output files merged with the initial annotation file.
+    </help>
+
+    <citations>
+    </citations>
+</tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/completeAnnot.gff3	Thu Apr 12 06:05:23 2018 -0400
@@ -0,0 +1,295 @@
+##gff-version 3
+GL349622	Gnomon	gene	60051	61739	.	-	.	ID=LOC103310714;Dbxref=GeneID:103310714;Name=LOC103310714;feelnc_type=standard;gbkey=Gene;gene=LOC103310714;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	60051	61739	.	-	.	ID=rna172;Parent=LOC103310714;Dbxref=GeneID:103310714,Genbank:XM_008189920.1;Name=XM_008189920.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103310714;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103310714;transcript_id=XM_008189920.1
+GL349622	Gnomon	gene	199052	202572	.	+	.	ID=LOC107884578;Dbxref=GeneID:107884578;Name=LOC107884578;feelnc_type=standard;gbkey=Gene;gene=LOC107884578;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	199052	202572	.	+	.	ID=rna173;Parent=LOC107884578;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;Name=XM_016806997.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884578;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	gene	203530	204174	.	-	.	ID=LOC107884064;Dbxref=GeneID:107884064;Name=LOC107884064;feelnc_type=standard;gbkey=Gene;gene=LOC107884064;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	203530	204174	.	-	.	ID=rna174;Parent=LOC107884064;Dbxref=GeneID:107884064,Genbank:XM_016805453.1;Name=XM_016805453.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884064;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=RNA-directed DNA polymerase from mobile element jockey-like;transcript_id=XM_016805453.1
+GL349622	Gnomon	gene	211117	212787	.	+	.	ID=LOC103310726;Dbxref=GeneID:103310726;Name=LOC103310726;feelnc_type=standard;gbkey=Gene;gene=LOC103310726;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	211117	212787	.	+	.	ID=rna175;Parent=LOC103310726;Dbxref=GeneID:103310726,Genbank:XM_008189963.1;Name=XM_008189963.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103310726;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103310726;transcript_id=XM_008189963.1
+GL349622	Gnomon	gene	223060	233978	.	+	.	ID=LOC103310745;Dbxref=GeneID:103310745;Name=LOC103310745;feelnc_type=standard;gbkey=Gene;gene=LOC103310745;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	223060	233978	.	+	.	ID=rna176;Parent=LOC103310745;Dbxref=GeneID:103310745,Genbank:XM_008190015.1;Name=XM_008190015.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103310745;model_evidence=Supporting evidence includes similarity to: 38 Proteins;product=zinc finger protein 664-like;transcript_id=XM_008190015.1
+GL349622	Gnomon	gene	415564	416313	.	+	.	ID=LOC100570479;Dbxref=GeneID:100570479;Name=LOC100570479;feelnc_type=standard;gbkey=Gene;gene=LOC100570479;gene_biotype=lncRNA
+GL349622	Gnomon	gene	415576	416202	.	-	.	ID=LOC107884592;Dbxref=GeneID:107884592;Name=LOC107884592;feelnc_type=standard;gbkey=Gene;gene=LOC107884592;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	415576	416202	.	-	.	ID=rna178;Parent=LOC107884592;Dbxref=GeneID:107884592,Genbank:XM_016807037.1;Name=XM_016807037.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884592;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=uncharacterized LOC107884592;transcript_id=XM_016807037.1
+GL349622	Gnomon	gene	416907	418413	.	-	.	ID=LOC100570170;Dbxref=GeneID:100570170;Name=LOC100570170;feelnc_type=standard;gbkey=Gene;gene=LOC100570170;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	416907	418413	.	-	.	ID=rna179;Parent=LOC100570170;Dbxref=GeneID:100570170,Genbank:XM_008185349.2;Name=XM_008185349.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100570170;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 14 samples with support for all annotated introns;product=uncharacterized LOC100570170;transcript_id=XM_008185349.2
+GL349622	Gnomon	gene	451428	451723	.	-	.	ID=LOC107884604;Dbxref=GeneID:107884604;Name=LOC107884604;feelnc_type=standard;gbkey=Gene;gene=LOC107884604;gene_biotype=lncRNA
+GL349622	Gnomon	gene	504289	507047	.	+	.	ID=LOC103310757;Dbxref=GeneID:103310757;Name=LOC103310757;feelnc_type=standard;gbkey=Gene;gene=LOC103310757;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	504289	507047	.	+	.	ID=rna181;Parent=LOC103310757;Dbxref=GeneID:103310757,Genbank:XM_016807321.1;Name=XM_016807321.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103310757;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 4 samples with support for all annotated introns;product=uncharacterized LOC103310757%2C transcript variant X1;transcript_id=XM_016807321.1
+GL349622	Gnomon	mRNA	504289	507047	.	+	.	ID=rna182;Parent=LOC103310757;Dbxref=GeneID:103310757,Genbank:XM_008190069.2;Name=XM_008190069.2;feelnc_type=standard;gbkey=mRNA;gene=LOC103310757;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 6 samples with support for all annotated introns;product=uncharacterized LOC103310757%2C transcript variant X2;transcript_id=XM_008190069.2
+GL349622	Gnomon	gene	547736	571951	.	-	.	ID=LOC100570440;Dbxref=GeneID:100570440;Name=LOC100570440;feelnc_type=standard;gbkey=Gene;gene=LOC100570440;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	547736	571951	.	-	.	ID=rna183;Parent=LOC100570440;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;Name=XM_016807415.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100570440;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 9 samples with support for all annotated introns;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	mRNA	547736	571951	.	-	.	ID=rna184;Parent=LOC100570440;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;Name=XM_016807394.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100570440;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	mRNA	547736	571951	.	-	.	ID=rna185;Parent=LOC100570440;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;Name=XM_008185407.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100570440;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	gene	578287	602175	.	+	.	ID=LOC100165198;Dbxref=APHIDBASE:ACYPI006159,GeneID:100165198;Name=LOC100165198;feelnc_type=standard;gbkey=Gene;gene=LOC100165198;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	578287	602175	.	+	.	ID=rna186;Parent=LOC100165198;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;Name=XM_001944566.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100165198;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	gene	619899	647511	.	+	.	ID=LOC100165312;Dbxref=APHIDBASE:ACYPI006269,GeneID:100165312;Name=LOC100165312;feelnc_type=standard;gbkey=Gene;gene=LOC100165312;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	619899	647511	.	+	.	ID=rna187;Parent=LOC100165312;Dbxref=GeneID:100165312,Genbank:XM_001946731.4,APHIDBASE:ACYPI006269;Name=XM_001946731.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100165312;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 23 samples with support for all annotated introns;product=uncharacterized LOC100165312;transcript_id=XM_001946731.4
+GL349622	Gnomon	gene	650139	652839	.	+	.	ID=LOC100570640;Dbxref=GeneID:100570640;Name=LOC100570640;feelnc_type=standard;gbkey=Gene;gene=LOC100570640;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	650139	652839	.	+	.	ID=rna188;Parent=LOC100570640;Dbxref=GeneID:100570640,Genbank:XM_016805640.1;Name=XM_016805640.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100570640;model_evidence=Supporting evidence includes similarity to: 83%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC100570640;transcript_id=XM_016805640.1
+GL349622	Gnomon	gene	660123	672248	.	+	.	ID=LOC107882164;Dbxref=GeneID:107882164;Name=LOC107882164;feelnc_type=standard;gbkey=Gene;gene=LOC107882164;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	660123	672248	.	+	.	ID=rna189;Parent=LOC107882164;Dbxref=GeneID:107882164,Genbank:XM_016807544.1;Name=XM_016807544.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X4;transcript_id=XM_016807544.1
+GL349622	Gnomon	mRNA	665786	672248	.	+	.	ID=rna190;Parent=LOC107882164;Dbxref=GeneID:107882164,Genbank:XM_016807494.1;Name=XM_016807494.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X2;transcript_id=XM_016807494.1
+GL349622	Gnomon	mRNA	665786	672248	.	+	.	ID=rna191;Parent=LOC107882164;Dbxref=GeneID:107882164,Genbank:XM_016807512.1;Name=XM_016807512.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X3;transcript_id=XM_016807512.1
+GL349622	Gnomon	mRNA	666164	672248	.	+	.	ID=rna192;Parent=LOC107882164;Dbxref=GeneID:107882164,Genbank:XM_016807480.1;Name=XM_016807480.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X1;transcript_id=XM_016807480.1
+GL349622	Gnomon	gene	683696	684784	.	+	.	ID=LOC103310837;Dbxref=GeneID:103310837;Name=LOC103310837;feelnc_type=standard;gbkey=Gene;gene=LOC103310837;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	683696	684784	.	+	.	ID=rna193;Parent=LOC103310837;Dbxref=GeneID:103310837,Genbank:XM_008190239.1;Name=XM_008190239.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103310837;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC103310837;transcript_id=XM_008190239.1
+GL349622	Gnomon	gene	684884	685537	.	+	.	ID=LOC103310859;Dbxref=GeneID:103310859;Name=LOC103310859;feelnc_type=standard;gbkey=Gene;gene=LOC103310859;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	684884	685537	.	+	.	ID=rna194;Parent=LOC103310859;Dbxref=GeneID:103310859,Genbank:XM_008190308.1;Name=XM_008190308.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103310859;model_evidence=Supporting evidence includes similarity to: 4 Proteins;product=uncharacterized LOC103310859;transcript_id=XM_008190308.1
+GL349622	Gnomon	gene	737688	740892	.	-	.	ID=LOC100570737;Dbxref=GeneID:100570737;Name=LOC100570737;feelnc_type=standard;gbkey=Gene;gene=LOC100570737;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	737688	740892	.	-	.	ID=rna195;Parent=LOC100570737;Dbxref=GeneID:100570737,Genbank:XM_008190376.2;Name=XM_008190376.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100570737;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=kelch-like protein 2;transcript_id=XM_008190376.2
+GL349622	Gnomon	gene	773336	779122	.	+	.	ID=LOC100570804;Dbxref=GeneID:100570804;Name=LOC100570804;feelnc_type=standard;gbkey=Gene;gene=LOC100570804;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	773336	779122	.	+	.	ID=rna196;Parent=LOC100570804;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;Name=XM_008185549.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100570804;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	mRNA	773336	778380	.	+	.	ID=rna197;Parent=LOC100570804;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;Name=XM_003240034.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100570804;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	gene	781854	783818	.	+	.	ID=LOC107884180;Dbxref=GeneID:107884180;Name=LOC107884180;feelnc_type=standard;gbkey=Gene;gene=LOC107884180;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	781854	783818	.	+	.	ID=rna198;Parent=LOC107884180;Dbxref=GeneID:107884180,Genbank:XM_016805810.1;Name=XM_016805810.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884180;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC107884180;transcript_id=XM_016805810.1
+GL349622	Gnomon	gene	802396	807299	.	+	.	ID=LOC100165548;Dbxref=APHIDBASE:ACYPI006489,GeneID:100165548;Name=LOC100165548;feelnc_type=standard;gbkey=Gene;gene=LOC100165548;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	802396	807299	.	+	.	ID=rna199;Parent=LOC100165548;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;Name=XM_001946392.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100165548;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	mRNA	802666	807299	.	+	.	ID=rna200;Parent=LOC100165548;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;Name=XM_008185666.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100165548;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	mRNA	803156	807299	.	+	.	ID=rna201;Parent=LOC100165548;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;Name=XM_008185699.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100165548;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	gene	821253	829640	.	-	.	ID=LOC103310924;Dbxref=GeneID:103310924;Name=LOC103310924;feelnc_type=standard;gbkey=Gene;gene=LOC103310924;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	821253	829640	.	-	.	ID=rna202;Parent=LOC103310924;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;Name=XM_016805834.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103310924;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 83%25 coverage of the annotated genomic feature by RNAseq alignments;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	gene	838010	838415	.	+	.	ID=LOC107884205;Dbxref=GeneID:107884205;Name=LOC107884205;feelnc_type=standard;gbkey=Gene;gene=LOC107884205;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	838010	838415	.	+	.	ID=rna203;Parent=LOC107884205;Dbxref=GeneID:107884205,Genbank:XM_016805867.1;Name=XM_016805867.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884205;model_evidence=Supporting evidence includes similarity to: 70%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC107884205;transcript_id=XM_016805867.1
+GL349622	Gnomon	gene	838996	843102	.	+	.	ID=LOC107884635;Dbxref=GeneID:107884635;Name=LOC107884635;feelnc_type=standard;gbkey=Gene;gene=LOC107884635;gene_biotype=lncRNA
+GL349622	Gnomon	gene	843205	849804	.	-	.	ID=LOC100570835;Dbxref=GeneID:100570835;Name=LOC100570835;feelnc_type=standard;gbkey=Gene;gene=LOC100570835;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	843205	849804	.	-	.	ID=rna205;Parent=LOC100570835;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;Name=XM_016807639.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100570835;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 4 samples with support for all annotated introns;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	gene	850042	851922	.	+	.	ID=LOC107884810;Dbxref=GeneID:107884810;Name=LOC107884810;feelnc_type=standard;gbkey=Gene;gene=LOC107884810;gene_biotype=lncRNA
+GL349622	Gnomon	gene	852356	852655	.	+	.	ID=LOC107884816;Dbxref=GeneID:107884816;Name=LOC107884816;feelnc_type=standard;gbkey=Gene;gene=LOC107884816;gene_biotype=lncRNA
+GL349622	Gnomon	gene	853959	855548	.	-	.	ID=LOC103311069;Dbxref=GeneID:103311069;Name=LOC103311069;feelnc_type=standard;gbkey=Gene;gene=LOC103311069;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	853959	855548	.	-	.	ID=rna208;Parent=LOC103311069;Dbxref=GeneID:103311069,Genbank:XM_008190625.1;Name=XM_008190625.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103311069;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC103311069;transcript_id=XM_008190625.1
+GL349622	Gnomon	gene	863726	867587	.	+	.	ID=LOC100571026;Dbxref=GeneID:100571026;Name=LOC100571026;feelnc_type=standard;gbkey=Gene;gene=LOC100571026;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	863726	867587	.	+	.	ID=rna209;Parent=LOC100571026;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;Name=XM_016807739.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100571026;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	gene	886367	891111	.	-	.	ID=LOC100160714;Dbxref=APHIDBASE:ACYPI001992,GeneID:100160714;Name=LOC100160714;feelnc_type=standard;gbkey=Gene;gene=LOC100160714;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	886367	891111	.	-	.	ID=rna210;Parent=LOC100160714;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;Name=XM_001944073.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100160714;model_evidence=Supporting evidence includes similarity to: 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 24 samples with support for all annotated introns;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	gene	897120	911579	.	-	.	ID=LOC100164829;Dbxref=APHIDBASE:ACYPI005816,GeneID:100164829;Name=LOC100164829;feelnc_type=standard;gbkey=Gene;gene=LOC100164829;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	897120	911579	.	-	.	ID=rna211;Parent=LOC100164829;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;Name=XM_016807838.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100164829;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	mRNA	897120	909160	.	-	.	ID=rna212;Parent=LOC100164829;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;Name=XM_001943966.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100164829;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 14 samples with support for all annotated introns;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	gene	912301	915845	.	+	.	ID=LOC100168920;Dbxref=APHIDBASE:ACYPI009583,GeneID:100168920;Name=LOC100168920;feelnc_type=standard;gbkey=Gene;gene=LOC100168920;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	912301	915845	.	+	.	ID=rna213;Parent=LOC100168920;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;Name=XM_001943851.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100168920;model_evidence=Supporting evidence includes similarity to: 18 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 26 samples with support for all annotated introns;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	gene	915421	918276	.	-	.	ID=LOC100160041;Dbxref=APHIDBASE:ACYPI001374,GeneID:100160041;Name=LOC100160041;feelnc_type=standard;gbkey=Gene;gene=LOC100160041;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	915421	918276	.	-	.	ID=rna214;Parent=LOC100160041;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;Name=XM_001943803.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100160041;model_evidence=Supporting evidence includes similarity to: 2 mRNAs%2C 57 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 40 samples with support for all annotated introns;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	BestRefSeq	gene	919254	920506	.	+	.	ID=LOC100162084;Dbxref=APHIDBASE:ACYPI003263,GeneID:100162084;Name=LOC100162084;description=sentrin-specific protease 8;feelnc_type=standard;gbkey=Gene;gene=LOC100162084;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	919254	920506	.	+	.	ID=rna215;Parent=LOC100162084;Dbxref=GeneID:100162084,Genbank:NM_001301349.1,APHIDBASE:ACYPI003263;Name=NM_001301349.1;Note=The RefSeq transcript has 1 substitution compared to this genomic sequence;exception=annotated by transcript or proteomic data;feelnc_type=standard;gbkey=mRNA;gene=LOC100162084;product=sentrin-specific protease 8;transcript_id=NM_001301349.1
+GL349622	Gnomon	gene	925430	930218	.	-	.	ID=LOC100164143;Dbxref=APHIDBASE:ACYPI005182,GeneID:100164143;Name=LOC100164143;feelnc_type=standard;gbkey=Gene;gene=LOC100164143;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	925430	930218	.	-	.	ID=rna216;Parent=LOC100164143;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;Name=XM_001943696.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100164143;model_evidence=Supporting evidence includes similarity to: 9 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 30 samples with support for all annotated introns;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	gene	930390	946547	.	+	.	ID=LOC100166186;Dbxref=APHIDBASE:ACYPI007079,GeneID:100166186;Name=LOC100166186;feelnc_type=standard;gbkey=Gene;gene=LOC100166186;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	930390	946547	.	+	.	ID=rna217;Parent=LOC100166186;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;Name=XM_001943648.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100166186;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 37 ESTs%2C 19 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	mRNA	930391	946547	.	+	.	ID=rna218;Parent=LOC100166186;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;Name=XM_003240038.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100166186;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 61 ESTs%2C 19 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 34 samples with support for all annotated introns;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	gene	954965	962371	.	+	.	ID=LOC100571889;Dbxref=GeneID:100571889;Name=LOC100571889;feelnc_type=standard;gbkey=Gene;gene=LOC100571889;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	954965	962371	.	+	.	ID=rna219;Parent=LOC100571889;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;Name=XM_008190770.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100571889;model_evidence=Supporting evidence includes similarity to: 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	gene	962994	969582	.	+	.	ID=LOC107884914;Dbxref=GeneID:107884914;Name=LOC107884914;feelnc_type=standard;gbkey=Gene;gene=LOC107884914;gene_biotype=lncRNA
+GL349622	Gnomon	gene	975067	979841	.	-	.	ID=LOC100161399;Dbxref=APHIDBASE:ACYPI002622,GeneID:100161399;Name=LOC100161399;feelnc_type=standard;gbkey=Gene;gene=LOC100161399;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	975067	979841	.	-	.	ID=rna221;Parent=LOC100161399;Dbxref=GeneID:100161399,Genbank:XM_003240040.3,APHIDBASE:ACYPI002622;Name=XM_003240040.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100161399;model_evidence=Supporting evidence includes similarity to: 3 mRNAs%2C 105 ESTs%2C 42 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 47 samples with support for all annotated introns;product=calreticulin;transcript_id=XM_003240040.3
+GL349622	Gnomon	gene	988282	991782	.	+	.	ID=LOC103311237;Dbxref=GeneID:103311237;Name=LOC103311237;feelnc_type=standard;gbkey=Gene;gene=LOC103311237;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	988282	991782	.	+	.	ID=rna222;Parent=LOC103311237;Dbxref=GeneID:103311237,Genbank:XM_008190837.2;Name=XM_008190837.2;feelnc_type=standard;gbkey=mRNA;gene=LOC103311237;model_evidence=Supporting evidence includes similarity to: 5 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 5 samples with support for all annotated introns;product=mpv17-like protein 2%2C transcript variant X1;transcript_id=XM_008190837.2
+GL349622	Gnomon	mRNA	988287	991782	.	+	.	ID=rna223;Parent=LOC103311237;Dbxref=GeneID:103311237,Genbank:XM_016808131.1;Name=XM_016808131.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103311237;model_evidence=Supporting evidence includes similarity to: 5 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=mpv17-like protein 2%2C transcript variant X2;transcript_id=XM_016808131.1
+GL349622	Gnomon	gene	991112	996973	.	-	.	ID=LOC100163441;Dbxref=APHIDBASE:ACYPI004530,GeneID:100163441;Name=LOC100163441;feelnc_type=standard;gbkey=Gene;gene=LOC100163441;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	991112	996973	.	-	.	ID=rna224;Parent=LOC100163441;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;Name=XM_001952548.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100163441;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 11 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	gene	997999	1002764	.	-	.	ID=LOC100572199;Dbxref=GeneID:100572199;Name=LOC100572199;feelnc_type=standard;gbkey=Gene;gene=LOC100572199;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	997999	1002764	.	-	.	ID=rna225;Parent=LOC100572199;Dbxref=GeneID:100572199,Genbank:XM_016808180.1;Name=XM_016808180.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100572199;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC100572199;transcript_id=XM_016808180.1
+GL349622	Gnomon	gene	1004305	1007224	.	-	.	ID=LOC100572295;Dbxref=GeneID:100572295;Name=LOC100572295;feelnc_type=standard;gbkey=Gene;gene=LOC100572295;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1004305	1007224	.	-	.	ID=rna226;Parent=LOC100572295;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;Name=XM_008190912.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100572295;model_evidence=Supporting evidence includes similarity to: 4 Proteins;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	gene	1012741	1030181	.	+	.	ID=LOC100163487;Dbxref=APHIDBASE:ACYPI004573,GeneID:100163487;Name=LOC100163487;feelnc_type=standard;gbkey=Gene;gene=LOC100163487;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1012741	1030181	.	+	.	ID=rna227;Parent=LOC100163487;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;Name=XM_008186592.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100163487;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 8 samples with support for all annotated introns;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	mRNA	1012741	1030181	.	+	.	ID=rna228;Parent=LOC100163487;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;Name=XM_001951254.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100163487;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 10 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 19 samples with support for all annotated introns;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	mRNA	1012756	1030181	.	+	.	ID=rna229;Parent=LOC100163487;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;Name=XM_008186560.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100163487;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 11 ESTs%2C 2 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 9 samples with support for all annotated introns;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	gene	1027699	1029369	.	+	.	ID=LOC103309860;Dbxref=GeneID:103309860;Name=LOC103309860;feelnc_type=standard;gbkey=Gene;gene=LOC103309860;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1027699	1029369	.	+	.	ID=rna230;Parent=LOC103309860;Dbxref=GeneID:103309860,Genbank:XM_016808364.1;Name=XM_016808364.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103309860;model_evidence=Supporting evidence includes similarity to: 11 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=fumarylacetoacetase;transcript_id=XM_016808364.1
+GL349622	Gnomon	gene	1030338	1043929	.	-	.	ID=LOC100165543;Dbxref=APHIDBASE:ACYPI006485,GeneID:100165543;Name=LOC100165543;feelnc_type=standard;gbkey=Gene;gene=LOC100165543;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1030338	1043929	.	-	.	ID=rna231;Parent=LOC100165543;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;Name=XM_001951241.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100165543;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	mRNA	1030338	1043929	.	-	.	ID=rna232;Parent=LOC100165543;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;Name=XM_008186639.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100165543;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 9 samples with support for all annotated introns;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	gene	1073980	1094548	.	-	.	ID=LOC100160057;Dbxref=APHIDBASE:ACYPI001389,GeneID:100160057;Name=LOC100160057;feelnc_type=standard;gbkey=Gene;gene=LOC100160057;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1073980	1094548	.	-	.	ID=rna233;Parent=LOC100160057;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;Name=XM_016806012.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100160057;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 11 Proteins%2C and 96%25 coverage of the annotated genomic feature by RNAseq alignments;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	BestRefSeq	gene	1107340	1114955	.	-	.	ID=Enpep;Dbxref=APHIDBASE:ACYPI008967,GeneID:100168247;Name=Enpep;description=glutamyl aminopeptidase;feelnc_type=standard;gbkey=Gene;gene=Enpep;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	1107340	1114955	.	-	.	ID=rna234;Parent=Enpep;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;Name=NM_001205267.1;feelnc_type=standard;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	gene	1133813	1136648	.	+	.	ID=LOC100160016;Dbxref=APHIDBASE:ACYPI001350,GeneID:100160016;Name=LOC100160016;description=phosphatidylinositol glycan%2C class P-like;feelnc_type=standard;gbkey=Gene;gene=LOC100160016;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	1133813	1136648	.	+	.	ID=rna235;Parent=LOC100160016;Dbxref=GeneID:100160016,Genbank:NM_001161949.2,APHIDBASE:ACYPI001350;Name=NM_001161949.2;exception=annotated by transcript or proteomic data;feelnc_type=standard;gbkey=mRNA;gene=LOC100160016;product=phosphatidylinositol glycan%2C class P-like;transcript_id=NM_001161949.2
+GL349622	Gnomon	gene	1133954	1135723	.	+	.	ID=LOC103309958;Dbxref=GeneID:103309958;Name=LOC103309958;feelnc_type=standard;gbkey=Gene;gene=LOC103309958;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1133954	1135723	.	+	.	ID=rna236;Parent=LOC103309958;Dbxref=GeneID:103309958,Genbank:XM_008186778.2;Name=XM_008186778.2;feelnc_type=standard;gbkey=mRNA;gene=LOC103309958;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=acyl-CoA dehydrogenase family member 9%2C mitochondrial-like;transcript_id=XM_008186778.2
+GL349622	Gnomon	gene	1137507	1151641	.	-	.	ID=LOC100166813;Dbxref=GeneID:100166813;Name=LOC100166813;feelnc_type=standard;gbkey=Gene;gene=LOC100166813;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1137507	1151641	.	-	.	ID=rna237;Parent=LOC100166813;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;Name=XM_003240043.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100166813;model_evidence=Supporting evidence includes similarity to: 10 ESTs%2C 6 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 12 samples with support for all annotated introns;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	mRNA	1137507	1143382	.	-	.	ID=rna238;Parent=LOC100166813;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;Name=XM_003240044.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100166813;model_evidence=Supporting evidence includes similarity to: 9 ESTs%2C 5 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 24 samples with support for all annotated introns;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	gene	1159150	1159545	.	+	.	ID=LOC100159779;Dbxref=APHIDBASE:ACYPI001126,GeneID:100159779;Name=LOC100159779;feelnc_type=standard;gbkey=Gene;gene=LOC100159779;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1159150	1159545	.	+	.	ID=rna239;Parent=LOC100159779;Dbxref=GeneID:100159779,Genbank:XM_008191055.1,APHIDBASE:ACYPI001126;Name=XM_008191055.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100159779;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC100159779;transcript_id=XM_008191055.1
+GL349622	Gnomon	gene	1173640	1174512	.	+	.	ID=LOC107884305;Dbxref=GeneID:107884305;Name=LOC107884305;feelnc_type=standard;gbkey=Gene;gene=LOC107884305;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1173640	1174512	.	+	.	ID=rna240;Parent=LOC107884305;Dbxref=GeneID:107884305,Genbank:XM_016806094.1;Name=XM_016806094.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884305;model_evidence=Supporting evidence includes similarity to: 92%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC107884305;transcript_id=XM_016806094.1
+GL349622	Gnomon	gene	1184737	1186035	.	-	.	ID=LOC107884322;Dbxref=GeneID:107884322;Name=LOC107884322;feelnc_type=standard;gbkey=Gene;gene=LOC107884322;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1184737	1186035	.	-	.	ID=rna241;Parent=LOC107884322;Dbxref=GeneID:107884322,Genbank:XM_016806134.1;Name=XM_016806134.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884322;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC107884322;transcript_id=XM_016806134.1
+GL349622	Gnomon	gene	1186072	1187039	.	-	.	ID=LOC100571607;Dbxref=GeneID:100571607;Name=LOC100571607;feelnc_type=standard;gbkey=Gene;gene=LOC100571607;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1186072	1187039	.	-	.	ID=rna242;Parent=LOC100571607;Dbxref=GeneID:100571607,Genbank:XM_008191119.1;Name=XM_008191119.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100571607;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC100571607;transcript_id=XM_008191119.1
+GL349622	Gnomon	gene	1304532	1352974	.	-	.	ID=LOC100161792;Dbxref=APHIDBASE:ACYPI002989,GeneID:100161792;Name=LOC100161792;feelnc_type=standard;gbkey=Gene;gene=LOC100161792;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1304532	1352974	.	-	.	ID=rna243;Parent=LOC100161792;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;Name=XM_008187118.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 17 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 23 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	mRNA	1304532	1329186	.	-	.	ID=rna244;Parent=LOC100161792;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;Name=XM_003240046.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 17 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 31 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	mRNA	1304532	1319408	.	-	.	ID=rna245;Parent=LOC100161792;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;Name=XM_001943165.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 23 ESTs%2C 13 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	mRNA	1304532	1319403	.	-	.	ID=rna246;Parent=LOC100161792;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;Name=XM_008187024.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 18 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	mRNA	1304532	1314189	.	-	.	ID=rna247;Parent=LOC100161792;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;Name=XM_008187079.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 17 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 17 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	mRNA	1304532	1313340	.	-	.	ID=rna248;Parent=LOC100161792;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;Name=XM_008186942.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 21 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 37 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	mRNA	1304532	1313340	.	-	.	ID=rna249;Parent=LOC100161792;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;Name=XM_003240045.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 21 ESTs%2C 13 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 37 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	gene	1372639	1377114	.	-	.	ID=LOC100167932;Dbxref=APHIDBASE:ACYPI008679,GeneID:100167932;Name=LOC100167932;feelnc_type=standard;gbkey=Gene;gene=LOC100167932;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1372639	1377114	.	-	.	ID=rna250;Parent=LOC100167932;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;Name=XM_008187391.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100167932;model_evidence=Supporting evidence includes similarity to: 4 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	mRNA	1372639	1377112	.	-	.	ID=rna251;Parent=LOC100167932;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;Name=XM_001942975.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100167932;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 37 samples with support for all annotated introns;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	gene	1384318	1387580	.	+	.	ID=LOC100167311;Dbxref=APHIDBASE:ACYPI008117,GeneID:100167311;Name=LOC100167311;feelnc_type=standard;gbkey=Gene;gene=LOC100167311;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1384318	1387580	.	+	.	ID=rna252;Parent=LOC100167311;Dbxref=GeneID:100167311,Genbank:XM_008187445.2,APHIDBASE:ACYPI008117;Name=XM_008187445.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100167311;model_evidence=Supporting evidence includes similarity to: 9 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 44 samples with support for all annotated introns;product=zinc finger protein 593%2C transcript variant X1;transcript_id=XM_008187445.2
+GL349622	Gnomon	mRNA	1384331	1386237	.	+	.	ID=rna253;Parent=LOC100167311;Dbxref=GeneID:100167311,Genbank:XM_008187492.2,APHIDBASE:ACYPI008117;Name=XM_008187492.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100167311;model_evidence=Supporting evidence includes similarity to: 7 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 44 samples with support for all annotated introns;product=zinc finger protein 593%2C transcript variant X2;transcript_id=XM_008187492.2
+GL349622	Gnomon	gene	1388356	1398413	.	-	.	ID=LOC100163212;Dbxref=APHIDBASE:ACYPI004312,GeneID:100163212;Name=LOC100163212;feelnc_type=standard;gbkey=Gene;gene=LOC100163212;gene_biotype=protein_coding;partial=true
+GL349622	Gnomon	mRNA	1388356	1398413	.	-	.	ID=rna254;Parent=LOC100163212;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Name=XM_001942814.4;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;feelnc_type=standard;gbkey=mRNA;gene=LOC100163212;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 26 ESTs%2C 3 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	gene	1398757	1413919	.	+	.	ID=LOC100165286;Dbxref=APHIDBASE:ACYPI006243,GeneID:100165286;Name=LOC100165286;feelnc_type=standard;gbkey=Gene;gene=LOC100165286;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1398757	1413919	.	+	.	ID=rna255;Parent=LOC100165286;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;Name=XM_001942758.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100165286;model_evidence=Supporting evidence includes similarity to: 7 ESTs%2C 1 Protein%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 26 samples with support for all annotated introns;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	mRNA	1398759	1412681	.	+	.	ID=rna256;Parent=LOC100165286;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;Name=XM_008187626.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100165286;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 20 samples with support for all annotated introns;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	BestRefSeq%2CGnomon	gene	1408564	1418644	.	-	.	ID=LOC100169371;Dbxref=APHIDBASE:ACYPI009997,GeneID:100169371;Name=LOC100169371;description=proline synthase co-transcribed bacterial homolog protein-like;feelnc_type=standard;gbkey=Gene;gene=LOC100169371;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1408564	1418644	.	-	.	ID=rna257;Parent=LOC100169371;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;Name=XM_016805280.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	mRNA	1416051	1418643	.	-	.	ID=rna258;Parent=LOC100169371;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;Name=XM_016805246.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 4 Proteins%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	mRNA	1416051	1418643	.	-	.	ID=rna259;Parent=LOC100169371;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;Name=XM_008185225.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 5 ESTs%2C 4 Proteins%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 17 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	mRNA	1416051	1418377	.	-	.	ID=rna260;Parent=LOC100169371;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;Name=XM_016805340.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 4 ESTs%2C 4 Proteins%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 17 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	BestRefSeq	mRNA	1416051	1417652	.	-	.	ID=rna261;Parent=LOC100169371;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;Name=NM_001246111.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	Gnomon	gene	1423988	1451019	.	+	.	ID=LOC100160486;Dbxref=APHIDBASE:ACYPI001780,GeneID:100160486;Name=LOC100160486;feelnc_type=standard;gbkey=Gene;gene=LOC100160486;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1423988	1451019	.	+	.	ID=rna262;Parent=LOC100160486;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;Name=XM_008187776.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100160486;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 19 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	mRNA	1439167	1451019	.	+	.	ID=rna263;Parent=LOC100160486;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;Name=XM_001942918.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100160486;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 30 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 36 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	mRNA	1445298	1451019	.	+	.	ID=rna264;Parent=LOC100160486;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;Name=XM_008187747.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100160486;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 25 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 28 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	gene	1460195	1463356	.	+	.	ID=LOC100165672;Dbxref=APHIDBASE:ACYPI006604,GeneID:100165672;Name=LOC100165672;feelnc_type=standard;gbkey=Gene;gene=LOC100165672;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1460195	1463356	.	+	.	ID=rna265;Parent=LOC100165672;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;Name=XM_001949996.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100165672;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 9 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 32 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	gene	1466684	1468962	.	-	.	ID=LOC100163625;Dbxref=APHIDBASE:ACYPI004698,GeneID:100163625;Name=LOC100163625;feelnc_type=standard;gbkey=Gene;gene=LOC100163625;gene_biotype=misc_RNA;pseudo=true
+GL349622	Gnomon	gene	1478969	1487171	.	-	.	ID=LOC107885372;Dbxref=GeneID:107885372;Name=LOC107885372;feelnc_type=standard;gbkey=Gene;gene=LOC107885372;gene_biotype=lncRNA
+GL349622	Gnomon	gene	1490305	1491651	.	+	.	ID=LOC100574139;Dbxref=GeneID:100574139;Name=LOC100574139;feelnc_type=standard;gbkey=Gene;gene=LOC100574139;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1490305	1491651	.	+	.	ID=rna268;Parent=LOC100574139;Dbxref=GeneID:100574139,Genbank:XM_003240049.3;Name=XM_003240049.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100574139;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 36 samples with support for all annotated introns;product=integrator complex subunit 12;transcript_id=XM_003240049.3
+GL349622	Gnomon	gene	1491547	1499437	.	-	.	ID=LOC100168902;Dbxref=APHIDBASE:ACYPI009565,GeneID:100168902;Name=LOC100168902;feelnc_type=standard;gbkey=Gene;gene=LOC100168902;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1491547	1499437	.	-	.	ID=rna269;Parent=LOC100168902;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;Name=XM_001943419.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100168902;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	gene	1530611	1532940	.	+	.	ID=LOC100574225;Dbxref=GeneID:100574225;Name=LOC100574225;feelnc_type=standard;gbkey=Gene;gene=LOC100574225;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1530611	1532940	.	+	.	ID=rna270;Parent=LOC100574225;Dbxref=GeneID:100574225,Genbank:XM_003240050.3;Name=XM_003240050.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100574225;model_evidence=Supporting evidence includes similarity to: 5 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 36 samples with support for all annotated introns;product=uncharacterized LOC100574225;transcript_id=XM_003240050.3
+GL349622	Gnomon	gene	1562831	1566978	.	-	.	ID=LOC100166367;Dbxref=APHIDBASE:ACYPI007246,GeneID:100166367;Name=LOC100166367;feelnc_type=standard;gbkey=Gene;gene=LOC100166367;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1562831	1566978	.	-	.	ID=rna271;Parent=LOC100166367;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;Name=XM_016809157.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100166367;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 9 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 16 samples with support for all annotated introns;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	mRNA	1562839	1566978	.	-	.	ID=rna272;Parent=LOC100166367;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;Name=XM_016809173.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100166367;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 9 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 8 samples with support for all annotated introns;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	mRNA	1563261	1566978	.	-	.	ID=rna273;Parent=LOC100166367;Dbxref=GeneID:100166367,Genbank:XM_001945281.4,APHIDBASE:ACYPI007246;Name=XM_001945281.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100166367;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 8 ESTs%2C 9 Proteins%2C and 96%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 32 samples with support for all annotated introns;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X1;transcript_id=XM_001945281.4
+GL349622	Gnomon	gene	1567127	1569525	.	+	.	ID=LOC100574472;Dbxref=GeneID:100574472;Name=LOC100574472;feelnc_type=standard;gbkey=Gene;gene=LOC100574472;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1567127	1569525	.	+	.	ID=rna274;Parent=LOC100574472;Dbxref=GeneID:100574472,Genbank:XM_003240051.3;Name=XM_003240051.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100574472;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=uncharacterized LOC100574472;transcript_id=XM_003240051.3
+GL349622	Gnomon	gene	1572933	1574946	.	-	.	ID=LOC100164349;Dbxref=APHIDBASE:ACYPI005373,GeneID:100164349;Name=LOC100164349;feelnc_type=standard;gbkey=Gene;gene=LOC100164349;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1572933	1574946	.	-	.	ID=rna275;Parent=LOC100164349;Dbxref=GeneID:100164349,Genbank:XM_008188215.1,APHIDBASE:ACYPI005373;Name=XM_008188215.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100164349;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 32 ESTs%2C 10 Proteins%2C and 96%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 42 samples with support for all annotated introns;product=small ubiquitin-related modifier-like;transcript_id=XM_008188215.1
+GL349622	Gnomon	gene	1576005	1588545	.	+	.	ID=LOC100162851;Dbxref=APHIDBASE:ACYPI003974,GeneID:100162851;Name=LOC100162851;feelnc_type=standard;gbkey=Gene;gene=LOC100162851;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1576005	1588545	.	+	.	ID=rna276;Parent=LOC100162851;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;Name=XM_001946456.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100162851;model_evidence=Supporting evidence includes similarity to: 10 ESTs%2C and 95%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	gene	1588546	1590260	.	-	.	ID=LOC100162278;Dbxref=APHIDBASE:ACYPI003438,GeneID:100162278;Name=LOC100162278;feelnc_type=standard;gbkey=Gene;gene=LOC100162278;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1588546	1590260	.	-	.	ID=rna277;Parent=LOC100162278;Dbxref=GeneID:100162278,Genbank:XM_001945844.4,APHIDBASE:ACYPI003438;Name=XM_001945844.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100162278;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 33 ESTs%2C 1 Protein%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 42 samples with support for all annotated introns;product=small ubiquitin-related modifier-like;transcript_id=XM_001945844.4
+GL349622	BestRefSeq	gene	1593498	1594937	.	+	.	ID=LOC100160233;Dbxref=APHIDBASE:ACYPI001547,GeneID:100160233;Name=LOC100160233;description=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;feelnc_type=standard;gbkey=Gene;gene=LOC100160233;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	1593498	1594937	.	+	.	ID=rna278;Parent=LOC100160233;Dbxref=GeneID:100160233,Genbank:NM_001162615.2,APHIDBASE:ACYPI001547;Name=NM_001162615.2;Note=The RefSeq transcript has 2 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;feelnc_type=standard;gbkey=mRNA;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;transcript_id=NM_001162615.2
+GL349622	Gnomon	gene	1595638	1600785	.	-	.	ID=LOC100160828;Dbxref=APHIDBASE:ACYPI002098,GeneID:100160828;Name=LOC100160828;feelnc_type=standard;gbkey=Gene;gene=LOC100160828;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1595638	1600785	.	-	.	ID=rna279;Parent=LOC100160828;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;Name=XM_008188425.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100160828;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	mRNA	1595638	1600785	.	-	.	ID=rna280;Parent=LOC100160828;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;Name=XM_001946503.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100160828;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 9 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	mRNA	1595638	1600774	.	-	.	ID=rna281;Parent=LOC100160828;Dbxref=GeneID:100160828,Genbank:XM_003240053.3,APHIDBASE:ACYPI002098;Name=XM_003240053.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100160828;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 10 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 34 samples with support for all annotated introns;product=zinc finger C4H2 domain-containing protein%2C transcript variant X2;transcript_id=XM_003240053.3
+GL349622	Gnomon	gene	1600872	1607388	.	+	.	ID=LOC100169103;Dbxref=APHIDBASE:ACYPI009752,GeneID:100169103;Name=LOC100169103;feelnc_type=standard;gbkey=Gene;gene=LOC100169103;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1600872	1607388	.	+	.	ID=rna282;Parent=LOC100169103;Dbxref=GeneID:100169103,Genbank:XM_016809382.1,APHIDBASE:ACYPI009752;Name=XM_016809382.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100169103;model_evidence=Supporting evidence includes similarity to: 16 mRNAs%2C 365 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 45 samples with support for all annotated introns;product=integumentary mucin C.1-like;transcript_id=XM_016809382.1
+GL349622	Gnomon	gene	1654762	1668183	.	-	.	ID=LOC100159541;Dbxref=APHIDBASE:ACYPI000901,GeneID:100159541;Name=LOC100159541;feelnc_type=standard;gbkey=Gene;gene=LOC100159541;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1654762	1668183	.	-	.	ID=rna283;Parent=LOC100159541;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;Name=XM_008188560.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100159541;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C 2 Proteins%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	mRNA	1654762	1668115	.	-	.	ID=rna284;Parent=LOC100159541;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;Name=XM_008188530.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100159541;model_evidence=Supporting evidence includes similarity to: 10 ESTs%2C 2 Proteins%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 8 samples with support for all annotated introns;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	gene	1704766	1705477	.	+	.	ID=LOC107884404;Dbxref=GeneID:107884404;Name=LOC107884404;feelnc_type=standard;gbkey=Gene;gene=LOC107884404;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1704766	1705477	.	+	.	ID=rna285;Parent=LOC107884404;Dbxref=GeneID:107884404,Genbank:XM_016806384.1;Name=XM_016806384.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884404;model_evidence=Supporting evidence includes similarity to: 93%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=uncharacterized LOC107884404;transcript_id=XM_016806384.1
+GL349622	Gnomon	gene	1726315	1727286	.	+	.	ID=LOC103311658;Dbxref=GeneID:103311658;Name=LOC103311658;feelnc_type=standard;gbkey=Gene;gene=LOC103311658;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1726315	1727286	.	+	.	ID=rna286;Parent=LOC103311658;Dbxref=GeneID:103311658,Genbank:XM_008191355.1;Name=XM_008191355.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103311658;model_evidence=Supporting evidence includes similarity to: 5 Proteins;product=uncharacterized LOC103311658;transcript_id=XM_008191355.1
+GL349622	Gnomon	gene	1736008	1736331	.	+	.	ID=LOC107884428;Dbxref=GeneID:107884428;Name=LOC107884428;feelnc_type=standard;gbkey=Gene;gene=LOC107884428;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1736008	1736331	.	+	.	ID=rna287;Parent=LOC107884428;Dbxref=GeneID:107884428,Genbank:XM_016806458.1;Name=XM_016806458.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884428;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized mitochondrial protein AtMg00860-like;transcript_id=XM_016806458.1
+GL349622	Gnomon	gene	1747701	1777168	.	+	.	ID=LOC100160616;Dbxref=APHIDBASE:ACYPI001900,GeneID:100160616;Name=LOC100160616;feelnc_type=standard;gbkey=Gene;gene=LOC100160616;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1747701	1777168	.	+	.	ID=rna288;Parent=LOC100160616;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;Name=XM_008191526.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100160616;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 12 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	gene	1789286	1848837	.	-	.	ID=LOC100164781;Dbxref=APHIDBASE:ACYPI005769,GeneID:100164781;Name=LOC100164781;feelnc_type=standard;gbkey=Gene;gene=LOC100164781;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1789286	1848837	.	-	.	ID=rna289;Parent=LOC100164781;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;Name=XM_001942843.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100164781;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 12 ESTs%2C 10 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	gene	1894532	1896717	.	+	.	ID=LOC100168167;Dbxref=APHIDBASE:ACYPI008893,GeneID:100168167;Name=LOC100168167;feelnc_type=standard;gbkey=Gene;gene=LOC100168167;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1894532	1896717	.	+	.	ID=rna290;Parent=LOC100168167;Dbxref=GeneID:100168167,Genbank:XM_001942731.4,APHIDBASE:ACYPI008893;Name=XM_001942731.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100168167;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 91%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 26 samples with support for all annotated introns;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X1;transcript_id=XM_001942731.4
+GL349622	Gnomon	mRNA	1894532	1896717	.	+	.	ID=rna291;Parent=LOC100168167;Dbxref=GeneID:100168167,Genbank:XM_008188693.2,APHIDBASE:ACYPI008893;Name=XM_008188693.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100168167;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 90%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 16 samples with support for all annotated introns;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X2;transcript_id=XM_008188693.2
+GL349622	Gnomon	mRNA	1894532	1896717	.	+	.	ID=rna292;Parent=LOC100168167;Dbxref=GeneID:100168167,Genbank:XM_008188725.2,APHIDBASE:ACYPI008893;Name=XM_008188725.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100168167;model_evidence=Supporting evidence includes similarity to: 4 ESTs%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 20 samples with support for all annotated introns;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X3;transcript_id=XM_008188725.2
+GL349622	Gnomon	gene	1907096	1909396	.	-	.	ID=LOC100166127;Dbxref=APHIDBASE:ACYPI007026,GeneID:100166127;Name=LOC100166127;feelnc_type=standard;gbkey=Gene;gene=LOC100166127;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1907096	1909396	.	-	.	ID=rna293;Parent=LOC100166127;Dbxref=GeneID:100166127,Genbank:XM_001942528.3,APHIDBASE:ACYPI007026;Name=XM_001942528.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100166127;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 1 Protein%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 15 samples with support for all annotated introns;product=mucin-5AC-like;transcript_id=XM_001942528.3
+GL349622	Gnomon	gene	1945604	1946416	.	+	.	ID=LOC100575579;Dbxref=GeneID:100575579;Name=LOC100575579;feelnc_type=standard;gbkey=Gene;gene=LOC100575579;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1945604	1946416	.	+	.	ID=rna294;Parent=LOC100575579;Dbxref=GeneID:100575579,Genbank:XM_008191533.1;Name=XM_008191533.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100575579;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC100575579;transcript_id=XM_008191533.1
+GL349622	Gnomon	gene	1951517	1951968	.	-	.	ID=LOC103311811;Dbxref=GeneID:103311811;Name=LOC103311811;feelnc_type=standard;gbkey=Gene;gene=LOC103311811;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1951517	1951968	.	-	.	ID=rna295;Parent=LOC103311811;Dbxref=GeneID:103311811,Genbank:XM_008191541.1;Name=XM_008191541.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103311811;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103311811;transcript_id=XM_008191541.1
+GL349622	Gnomon	gene	1980226	1981442	.	-	.	ID=LOC103311820;Dbxref=GeneID:103311820;Name=LOC103311820;feelnc_type=standard;gbkey=Gene;gene=LOC103311820;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1980226	1981442	.	-	.	ID=rna296;Parent=LOC103311820;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;Name=XM_008191556.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103311820;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	gene	1986731	1990814	.	+	.	ID=LOC107884489;Dbxref=GeneID:107884489;Name=LOC107884489;feelnc_type=standard;gbkey=Gene;gene=LOC107884489;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1986731	1990814	.	+	.	ID=rna297;Parent=LOC107884489;Dbxref=GeneID:107884489,Genbank:XM_016806708.1;Name=XM_016806708.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107884489;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC107884489;transcript_id=XM_016806708.1
+GL349622	Gnomon	gene	2014149	2019558	.	-	.	ID=LOC107885867;Dbxref=GeneID:107885867;Name=LOC107885867;feelnc_type=standard;gbkey=Gene;gene=LOC107885867;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2014149	2019558	.	-	.	ID=rna298;Parent=LOC107885867;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;Name=XM_016809556.1;feelnc_type=standard;gbkey=mRNA;gene=LOC107885867;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	gene	2046631	2047783	.	-	.	ID=LOC103311827;Dbxref=GeneID:103311827;Name=LOC103311827;feelnc_type=standard;gbkey=Gene;gene=LOC103311827;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2046631	2047783	.	-	.	ID=rna299;Parent=LOC103311827;Dbxref=GeneID:103311827,Genbank:XM_008191569.1;Name=XM_008191569.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103311827;model_evidence=Supporting evidence includes similarity to: 3 Proteins;product=zinc finger MYM-type protein 5-like;transcript_id=XM_008191569.1
+GL349622	Gnomon	gene	2058012	2058824	.	-	.	ID=LOC103311829;Dbxref=GeneID:103311829;Name=LOC103311829;feelnc_type=standard;gbkey=Gene;gene=LOC103311829;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2058012	2058824	.	-	.	ID=rna300;Parent=LOC103311829;Dbxref=GeneID:103311829,Genbank:XM_008191577.1;Name=XM_008191577.1;feelnc_type=standard;gbkey=mRNA;gene=LOC103311829;model_evidence=Supporting evidence includes similarity to: 3 Proteins;product=uncharacterized LOC103311829;transcript_id=XM_008191577.1
+GL349622	Gnomon	gene	2061472	2082555	.	-	.	ID=LOC100160948;Dbxref=APHIDBASE:ACYPI002213,GeneID:100160948;Name=LOC100160948;feelnc_type=standard;gbkey=Gene;gene=LOC100160948;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2061472	2076567	.	-	.	ID=rna301;Parent=LOC100160948;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;Name=XM_016809562.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100160948;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	mRNA	2061473	2082555	.	-	.	ID=rna302;Parent=LOC100160948;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;Name=XM_016809567.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100160948;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 12 samples with support for all annotated introns;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	mRNA	2061475	2082554	.	-	.	ID=rna303;Parent=LOC100160948;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;Name=XM_016809560.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100160948;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	gene	2082995	2088052	.	+	.	ID=LOC100160307;Dbxref=APHIDBASE:ACYPI001612,GeneID:100160307;Name=LOC100160307;feelnc_type=standard;gbkey=Gene;gene=LOC100160307;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2082995	2088052	.	+	.	ID=rna304;Parent=LOC100160307;Dbxref=GeneID:100160307,Genbank:XM_003240058.3,APHIDBASE:ACYPI001612;Name=XM_003240058.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100160307;model_evidence=Supporting evidence includes similarity to: 7 ESTs%2C 7 Proteins%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 22 samples with support for all annotated introns;product=alpha-1%2C3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase;transcript_id=XM_003240058.3
+GL349622	Gnomon	gene	2093012	2100933	.	+	.	ID=LOC100570112;Dbxref=GeneID:100570112;Name=LOC100570112;feelnc_type=standard;gbkey=Gene;gene=LOC100570112;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2093012	2100933	.	+	.	ID=rna305;Parent=LOC100570112;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;Name=XM_016806904.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100570112;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 84%25 coverage of the annotated genomic feature by RNAseq alignments;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	gene	2111756	2113518	.	-	.	ID=LOC100159923;Dbxref=APHIDBASE:ACYPI001262,GeneID:100159923;Name=LOC100159923;feelnc_type=standard;gbkey=Gene;gene=LOC100159923;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2111756	2113518	.	-	.	ID=rna306;Parent=LOC100159923;Dbxref=GeneID:100159923,Genbank:XM_001949658.4,APHIDBASE:ACYPI001262;Name=XM_001949658.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100159923;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=cuticle protein 1;transcript_id=XM_001949658.4
+GL349622	Gnomon	gene	2116078	2123137	.	+	.	ID=LOC100168801;Dbxref=APHIDBASE:ACYPI009473,GeneID:100168801;Name=LOC100168801;feelnc_type=standard;gbkey=Gene;gene=LOC100168801;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2116078	2123137	.	+	.	ID=rna307;Parent=LOC100168801;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;Name=XM_001949695.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100168801;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 5 ESTs%2C 5 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 29 samples with support for all annotated introns;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	mRNA	2116078	2123137	.	+	.	ID=rna308;Parent=LOC100168801;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;Name=XM_008189029.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100168801;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C 5 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 19 samples with support for all annotated introns;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	BestRefSeq	gene	2123429	2124076	.	+	.	ID=LOC100166063;Dbxref=APHIDBASE:ACYPI006967,GeneID:100166063;Name=LOC100166063;description=uncharacterized protein LOC100166063;feelnc_type=standard;gbkey=Gene;gene=LOC100166063;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	2123429	2124076	.	+	.	ID=rna309;Parent=LOC100166063;Dbxref=GeneID:100166063,Genbank:NM_001246122.1,APHIDBASE:ACYPI006967;Name=NM_001246122.1;Note=The RefSeq transcript has 3 non-frameshifting indels compared to this genomic sequence;exception=annotated by transcript or proteomic data;feelnc_type=standard;gbkey=mRNA;gene=LOC100166063;product=uncharacterized protein LOC100166063;transcript_id=NM_001246122.1
+GL349622	Gnomon	gene	2123959	2129764	.	-	.	ID=LOC100166726;Dbxref=APHIDBASE:ACYPI007577,GeneID:100166726;Name=LOC100166726;feelnc_type=standard;gbkey=Gene;gene=LOC100166726;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2123959	2129764	.	-	.	ID=rna310;Parent=LOC100166726;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;Name=XM_001949720.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100166726;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 7 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 20 samples with support for all annotated introns;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	mRNA	2123959	2128965	.	-	.	ID=rna311;Parent=LOC100166726;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;Name=XM_016809577.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100166726;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 6 samples with support for all annotated introns;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	mRNA	2125700	2129764	.	-	.	ID=rna312;Parent=LOC100166726;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;Name=XM_016809581.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100166726;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C 7 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 16 samples with support for all annotated introns;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	BestRefSeq%2CGnomon	gene	2129816	2133448	.	+	.	ID=LOC100164021;Dbxref=APHIDBASE:ACYPI005067,GeneID:100164021;Name=LOC100164021;description=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;feelnc_type=standard;gbkey=Gene;gene=LOC100164021;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	2129816	2133442	.	+	.	ID=rna313;Parent=LOC100164021;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Name=NM_001293485.1;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;feelnc_type=standard;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	Gnomon	mRNA	2129821	2133448	.	+	.	ID=rna314;Parent=LOC100164021;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;Name=XM_016805030.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100164021;model_evidence=Supporting evidence includes similarity to: 2 mRNAs%2C 3 ESTs%2C 9 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	mRNA	2129851	2133448	.	+	.	ID=rna315;Parent=LOC100164021;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;Name=XM_008189192.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100164021;model_evidence=Supporting evidence includes similarity to: 9 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 29 samples with support for all annotated introns;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	gene	2164845	2207255	.	-	.	ID=LOC100166428;Dbxref=APHIDBASE:ACYPI007300,GeneID:100166428;Name=LOC100166428;feelnc_type=standard;gbkey=Gene;gene=LOC100166428;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2164845	2207255	.	-	.	ID=rna316;Parent=LOC100166428;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;Name=XM_008189326.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna317;Parent=LOC100166428;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;Name=XM_016809604.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 7 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna318;Parent=LOC100166428;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;Name=XM_016809610.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 5 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna319;Parent=LOC100166428;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;Name=XM_003240061.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 7 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna320;Parent=LOC100166428;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;Name=XM_001945855.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	mRNA	2165530	2207194	.	-	.	ID=rna321;Parent=LOC100166428;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;Name=XM_016809614.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 2 ESTs%2C 15 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	gene	2207743	2212284	.	+	.	ID=LOC100162971;Dbxref=APHIDBASE:ACYPI004089,GeneID:100162971;Name=LOC100162971;feelnc_type=standard;gbkey=Gene;gene=LOC100162971;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2207743	2212284	.	+	.	ID=rna322;Parent=LOC100162971;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;Name=XM_016809619.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100162971;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 9 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 32 samples with support for all annotated introns;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	BestRefSeq%2CGnomon	gene	2215041	2221640	.	+	.	ID=Intu;Dbxref=APHIDBASE:ACYPI005441,GeneID:100164422;Name=Intu;description=inturned planar cell polarity effector homolog;feelnc_type=standard;gbkey=Gene;gene=Intu;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2215041	2221640	.	+	.	ID=rna323;Parent=Intu;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;Name=XM_016805099.1;feelnc_type=standard;gbkey=mRNA;gene=Intu;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 12 samples with support for all annotated introns;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	BestRefSeq	mRNA	2215042	2221640	.	+	.	ID=rna324;Parent=Intu;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;Name=NM_001205174.1;feelnc_type=standard;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	Gnomon	gene	2222019	2231511	.	-	.	ID=LOC100162339;Dbxref=APHIDBASE:ACYPI003496,GeneID:100162339;Name=LOC100162339;feelnc_type=standard;gbkey=Gene;gene=LOC100162339;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2222019	2231511	.	-	.	ID=rna325;Parent=LOC100162339;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;Name=XM_001945962.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100162339;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 4 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	gene	2236137	2244519	.	-	.	ID=LOC100167084;Dbxref=APHIDBASE:ACYPI007905,GeneID:100167084;Name=LOC100167084;feelnc_type=standard;gbkey=Gene;gene=LOC100167084;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2236137	2244519	.	-	.	ID=rna326;Parent=LOC100167084;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;Name=XM_003240065.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100167084;model_evidence=Supporting evidence includes similarity to: 2 mRNAs%2C 106 ESTs%2C 17 Proteins%2C and 90%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 43 samples with support for all annotated introns;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	mRNA	2236137	2244514	.	-	.	ID=rna327;Parent=LOC100167084;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;Name=XM_016809623.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100167084;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 19 ESTs%2C 15 Proteins%2C and 90%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 30 samples with support for all annotated introns;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	gene	2258090	2264185	.	+	.	ID=LOC100163719;Dbxref=APHIDBASE:ACYPI004782,GeneID:100163719;Name=LOC100163719;feelnc_type=standard;gbkey=Gene;gene=LOC100163719;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2258090	2264185	.	+	.	ID=rna328;Parent=LOC100163719;Dbxref=GeneID:100163719,Genbank:XM_001945644.3,APHIDBASE:ACYPI004782;Name=XM_001945644.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 5 samples with support for all annotated introns;product=protein FAM133-like%2C transcript variant X1;transcript_id=XM_001945644.3
+GL349622	Gnomon	mRNA	2258090	2264185	.	+	.	ID=rna329;Parent=LOC100163719;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;Name=XM_016809651.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	mRNA	2258353	2264185	.	+	.	ID=rna330;Parent=LOC100163719;Dbxref=GeneID:100163719,Genbank:XM_016809657.1,APHIDBASE:ACYPI004782;Name=XM_016809657.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=protein FAM133-like%2C transcript variant X4;transcript_id=XM_016809657.1
+GL349622	Gnomon	mRNA	2258695	2264185	.	+	.	ID=rna331;Parent=LOC100163719;Dbxref=GeneID:100163719,Genbank:XM_016809655.1,APHIDBASE:ACYPI004782;Name=XM_016809655.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=protein FAM133-like%2C transcript variant X3;transcript_id=XM_016809655.1
+GL349622	Gnomon	gene	2264010	2275205	.	-	.	ID=LOC100159605;Dbxref=APHIDBASE:ACYPI000962,GeneID:100159605;Name=LOC100159605;feelnc_type=standard;gbkey=Gene;gene=LOC100159605;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2264010	2275205	.	-	.	ID=rna332;Parent=LOC100159605;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;Name=XM_016809633.1;feelnc_type=standard;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 13 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	mRNA	2264010	2275205	.	-	.	ID=rna333;Parent=LOC100159605;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;Name=XM_008189652.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 19 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	mRNA	2264010	2275205	.	-	.	ID=rna334;Parent=LOC100159605;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;Name=XM_003240066.3;feelnc_type=standard;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 19 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	mRNA	2264010	2275204	.	-	.	ID=rna335;Parent=LOC100159605;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;Name=XM_001945754.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 19 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 33 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	gene	2270755	2281456	.	+	.	ID=LOC100168508;Dbxref=GeneID:100168508;Name=LOC100168508;feelnc_type=standard;gbkey=Gene;gene=LOC100168508;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2270755	2281456	.	+	.	ID=rna336;Parent=LOC100168508;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;Name=XM_008189547.2;feelnc_type=standard;gbkey=mRNA;gene=LOC100168508;model_evidence=Supporting evidence includes similarity to: 11 ESTs%2C 6 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 7 samples with support for all annotated introns;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	gene	2282156	2284359	.	-	.	ID=LOC100165058;Dbxref=APHIDBASE:ACYPI006028,GeneID:100165058;Name=LOC100165058;feelnc_type=standard;gbkey=Gene;gene=LOC100165058;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2282156	2284359	.	-	.	ID=rna337;Parent=LOC100165058;Dbxref=GeneID:100165058,Genbank:XM_001950091.4,APHIDBASE:ACYPI006028;Name=XM_001950091.4;feelnc_type=standard;gbkey=mRNA;gene=LOC100165058;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 25 ESTs%2C 5 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 44 samples with support for all annotated introns;product=solute carrier family 35 member B1;transcript_id=XM_001950091.4
+GL349622	Cufflinks	gene	218384	219722	.	-	1	
+GL349622	Cufflinks	mRNA	218384	219722	.	-	1	ID=CUFF.77.1;Parent=CUFF.77;feelnc_type=lncRNA
+GL349622	Cufflinks	gene	604709	609482	.	-	1	
+GL349622	Cufflinks	mRNA	604709	609482	.	-	1	ID=CUFF.110.1;Parent=CUFF.110;feelnc_type=lncRNA
+GL349622	Cufflinks	gene	490324	536159	.	-	1	
+GL349622	Cufflinks	mRNA	490324	536159	.	-	1	ID=CUFF.85.1;Parent=CUFF.85;feelnc_type=lncRNA
+GL349622	Cufflinks	gene	2021789	2026165	.	-	1	
+GL349622	Cufflinks	mRNA	2021789	2026165	.	-	1	ID=CUFF.135.2;Parent=CUFF.135;feelnc_type=lncRNA
+GL349622	Cufflinks	gene	407420	409348	.	+	1	ID=CUFF.82
+GL349622	Cufflinks	mRNA	407420	409348	.	+	1	ID=CUFF.82.1;Parent=CUFF.82;feelnc_type=new
+GL349622	Cufflinks	gene	490324	536159	.	-	1	
+GL349622	Cufflinks	mRNA	533485	536159	.	-	1	ID=CUFF.85.2;Parent=CUFF.85;feelnc_type=lncRNA
+GL349622	Cufflinks	gene	1722435	1724318	.	+	1	ID=CUFF.130
+GL349622	Cufflinks	mRNA	1722435	1724318	.	+	1	ID=CUFF.130.1;Parent=CUFF.130;feelnc_type=new
+GL349622	Cufflinks	gene	1200950	1218393	.	+	1	ID=CUFF.289
+GL349622	Cufflinks	mRNA	1200950	1218393	.	+	1	ID=CUFF.289.1;Parent=CUFF.289;feelnc_type=new
+GL349622	Cufflinks	gene	1758962	1760807	.	+	1	ID=CUFF.164
+GL349622	Cufflinks	mRNA	1758962	1760807	.	+	1	ID=CUFF.164.1;Parent=CUFF.164;feelnc_type=new
+GL349622	Cufflinks	gene	1359442	1360152	.	-	1	
+GL349622	Cufflinks	mRNA	1359442	1360152	.	-	1	ID=CUFF.491.1;Parent=CUFF.491;feelnc_type=lncRNA
+GL349622	Cufflinks	gene	675392	678724	.	+	1	ID=CUFF.91
+GL349622	Cufflinks	mRNA	675392	678724	.	+	1	ID=CUFF.91.1;Parent=CUFF.91;feelnc_type=new
+GL349622	Cufflinks	gene	2021789	2026165	.	-	1	
+GL349622	Cufflinks	mRNA	2021789	2024477	.	-	1	ID=CUFF.135.1;Parent=CUFF.135;feelnc_type=new
+GL349622	Cufflinks	gene	400758	405243	.	-	1	
+GL349622	Cufflinks	mRNA	400758	405243	.	-	1	ID=CUFF.80.1;Parent=CUFF.80;feelnc_type=lncRNA
+GL349622	Cufflinks	gene	1160606	1161032	.	-	1	
+GL349622	Cufflinks	mRNA	1160606	1161032	.	-	1	ID=CUFF.350.1;Parent=CUFF.350;feelnc_type=lncRNA
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/feelnc_lncRNA.gtf	Thu Apr 12 06:05:23 2018 -0400
@@ -0,0 +1,28 @@
+GL349622	Cufflinks	exon	533485	533534	882	-	.	gene_id "CUFF.85"; transcript_id "CUFF.85.2"; FPKM "2.3945340028"; conf_hi "2.630871"; conf_lo "2.158197"; cov "214.763323"; exon_number "1"; frac "0.489040";
+GL349622	Cufflinks	exon	533586	533675	882	-	.	gene_id "CUFF.85"; transcript_id "CUFF.85.2"; FPKM "2.3945340028"; conf_hi "2.630871"; conf_lo "2.158197"; cov "214.763323"; exon_number "2"; frac "0.489040";
+GL349622	Cufflinks	exon	535570	536159	882	-	.	gene_id "CUFF.85"; transcript_id "CUFF.85.2"; FPKM "2.3945340028"; conf_hi "2.630871"; conf_lo "2.158197"; cov "214.763323"; exon_number "3"; frac "0.489040";
+GL349622	Cufflinks	exon	490324	490331	1000	-	.	gene_id "CUFF.85"; transcript_id "CUFF.85.1"; FPKM "2.7134838239"; conf_hi "2.976733"; conf_lo "2.450235"; cov "243.369608"; exon_number "1"; frac "0.510960";
+GL349622	Cufflinks	exon	531740	531830	1000	-	.	gene_id "CUFF.85"; transcript_id "CUFF.85.1"; FPKM "2.7134838239"; conf_hi "2.976733"; conf_lo "2.450235"; cov "243.369608"; exon_number "2"; frac "0.510960";
+GL349622	Cufflinks	exon	535570	536159	1000	-	.	gene_id "CUFF.85"; transcript_id "CUFF.85.1"; FPKM "2.7134838239"; conf_hi "2.976733"; conf_lo "2.450235"; cov "243.369608"; exon_number "3"; frac "0.510960";
+GL349622	Cufflinks	exon	604709	604997	1000	-	.	gene_id "CUFF.110"; transcript_id "CUFF.110.1"; FPKM "0.0961002126"; conf_hi "0.135302"; conf_lo "0.056899"; cov "8.912035"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	609022	609482	1000	-	.	gene_id "CUFF.110"; transcript_id "CUFF.110.1"; FPKM "0.0961002126"; conf_hi "0.135302"; conf_lo "0.056899"; cov "8.912035"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	1160606	1160686	1000	-	.	gene_id "CUFF.350"; transcript_id "CUFF.350.1"; FPKM "0.1406859378"; conf_hi "0.225523"; conf_lo "0.055849"; cov "12.977983"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	1160750	1161032	1000	-	.	gene_id "CUFF.350"; transcript_id "CUFF.350.1"; FPKM "0.1406859378"; conf_hi "0.225523"; conf_lo "0.055849"; cov "12.977983"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	218384	218748	1000	-	.	gene_id "CUFF.77"; transcript_id "CUFF.77.1"; FPKM "0.0743883680"; conf_hi "0.114151"; conf_lo "0.034626"; cov "6.927126"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	219422	219582	1000	-	.	gene_id "CUFF.77"; transcript_id "CUFF.77.1"; FPKM "0.0743883680"; conf_hi "0.114151"; conf_lo "0.034626"; cov "6.927126"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	219650	219722	1000	-	.	gene_id "CUFF.77"; transcript_id "CUFF.77.1"; FPKM "0.0743883680"; conf_hi "0.114151"; conf_lo "0.034626"; cov "6.927126"; exon_number "3"; frac "1.000000";
+GL349622	Cufflinks	exon	2021789	2021806	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "1"; frac "0.530904";
+GL349622	Cufflinks	exon	2021900	2022107	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "2"; frac "0.530904";
+GL349622	Cufflinks	exon	2022183	2022321	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "3"; frac "0.530904";
+GL349622	Cufflinks	exon	2022426	2022632	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "4"; frac "0.530904";
+GL349622	Cufflinks	exon	2022873	2023046	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "5"; frac "0.530904";
+GL349622	Cufflinks	exon	2023146	2024788	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "6"; frac "0.530904";
+GL349622	Cufflinks	exon	2024861	2025119	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "7"; frac "0.530904";
+GL349622	Cufflinks	exon	2025186	2025371	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "8"; frac "0.530904";
+GL349622	Cufflinks	exon	2025439	2025624	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "9"; frac "0.530904";
+GL349622	Cufflinks	exon	2025689	2025775	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "10"; frac "0.530904";
+GL349622	Cufflinks	exon	2025850	2026165	518	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.2"; FPKM "0.0207553118"; conf_hi "0.028907"; conf_lo "0.012604"; cov "1.968198"; exon_number "11"; frac "0.530904";
+GL349622	Cufflinks	exon	1359442	1359624	1000	-	.	gene_id "CUFF.491"; transcript_id "CUFF.491.1"; FPKM "0.0739312720"; conf_hi "0.114941"; conf_lo "0.032922"; cov "7.121265"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	1359763	1360152	1000	-	.	gene_id "CUFF.491"; transcript_id "CUFF.491.1"; FPKM "0.0739312720"; conf_hi "0.114941"; conf_lo "0.032922"; cov "7.121265"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	400758	401861	1000	-	.	gene_id "CUFF.80"; transcript_id "CUFF.80.1"; FPKM "0.0766645216"; conf_hi "0.102680"; conf_lo "0.050649"; cov "6.048173"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	405167	405243	1000	-	.	gene_id "CUFF.80"; transcript_id "CUFF.80.1"; FPKM "0.0766645216"; conf_hi "0.102680"; conf_lo "0.050649"; cov "6.048173"; exon_number "2"; frac "1.000000";
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/feelnc_mRNA.gtf	Thu Apr 12 06:05:23 2018 -0400
@@ -0,0 +1,23 @@
+GL349622	Cufflinks	exon	2021789	2021806	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "1"; frac "0.469096";
+GL349622	Cufflinks	exon	2021900	2022107	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "2"; frac "0.469096";
+GL349622	Cufflinks	exon	2022183	2022321	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "3"; frac "0.469096";
+GL349622	Cufflinks	exon	2022426	2022632	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "4"; frac "0.469096";
+GL349622	Cufflinks	exon	2022873	2023046	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "5"; frac "0.469096";
+GL349622	Cufflinks	exon	2023146	2023501	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "6"; frac "0.469096";
+GL349622	Cufflinks	exon	2023769	2023890	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "7"; frac "0.469096";
+GL349622	Cufflinks	exon	2023956	2024335	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "8"; frac "0.469096";
+GL349622	Cufflinks	exon	2024402	2024477	1000	-	.	gene_id "CUFF.135"; transcript_id "CUFF.135.1"; FPKM "0.0400018344"; conf_hi "0.056818"; conf_lo "0.023185"; cov "3.793320"; exon_number "9"; frac "0.469096";
+GL349622	Cufflinks	exon	1758962	1759051	1000	+	.	gene_id "CUFF.164"; transcript_id "CUFF.164.1"; FPKM "0.0615172631"; conf_hi "0.082146"; conf_lo "0.040889"; cov "5.925513"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	1759303	1759407	1000	+	.	gene_id "CUFF.164"; transcript_id "CUFF.164.1"; FPKM "0.0615172631"; conf_hi "0.082146"; conf_lo "0.040889"; cov "5.925513"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	1759497	1760705	1000	+	.	gene_id "CUFF.164"; transcript_id "CUFF.164.1"; FPKM "0.0615172631"; conf_hi "0.082146"; conf_lo "0.040889"; cov "5.925513"; exon_number "3"; frac "1.000000";
+GL349622	Cufflinks	exon	1760786	1760807	1000	+	.	gene_id "CUFF.164"; transcript_id "CUFF.164.1"; FPKM "0.0615172631"; conf_hi "0.082146"; conf_lo "0.040889"; cov "5.925513"; exon_number "4"; frac "1.000000";
+GL349622	Cufflinks	exon	1722435	1722497	1000	+	.	gene_id "CUFF.130"; transcript_id "CUFF.130.1"; FPKM "0.0544636688"; conf_hi "0.084675"; conf_lo "0.024253"; cov "4.870514"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	1723677	1724318	1000	+	.	gene_id "CUFF.130"; transcript_id "CUFF.130.1"; FPKM "0.0544636688"; conf_hi "0.084675"; conf_lo "0.024253"; cov "4.870514"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	1200950	1209113	1000	+	.	gene_id "CUFF.289"; transcript_id "CUFF.289.1"; FPKM "1.5619807989"; conf_hi "1.636876"; conf_lo "1.487085"; cov "150.378205"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	1217207	1218393	1000	+	.	gene_id "CUFF.289"; transcript_id "CUFF.289.1"; FPKM "1.5619807989"; conf_hi "1.636876"; conf_lo "1.487085"; cov "150.378205"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	407420	407912	1000	+	.	gene_id "CUFF.82"; transcript_id "CUFF.82.1"; FPKM "0.0426234238"; conf_hi "0.061439"; conf_lo "0.023808"; cov "4.079788"; exon_number "1"; frac "0.545551";
+GL349622	Cufflinks	exon	408138	409348	1000	+	.	gene_id "CUFF.82"; transcript_id "CUFF.82.1"; FPKM "0.0426234238"; conf_hi "0.061439"; conf_lo "0.023808"; cov "4.079788"; exon_number "2"; frac "0.545551";
+GL349622	Cufflinks	exon	675392	675441	1000	+	.	gene_id "CUFF.91"; transcript_id "CUFF.91.1"; FPKM "0.0251218709"; conf_hi "0.036719"; conf_lo "0.013525"; cov "2.419808"; exon_number "1"; frac "1.000000";
+GL349622	Cufflinks	exon	675736	676224	1000	+	.	gene_id "CUFF.91"; transcript_id "CUFF.91.1"; FPKM "0.0251218709"; conf_hi "0.036719"; conf_lo "0.013525"; cov "2.419808"; exon_number "2"; frac "1.000000";
+GL349622	Cufflinks	exon	676964	677863	1000	+	.	gene_id "CUFF.91"; transcript_id "CUFF.91.1"; FPKM "0.0251218709"; conf_hi "0.036719"; conf_lo "0.013525"; cov "2.419808"; exon_number "3"; frac "1.000000";
+GL349622	Cufflinks	exon	678290	678724	1000	+	.	gene_id "CUFF.91"; transcript_id "CUFF.91.1"; FPKM "0.0251218709"; conf_hi "0.036719"; conf_lo "0.013525"; cov "2.419808"; exon_number "4"; frac "1.000000";
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/initial.gff3	Thu Apr 12 06:05:23 2018 -0400
@@ -0,0 +1,3069 @@
+GL349622	Gnomon	gene	60051	61739	.	-	.	ID=gene116;Dbxref=GeneID:103310714;Name=LOC103310714;gbkey=Gene;gene=LOC103310714;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	60051	61739	.	-	.	ID=rna172;Parent=gene116;Dbxref=GeneID:103310714,Genbank:XM_008189920.1;Name=XM_008189920.1;gbkey=mRNA;gene=LOC103310714;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103310714;transcript_id=XM_008189920.1
+GL349622	Gnomon	exon	61677	61739	.	-	.	ID=id1586;Parent=rna172;Dbxref=GeneID:103310714,Genbank:XM_008189920.1;gbkey=mRNA;gene=LOC103310714;product=uncharacterized LOC103310714;transcript_id=XM_008189920.1
+GL349622	Gnomon	exon	60986	61132	.	-	.	ID=id1587;Parent=rna172;Dbxref=GeneID:103310714,Genbank:XM_008189920.1;gbkey=mRNA;gene=LOC103310714;product=uncharacterized LOC103310714;transcript_id=XM_008189920.1
+GL349622	Gnomon	exon	60051	60518	.	-	.	ID=id1588;Parent=rna172;Dbxref=GeneID:103310714,Genbank:XM_008189920.1;gbkey=mRNA;gene=LOC103310714;product=uncharacterized LOC103310714;transcript_id=XM_008189920.1
+GL349622	Gnomon	CDS	61677	61739	.	-	0	ID=cds159;Parent=rna172;Dbxref=GeneID:103310714,Genbank:XP_008188142.1;Name=XP_008188142.1;gbkey=CDS;gene=LOC103310714;product=uncharacterized protein LOC103310714;protein_id=XP_008188142.1
+GL349622	Gnomon	CDS	60986	61132	.	-	0	ID=cds159;Parent=rna172;Dbxref=GeneID:103310714,Genbank:XP_008188142.1;Name=XP_008188142.1;gbkey=CDS;gene=LOC103310714;product=uncharacterized protein LOC103310714;protein_id=XP_008188142.1
+GL349622	Gnomon	CDS	60051	60518	.	-	0	ID=cds159;Parent=rna172;Dbxref=GeneID:103310714,Genbank:XP_008188142.1;Name=XP_008188142.1;gbkey=CDS;gene=LOC103310714;product=uncharacterized protein LOC103310714;protein_id=XP_008188142.1
+GL349622	Gnomon	gene	199052	202572	.	+	.	ID=gene117;Dbxref=GeneID:107884578;Name=LOC107884578;gbkey=Gene;gene=LOC107884578;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	199052	202572	.	+	.	ID=rna173;Parent=gene117;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;Name=XM_016806997.1;gbkey=mRNA;gene=LOC107884578;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	exon	199052	199675	.	+	.	ID=id1589;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;gbkey=mRNA;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	exon	199809	199934	.	+	.	ID=id1590;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;gbkey=mRNA;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	exon	200024	200167	.	+	.	ID=id1591;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;gbkey=mRNA;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	exon	200266	200325	.	+	.	ID=id1592;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;gbkey=mRNA;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	exon	200605	200864	.	+	.	ID=id1593;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;gbkey=mRNA;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	exon	200928	201090	.	+	.	ID=id1594;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;gbkey=mRNA;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	exon	202380	202572	.	+	.	ID=id1595;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XM_016806997.1;gbkey=mRNA;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;transcript_id=XM_016806997.1
+GL349622	Gnomon	CDS	199225	199675	.	+	0	ID=cds160;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XP_016662486.1;Name=XP_016662486.1;gbkey=CDS;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;protein_id=XP_016662486.1
+GL349622	Gnomon	CDS	199809	199934	.	+	2	ID=cds160;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XP_016662486.1;Name=XP_016662486.1;gbkey=CDS;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;protein_id=XP_016662486.1
+GL349622	Gnomon	CDS	200024	200167	.	+	2	ID=cds160;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XP_016662486.1;Name=XP_016662486.1;gbkey=CDS;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;protein_id=XP_016662486.1
+GL349622	Gnomon	CDS	200266	200325	.	+	2	ID=cds160;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XP_016662486.1;Name=XP_016662486.1;gbkey=CDS;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;protein_id=XP_016662486.1
+GL349622	Gnomon	CDS	200605	200864	.	+	2	ID=cds160;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XP_016662486.1;Name=XP_016662486.1;gbkey=CDS;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;protein_id=XP_016662486.1
+GL349622	Gnomon	CDS	200928	201090	.	+	0	ID=cds160;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XP_016662486.1;Name=XP_016662486.1;gbkey=CDS;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;protein_id=XP_016662486.1
+GL349622	Gnomon	CDS	202380	202489	.	+	2	ID=cds160;Parent=rna173;Dbxref=GeneID:107884578,Genbank:XP_016662486.1;Name=XP_016662486.1;gbkey=CDS;gene=LOC107884578;product=transcription initiation factor TFIID subunit 1-like;protein_id=XP_016662486.1
+GL349622	Gnomon	gene	203530	204174	.	-	.	ID=gene118;Dbxref=GeneID:107884064;Name=LOC107884064;gbkey=Gene;gene=LOC107884064;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	203530	204174	.	-	.	ID=rna174;Parent=gene118;Dbxref=GeneID:107884064,Genbank:XM_016805453.1;Name=XM_016805453.1;gbkey=mRNA;gene=LOC107884064;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=RNA-directed DNA polymerase from mobile element jockey-like;transcript_id=XM_016805453.1
+GL349622	Gnomon	exon	203530	204174	.	-	.	ID=id1596;Parent=rna174;Dbxref=GeneID:107884064,Genbank:XM_016805453.1;gbkey=mRNA;gene=LOC107884064;product=RNA-directed DNA polymerase from mobile element jockey-like;transcript_id=XM_016805453.1
+GL349622	Gnomon	CDS	203530	204174	.	-	0	ID=cds161;Parent=rna174;Dbxref=GeneID:107884064,Genbank:XP_016660942.1;Name=XP_016660942.1;gbkey=CDS;gene=LOC107884064;product=RNA-directed DNA polymerase from mobile element jockey-like;protein_id=XP_016660942.1
+GL349622	Gnomon	gene	211117	212787	.	+	.	ID=gene119;Dbxref=GeneID:103310726;Name=LOC103310726;gbkey=Gene;gene=LOC103310726;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	211117	212787	.	+	.	ID=rna175;Parent=gene119;Dbxref=GeneID:103310726,Genbank:XM_008189963.1;Name=XM_008189963.1;gbkey=mRNA;gene=LOC103310726;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103310726;transcript_id=XM_008189963.1
+GL349622	Gnomon	exon	211117	212787	.	+	.	ID=id1597;Parent=rna175;Dbxref=GeneID:103310726,Genbank:XM_008189963.1;gbkey=mRNA;gene=LOC103310726;product=uncharacterized LOC103310726;transcript_id=XM_008189963.1
+GL349622	Gnomon	CDS	211117	212787	.	+	0	ID=cds162;Parent=rna175;Dbxref=GeneID:103310726,Genbank:XP_008188185.1;Name=XP_008188185.1;gbkey=CDS;gene=LOC103310726;product=uncharacterized protein LOC103310726;protein_id=XP_008188185.1
+GL349622	Gnomon	gene	223060	233978	.	+	.	ID=gene120;Dbxref=GeneID:103310745;Name=LOC103310745;gbkey=Gene;gene=LOC103310745;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	223060	233978	.	+	.	ID=rna176;Parent=gene120;Dbxref=GeneID:103310745,Genbank:XM_008190015.1;Name=XM_008190015.1;gbkey=mRNA;gene=LOC103310745;model_evidence=Supporting evidence includes similarity to: 38 Proteins;product=zinc finger protein 664-like;transcript_id=XM_008190015.1
+GL349622	Gnomon	exon	223060	223106	.	+	.	ID=id1598;Parent=rna176;Dbxref=GeneID:103310745,Genbank:XM_008190015.1;gbkey=mRNA;gene=LOC103310745;product=zinc finger protein 664-like;transcript_id=XM_008190015.1
+GL349622	Gnomon	exon	223242	223433	.	+	.	ID=id1599;Parent=rna176;Dbxref=GeneID:103310745,Genbank:XM_008190015.1;gbkey=mRNA;gene=LOC103310745;product=zinc finger protein 664-like;transcript_id=XM_008190015.1
+GL349622	Gnomon	exon	232916	233978	.	+	.	ID=id1600;Parent=rna176;Dbxref=GeneID:103310745,Genbank:XM_008190015.1;gbkey=mRNA;gene=LOC103310745;product=zinc finger protein 664-like;transcript_id=XM_008190015.1
+GL349622	Gnomon	CDS	223060	223106	.	+	0	ID=cds163;Parent=rna176;Dbxref=GeneID:103310745,Genbank:XP_008188237.1;Name=XP_008188237.1;gbkey=CDS;gene=LOC103310745;product=zinc finger protein 664-like;protein_id=XP_008188237.1
+GL349622	Gnomon	CDS	223242	223433	.	+	1	ID=cds163;Parent=rna176;Dbxref=GeneID:103310745,Genbank:XP_008188237.1;Name=XP_008188237.1;gbkey=CDS;gene=LOC103310745;product=zinc finger protein 664-like;protein_id=XP_008188237.1
+GL349622	Gnomon	CDS	232916	233978	.	+	1	ID=cds163;Parent=rna176;Dbxref=GeneID:103310745,Genbank:XP_008188237.1;Name=XP_008188237.1;gbkey=CDS;gene=LOC103310745;product=zinc finger protein 664-like;protein_id=XP_008188237.1
+GL349622	Gnomon	gene	415564	416313	.	+	.	ID=gene121;Dbxref=GeneID:100570479;Name=LOC100570479;gbkey=Gene;gene=LOC100570479;gene_biotype=lncRNA
+GL349622	Gnomon	ncRNA	415564	416313	.	+	.	ID=rna177;Parent=gene121;Dbxref=GeneID:100570479,Genbank:XR_001680034.1;Name=XR_001680034.1;gbkey=ncRNA;gene=LOC100570479;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 15 samples with support for all annotated introns;ncrna_class=lncRNA;product=uncharacterized LOC100570479;transcript_id=XR_001680034.1
+GL349622	Gnomon	exon	415564	415656	.	+	.	ID=id1601;Parent=rna177;Dbxref=GeneID:100570479,Genbank:XR_001680034.1;gbkey=ncRNA;gene=LOC100570479;ncrna_class=lncRNA;product=uncharacterized LOC100570479;transcript_id=XR_001680034.1
+GL349622	Gnomon	exon	415782	415861	.	+	.	ID=id1602;Parent=rna177;Dbxref=GeneID:100570479,Genbank:XR_001680034.1;gbkey=ncRNA;gene=LOC100570479;ncrna_class=lncRNA;product=uncharacterized LOC100570479;transcript_id=XR_001680034.1
+GL349622	Gnomon	exon	415928	416313	.	+	.	ID=id1603;Parent=rna177;Dbxref=GeneID:100570479,Genbank:XR_001680034.1;gbkey=ncRNA;gene=LOC100570479;ncrna_class=lncRNA;product=uncharacterized LOC100570479;transcript_id=XR_001680034.1
+GL349622	Gnomon	gene	415576	416202	.	-	.	ID=gene122;Dbxref=GeneID:107884592;Name=LOC107884592;gbkey=Gene;gene=LOC107884592;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	415576	416202	.	-	.	ID=rna178;Parent=gene122;Dbxref=GeneID:107884592,Genbank:XM_016807037.1;Name=XM_016807037.1;gbkey=mRNA;gene=LOC107884592;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=uncharacterized LOC107884592;transcript_id=XM_016807037.1
+GL349622	Gnomon	exon	415928	416202	.	-	.	ID=id1604;Parent=rna178;Dbxref=GeneID:107884592,Genbank:XM_016807037.1;gbkey=mRNA;gene=LOC107884592;product=uncharacterized LOC107884592;transcript_id=XM_016807037.1
+GL349622	Gnomon	exon	415782	415861	.	-	.	ID=id1605;Parent=rna178;Dbxref=GeneID:107884592,Genbank:XM_016807037.1;gbkey=mRNA;gene=LOC107884592;product=uncharacterized LOC107884592;transcript_id=XM_016807037.1
+GL349622	Gnomon	exon	415576	415656	.	-	.	ID=id1606;Parent=rna178;Dbxref=GeneID:107884592,Genbank:XM_016807037.1;gbkey=mRNA;gene=LOC107884592;product=uncharacterized LOC107884592;transcript_id=XM_016807037.1
+GL349622	Gnomon	CDS	415928	416187	.	-	0	ID=cds164;Parent=rna178;Dbxref=GeneID:107884592,Genbank:XP_016662526.1;Name=XP_016662526.1;gbkey=CDS;gene=LOC107884592;product=uncharacterized protein LOC107884592;protein_id=XP_016662526.1
+GL349622	Gnomon	CDS	415782	415861	.	-	1	ID=cds164;Parent=rna178;Dbxref=GeneID:107884592,Genbank:XP_016662526.1;Name=XP_016662526.1;gbkey=CDS;gene=LOC107884592;product=uncharacterized protein LOC107884592;protein_id=XP_016662526.1
+GL349622	Gnomon	CDS	415619	415656	.	-	2	ID=cds164;Parent=rna178;Dbxref=GeneID:107884592,Genbank:XP_016662526.1;Name=XP_016662526.1;gbkey=CDS;gene=LOC107884592;product=uncharacterized protein LOC107884592;protein_id=XP_016662526.1
+GL349622	Gnomon	gene	416907	418413	.	-	.	ID=gene123;Dbxref=GeneID:100570170;Name=LOC100570170;gbkey=Gene;gene=LOC100570170;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	416907	418413	.	-	.	ID=rna179;Parent=gene123;Dbxref=GeneID:100570170,Genbank:XM_008185349.2;Name=XM_008185349.2;gbkey=mRNA;gene=LOC100570170;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 14 samples with support for all annotated introns;product=uncharacterized LOC100570170;transcript_id=XM_008185349.2
+GL349622	Gnomon	exon	418362	418413	.	-	.	ID=id1607;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XM_008185349.2;gbkey=mRNA;gene=LOC100570170;product=uncharacterized LOC100570170;transcript_id=XM_008185349.2
+GL349622	Gnomon	exon	418163	418295	.	-	.	ID=id1608;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XM_008185349.2;gbkey=mRNA;gene=LOC100570170;product=uncharacterized LOC100570170;transcript_id=XM_008185349.2
+GL349622	Gnomon	exon	417794	418075	.	-	.	ID=id1609;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XM_008185349.2;gbkey=mRNA;gene=LOC100570170;product=uncharacterized LOC100570170;transcript_id=XM_008185349.2
+GL349622	Gnomon	exon	416907	417723	.	-	.	ID=id1610;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XM_008185349.2;gbkey=mRNA;gene=LOC100570170;product=uncharacterized LOC100570170;transcript_id=XM_008185349.2
+GL349622	Gnomon	CDS	418362	418406	.	-	0	ID=cds165;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XP_008183571.1;Name=XP_008183571.1;gbkey=CDS;gene=LOC100570170;product=uncharacterized protein LOC100570170;protein_id=XP_008183571.1
+GL349622	Gnomon	CDS	418163	418295	.	-	0	ID=cds165;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XP_008183571.1;Name=XP_008183571.1;gbkey=CDS;gene=LOC100570170;product=uncharacterized protein LOC100570170;protein_id=XP_008183571.1
+GL349622	Gnomon	CDS	417794	418075	.	-	2	ID=cds165;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XP_008183571.1;Name=XP_008183571.1;gbkey=CDS;gene=LOC100570170;product=uncharacterized protein LOC100570170;protein_id=XP_008183571.1
+GL349622	Gnomon	CDS	417071	417723	.	-	2	ID=cds165;Parent=rna179;Dbxref=GeneID:100570170,Genbank:XP_008183571.1;Name=XP_008183571.1;gbkey=CDS;gene=LOC100570170;product=uncharacterized protein LOC100570170;protein_id=XP_008183571.1
+GL349622	Gnomon	gene	451428	451723	.	-	.	ID=gene124;Dbxref=GeneID:107884604;Name=LOC107884604;gbkey=Gene;gene=LOC107884604;gene_biotype=lncRNA
+GL349622	Gnomon	ncRNA	451428	451723	.	-	.	ID=rna180;Parent=gene124;Dbxref=GeneID:107884604,Genbank:XR_001680043.1;Name=XR_001680043.1;gbkey=ncRNA;gene=LOC107884604;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;ncrna_class=lncRNA;product=uncharacterized LOC107884604;transcript_id=XR_001680043.1
+GL349622	Gnomon	exon	451551	451723	.	-	.	ID=id1611;Parent=rna180;Dbxref=GeneID:107884604,Genbank:XR_001680043.1;gbkey=ncRNA;gene=LOC107884604;ncrna_class=lncRNA;product=uncharacterized LOC107884604;transcript_id=XR_001680043.1
+GL349622	Gnomon	exon	451428	451463	.	-	.	ID=id1612;Parent=rna180;Dbxref=GeneID:107884604,Genbank:XR_001680043.1;gbkey=ncRNA;gene=LOC107884604;ncrna_class=lncRNA;product=uncharacterized LOC107884604;transcript_id=XR_001680043.1
+GL349622	Gnomon	gene	504289	507047	.	+	.	ID=gene125;Dbxref=GeneID:103310757;Name=LOC103310757;gbkey=Gene;gene=LOC103310757;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	504289	507047	.	+	.	ID=rna181;Parent=gene125;Dbxref=GeneID:103310757,Genbank:XM_016807321.1;Name=XM_016807321.1;gbkey=mRNA;gene=LOC103310757;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 4 samples with support for all annotated introns;product=uncharacterized LOC103310757%2C transcript variant X1;transcript_id=XM_016807321.1
+GL349622	Gnomon	exon	504289	504776	.	+	.	ID=id1613;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XM_016807321.1;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X1;transcript_id=XM_016807321.1
+GL349622	Gnomon	exon	504994	505373	.	+	.	ID=id1614;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XM_016807321.1;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X1;transcript_id=XM_016807321.1
+GL349622	Gnomon	exon	506020	506223	.	+	.	ID=id1615;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XM_016807321.1;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X1;transcript_id=XM_016807321.1
+GL349622	Gnomon	exon	506448	506799	.	+	.	ID=id1616;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XM_016807321.1;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X1;transcript_id=XM_016807321.1
+GL349622	Gnomon	exon	506916	507047	.	+	.	ID=id1617;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XM_016807321.1;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X1;transcript_id=XM_016807321.1
+GL349622	Gnomon	mRNA	504289	507047	.	+	.	ID=rna182;Parent=gene125;Dbxref=GeneID:103310757,Genbank:XM_008190069.2;Name=XM_008190069.2;gbkey=mRNA;gene=LOC103310757;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 6 samples with support for all annotated introns;product=uncharacterized LOC103310757%2C transcript variant X2;transcript_id=XM_008190069.2
+GL349622	Gnomon	exon	504289	504776	.	+	.	ID=id1618;Parent=rna182;Dbxref=GeneID:103310757,Genbank:XM_008190069.2;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X2;transcript_id=XM_008190069.2
+GL349622	Gnomon	exon	504994	505373	.	+	.	ID=id1619;Parent=rna182;Dbxref=GeneID:103310757,Genbank:XM_008190069.2;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X2;transcript_id=XM_008190069.2
+GL349622	Gnomon	exon	506448	506799	.	+	.	ID=id1620;Parent=rna182;Dbxref=GeneID:103310757,Genbank:XM_008190069.2;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X2;transcript_id=XM_008190069.2
+GL349622	Gnomon	exon	506916	507047	.	+	.	ID=id1621;Parent=rna182;Dbxref=GeneID:103310757,Genbank:XM_008190069.2;gbkey=mRNA;gene=LOC103310757;product=uncharacterized LOC103310757%2C transcript variant X2;transcript_id=XM_008190069.2
+GL349622	Gnomon	CDS	504591	504776	.	+	0	ID=cds166;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XP_016662810.1;Name=XP_016662810.1;gbkey=CDS;gene=LOC103310757;product=uncharacterized protein LOC103310757 isoform X1;protein_id=XP_016662810.1
+GL349622	Gnomon	CDS	504994	505373	.	+	0	ID=cds166;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XP_016662810.1;Name=XP_016662810.1;gbkey=CDS;gene=LOC103310757;product=uncharacterized protein LOC103310757 isoform X1;protein_id=XP_016662810.1
+GL349622	Gnomon	CDS	506020	506223	.	+	1	ID=cds166;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XP_016662810.1;Name=XP_016662810.1;gbkey=CDS;gene=LOC103310757;product=uncharacterized protein LOC103310757 isoform X1;protein_id=XP_016662810.1
+GL349622	Gnomon	CDS	506448	506721	.	+	1	ID=cds166;Parent=rna181;Dbxref=GeneID:103310757,Genbank:XP_016662810.1;Name=XP_016662810.1;gbkey=CDS;gene=LOC103310757;product=uncharacterized protein LOC103310757 isoform X1;protein_id=XP_016662810.1
+GL349622	Gnomon	CDS	504591	504776	.	+	0	ID=cds167;Parent=rna182;Dbxref=GeneID:103310757,Genbank:XP_008188291.1;Name=XP_008188291.1;gbkey=CDS;gene=LOC103310757;product=uncharacterized protein LOC103310757 isoform X2;protein_id=XP_008188291.1
+GL349622	Gnomon	CDS	504994	505373	.	+	0	ID=cds167;Parent=rna182;Dbxref=GeneID:103310757,Genbank:XP_008188291.1;Name=XP_008188291.1;gbkey=CDS;gene=LOC103310757;product=uncharacterized protein LOC103310757 isoform X2;protein_id=XP_008188291.1
+GL349622	Gnomon	CDS	506448	506721	.	+	1	ID=cds167;Parent=rna182;Dbxref=GeneID:103310757,Genbank:XP_008188291.1;Name=XP_008188291.1;gbkey=CDS;gene=LOC103310757;product=uncharacterized protein LOC103310757 isoform X2;protein_id=XP_008188291.1
+GL349622	Gnomon	gene	547736	571951	.	-	.	ID=gene126;Dbxref=GeneID:100570440;Name=LOC100570440;gbkey=Gene;gene=LOC100570440;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	547736	571951	.	-	.	ID=rna183;Parent=gene126;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;Name=XM_016807415.1;gbkey=mRNA;gene=LOC100570440;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 9 samples with support for all annotated introns;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	571581	571951	.	-	.	ID=id1622;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	570772	570966	.	-	.	ID=id1623;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	570405	570506	.	-	.	ID=id1624;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	570136	570240	.	-	.	ID=id1625;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	568973	569071	.	-	.	ID=id1626;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	568804	568839	.	-	.	ID=id1627;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	568688	568723	.	-	.	ID=id1628;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	568539	568577	.	-	.	ID=id1629;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	565905	566054	.	-	.	ID=id1630;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	564565	564837	.	-	.	ID=id1631;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	563237	563317	.	-	.	ID=id1632;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	560202	560282	.	-	.	ID=id1633;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	553032	553100	.	-	.	ID=id1634;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	551634	551717	.	-	.	ID=id1635;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	551324	551437	.	-	.	ID=id1636;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	550954	551263	.	-	.	ID=id1637;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	550708	550883	.	-	.	ID=id1638;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	549954	550495	.	-	.	ID=id1639;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	exon	547736	548196	.	-	.	ID=id1640;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XM_016807415.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X3;transcript_id=XM_016807415.1
+GL349622	Gnomon	mRNA	547736	571951	.	-	.	ID=rna184;Parent=gene126;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;Name=XM_016807394.1;gbkey=mRNA;gene=LOC100570440;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	571581	571951	.	-	.	ID=id1641;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	570772	570966	.	-	.	ID=id1642;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	570405	570506	.	-	.	ID=id1643;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	570136	570240	.	-	.	ID=id1644;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	568973	569071	.	-	.	ID=id1645;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	568804	568839	.	-	.	ID=id1646;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	568688	568723	.	-	.	ID=id1647;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	568539	568577	.	-	.	ID=id1648;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	565905	566054	.	-	.	ID=id1649;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	564565	564837	.	-	.	ID=id1650;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	563237	563317	.	-	.	ID=id1651;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	560202	560282	.	-	.	ID=id1652;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	558967	559047	.	-	.	ID=id1653;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	558666	558746	.	-	.	ID=id1654;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	551634	551717	.	-	.	ID=id1655;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	551324	551437	.	-	.	ID=id1656;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	550954	551263	.	-	.	ID=id1657;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	550708	550883	.	-	.	ID=id1658;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	549954	550495	.	-	.	ID=id1659;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	exon	547736	548196	.	-	.	ID=id1660;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XM_016807394.1;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X2;transcript_id=XM_016807394.1
+GL349622	Gnomon	mRNA	547736	571951	.	-	.	ID=rna185;Parent=gene126;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;Name=XM_008185407.2;gbkey=mRNA;gene=LOC100570440;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	571581	571951	.	-	.	ID=id1661;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	570772	570966	.	-	.	ID=id1662;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	570405	570506	.	-	.	ID=id1663;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	570136	570240	.	-	.	ID=id1664;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	568973	569071	.	-	.	ID=id1665;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	568804	568839	.	-	.	ID=id1666;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	568688	568723	.	-	.	ID=id1667;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	568539	568577	.	-	.	ID=id1668;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	565905	566054	.	-	.	ID=id1669;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	564565	564837	.	-	.	ID=id1670;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	563237	563317	.	-	.	ID=id1671;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	560202	560282	.	-	.	ID=id1672;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	558967	559047	.	-	.	ID=id1673;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	558666	558746	.	-	.	ID=id1674;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	553032	553100	.	-	.	ID=id1675;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	551634	551717	.	-	.	ID=id1676;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	551324	551437	.	-	.	ID=id1677;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	550954	551263	.	-	.	ID=id1678;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	550708	550883	.	-	.	ID=id1679;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	549954	550495	.	-	.	ID=id1680;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	exon	547736	548196	.	-	.	ID=id1681;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XM_008185407.2;gbkey=mRNA;gene=LOC100570440;product=uncharacterized LOC100570440%2C transcript variant X1;transcript_id=XM_008185407.2
+GL349622	Gnomon	CDS	571581	571600	.	-	0	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	570772	570966	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	570405	570506	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	570136	570240	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	568973	569071	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	568804	568839	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	568688	568723	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	568539	568577	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	565905	566054	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	564565	564837	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	563237	563317	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	560202	560282	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	553032	553100	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	551634	551717	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	551324	551437	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	550954	551263	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	550708	550883	.	-	0	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	549954	550495	.	-	1	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	548180	548196	.	-	2	ID=cds168;Parent=rna183;Dbxref=GeneID:100570440,Genbank:XP_016662904.1;Name=XP_016662904.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X3;protein_id=XP_016662904.1
+GL349622	Gnomon	CDS	571581	571600	.	-	0	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	570772	570966	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	570405	570506	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	570136	570240	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	568973	569071	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	568804	568839	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	568688	568723	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	568539	568577	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	565905	566054	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	564565	564837	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	563237	563317	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	560202	560282	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	558967	559047	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	558666	558746	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	551634	551717	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	551324	551437	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	550954	551263	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	550708	550883	.	-	0	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	549954	550495	.	-	1	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	548180	548196	.	-	2	ID=cds169;Parent=rna184;Dbxref=GeneID:100570440,Genbank:XP_016662883.1;Name=XP_016662883.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X2;protein_id=XP_016662883.1
+GL349622	Gnomon	CDS	571581	571600	.	-	0	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	570772	570966	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	570405	570506	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	570136	570240	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	568973	569071	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	568804	568839	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	568688	568723	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	568539	568577	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	565905	566054	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	564565	564837	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	563237	563317	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	560202	560282	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	558967	559047	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	558666	558746	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	553032	553100	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	551634	551717	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	551324	551437	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	550954	551263	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	550708	550883	.	-	0	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	549954	550495	.	-	1	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	CDS	548180	548196	.	-	2	ID=cds170;Parent=rna185;Dbxref=GeneID:100570440,Genbank:XP_008183629.1;Name=XP_008183629.1;gbkey=CDS;gene=LOC100570440;product=uncharacterized protein LOC100570440 isoform X1;protein_id=XP_008183629.1
+GL349622	Gnomon	gene	578287	602175	.	+	.	ID=gene127;Dbxref=APHIDBASE:ACYPI006159,GeneID:100165198;Name=LOC100165198;gbkey=Gene;gene=LOC100165198;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	578287	602175	.	+	.	ID=rna186;Parent=gene127;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;Name=XM_001944566.4;gbkey=mRNA;gene=LOC100165198;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	578287	578579	.	+	.	ID=id1682;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	590277	590375	.	+	.	ID=id1683;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	591673	591703	.	+	.	ID=id1684;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	591788	591943	.	+	.	ID=id1685;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	592013	592157	.	+	.	ID=id1686;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	592403	592571	.	+	.	ID=id1687;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	592654	592830	.	+	.	ID=id1688;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	593274	593430	.	+	.	ID=id1689;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	593960	594229	.	+	.	ID=id1690;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	594316	594486	.	+	.	ID=id1691;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	595739	595847	.	+	.	ID=id1692;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	595999	596179	.	+	.	ID=id1693;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	596242	596254	.	+	.	ID=id1694;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	596403	596477	.	+	.	ID=id1695;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	596557	596715	.	+	.	ID=id1696;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	601732	601928	.	+	.	ID=id1697;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	exon	601999	602175	.	+	.	ID=id1698;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XM_001944566.4,APHIDBASE:ACYPI006159;gbkey=mRNA;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;transcript_id=XM_001944566.4
+GL349622	Gnomon	CDS	590283	590375	.	+	0	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	591673	591703	.	+	0	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	591788	591943	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	592013	592157	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	592403	592571	.	+	1	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	592654	592830	.	+	0	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	593274	593430	.	+	0	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	593960	594229	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	594316	594486	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	595739	595847	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	595999	596179	.	+	1	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	596242	596254	.	+	0	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	596403	596477	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	596557	596715	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	601732	601928	.	+	2	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	CDS	601999	602175	.	+	0	ID=cds171;Parent=rna186;Dbxref=GeneID:100165198,Genbank:XP_001944601.2,APHIDBASE:ACYPI006159;Name=XP_001944601.2;gbkey=CDS;gene=LOC100165198;product=MAM and LDL-receptor class A domain-containing protein 1;protein_id=XP_001944601.2
+GL349622	Gnomon	gene	619899	647511	.	+	.	ID=gene128;Dbxref=APHIDBASE:ACYPI006269,GeneID:100165312;Name=LOC100165312;gbkey=Gene;gene=LOC100165312;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	619899	647511	.	+	.	ID=rna187;Parent=gene128;Dbxref=GeneID:100165312,Genbank:XM_001946731.4,APHIDBASE:ACYPI006269;Name=XM_001946731.4;gbkey=mRNA;gene=LOC100165312;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 23 samples with support for all annotated introns;product=uncharacterized LOC100165312;transcript_id=XM_001946731.4
+GL349622	Gnomon	exon	619899	620361	.	+	.	ID=id1699;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XM_001946731.4,APHIDBASE:ACYPI006269;gbkey=mRNA;gene=LOC100165312;product=uncharacterized LOC100165312;transcript_id=XM_001946731.4
+GL349622	Gnomon	exon	626956	627266	.	+	.	ID=id1700;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XM_001946731.4,APHIDBASE:ACYPI006269;gbkey=mRNA;gene=LOC100165312;product=uncharacterized LOC100165312;transcript_id=XM_001946731.4
+GL349622	Gnomon	exon	630799	630939	.	+	.	ID=id1701;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XM_001946731.4,APHIDBASE:ACYPI006269;gbkey=mRNA;gene=LOC100165312;product=uncharacterized LOC100165312;transcript_id=XM_001946731.4
+GL349622	Gnomon	exon	636528	637029	.	+	.	ID=id1702;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XM_001946731.4,APHIDBASE:ACYPI006269;gbkey=mRNA;gene=LOC100165312;product=uncharacterized LOC100165312;transcript_id=XM_001946731.4
+GL349622	Gnomon	exon	646936	647511	.	+	.	ID=id1703;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XM_001946731.4,APHIDBASE:ACYPI006269;gbkey=mRNA;gene=LOC100165312;product=uncharacterized LOC100165312;transcript_id=XM_001946731.4
+GL349622	Gnomon	CDS	626969	627266	.	+	0	ID=cds172;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XP_001946766.1,APHIDBASE:ACYPI006269;Name=XP_001946766.1;gbkey=CDS;gene=LOC100165312;product=uncharacterized protein LOC100165312;protein_id=XP_001946766.1
+GL349622	Gnomon	CDS	630799	630939	.	+	2	ID=cds172;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XP_001946766.1,APHIDBASE:ACYPI006269;Name=XP_001946766.1;gbkey=CDS;gene=LOC100165312;product=uncharacterized protein LOC100165312;protein_id=XP_001946766.1
+GL349622	Gnomon	CDS	636528	637029	.	+	2	ID=cds172;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XP_001946766.1,APHIDBASE:ACYPI006269;Name=XP_001946766.1;gbkey=CDS;gene=LOC100165312;product=uncharacterized protein LOC100165312;protein_id=XP_001946766.1
+GL349622	Gnomon	CDS	646936	647167	.	+	1	ID=cds172;Parent=rna187;Dbxref=GeneID:100165312,Genbank:XP_001946766.1,APHIDBASE:ACYPI006269;Name=XP_001946766.1;gbkey=CDS;gene=LOC100165312;product=uncharacterized protein LOC100165312;protein_id=XP_001946766.1
+GL349622	Gnomon	gene	650139	652839	.	+	.	ID=gene129;Dbxref=GeneID:100570640;Name=LOC100570640;gbkey=Gene;gene=LOC100570640;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	650139	652839	.	+	.	ID=rna188;Parent=gene129;Dbxref=GeneID:100570640,Genbank:XM_016805640.1;Name=XM_016805640.1;gbkey=mRNA;gene=LOC100570640;model_evidence=Supporting evidence includes similarity to: 83%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC100570640;transcript_id=XM_016805640.1
+GL349622	Gnomon	exon	650139	650554	.	+	.	ID=id1704;Parent=rna188;Dbxref=GeneID:100570640,Genbank:XM_016805640.1;gbkey=mRNA;gene=LOC100570640;product=uncharacterized LOC100570640;transcript_id=XM_016805640.1
+GL349622	Gnomon	exon	651640	652449	.	+	.	ID=id1705;Parent=rna188;Dbxref=GeneID:100570640,Genbank:XM_016805640.1;gbkey=mRNA;gene=LOC100570640;product=uncharacterized LOC100570640;transcript_id=XM_016805640.1
+GL349622	Gnomon	exon	652625	652839	.	+	.	ID=id1706;Parent=rna188;Dbxref=GeneID:100570640,Genbank:XM_016805640.1;gbkey=mRNA;gene=LOC100570640;product=uncharacterized LOC100570640;transcript_id=XM_016805640.1
+GL349622	Gnomon	CDS	650139	650554	.	+	0	ID=cds173;Parent=rna188;Dbxref=GeneID:100570640,Genbank:XP_016661129.1;Name=XP_016661129.1;gbkey=CDS;gene=LOC100570640;product=uncharacterized protein LOC100570640;protein_id=XP_016661129.1
+GL349622	Gnomon	CDS	651640	652449	.	+	1	ID=cds173;Parent=rna188;Dbxref=GeneID:100570640,Genbank:XP_016661129.1;Name=XP_016661129.1;gbkey=CDS;gene=LOC100570640;product=uncharacterized protein LOC100570640;protein_id=XP_016661129.1
+GL349622	Gnomon	CDS	652625	652808	.	+	1	ID=cds173;Parent=rna188;Dbxref=GeneID:100570640,Genbank:XP_016661129.1;Name=XP_016661129.1;gbkey=CDS;gene=LOC100570640;product=uncharacterized protein LOC100570640;protein_id=XP_016661129.1
+GL349622	Gnomon	gene	660123	672248	.	+	.	ID=gene130;Dbxref=GeneID:107882164;Name=LOC107882164;gbkey=Gene;gene=LOC107882164;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	660123	672248	.	+	.	ID=rna189;Parent=gene130;Dbxref=GeneID:107882164,Genbank:XM_016807544.1;Name=XM_016807544.1;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X4;transcript_id=XM_016807544.1
+GL349622	Gnomon	exon	660123	660287	.	+	.	ID=id1707;Parent=rna189;Dbxref=GeneID:107882164,Genbank:XM_016807544.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X4;transcript_id=XM_016807544.1
+GL349622	Gnomon	exon	666379	666997	.	+	.	ID=id1708;Parent=rna189;Dbxref=GeneID:107882164,Genbank:XM_016807544.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X4;transcript_id=XM_016807544.1
+GL349622	Gnomon	exon	668439	669398	.	+	.	ID=id1709;Parent=rna189;Dbxref=GeneID:107882164,Genbank:XM_016807544.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X4;transcript_id=XM_016807544.1
+GL349622	Gnomon	exon	671791	672248	.	+	.	ID=id1710;Parent=rna189;Dbxref=GeneID:107882164,Genbank:XM_016807544.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X4;transcript_id=XM_016807544.1
+GL349622	Gnomon	mRNA	665786	672248	.	+	.	ID=rna190;Parent=gene130;Dbxref=GeneID:107882164,Genbank:XM_016807494.1;Name=XM_016807494.1;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X2;transcript_id=XM_016807494.1
+GL349622	Gnomon	exon	665786	665989	.	+	.	ID=id1711;Parent=rna190;Dbxref=GeneID:107882164,Genbank:XM_016807494.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X2;transcript_id=XM_016807494.1
+GL349622	Gnomon	exon	666269	666997	.	+	.	ID=id1712;Parent=rna190;Dbxref=GeneID:107882164,Genbank:XM_016807494.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X2;transcript_id=XM_016807494.1
+GL349622	Gnomon	exon	668439	669398	.	+	.	ID=id1713;Parent=rna190;Dbxref=GeneID:107882164,Genbank:XM_016807494.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X2;transcript_id=XM_016807494.1
+GL349622	Gnomon	exon	671791	672248	.	+	.	ID=id1714;Parent=rna190;Dbxref=GeneID:107882164,Genbank:XM_016807494.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X2;transcript_id=XM_016807494.1
+GL349622	Gnomon	mRNA	665786	672248	.	+	.	ID=rna191;Parent=gene130;Dbxref=GeneID:107882164,Genbank:XM_016807512.1;Name=XM_016807512.1;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X3;transcript_id=XM_016807512.1
+GL349622	Gnomon	exon	665786	665989	.	+	.	ID=id1715;Parent=rna191;Dbxref=GeneID:107882164,Genbank:XM_016807512.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X3;transcript_id=XM_016807512.1
+GL349622	Gnomon	exon	666379	666997	.	+	.	ID=id1716;Parent=rna191;Dbxref=GeneID:107882164,Genbank:XM_016807512.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X3;transcript_id=XM_016807512.1
+GL349622	Gnomon	exon	668439	669398	.	+	.	ID=id1717;Parent=rna191;Dbxref=GeneID:107882164,Genbank:XM_016807512.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X3;transcript_id=XM_016807512.1
+GL349622	Gnomon	exon	671791	672248	.	+	.	ID=id1718;Parent=rna191;Dbxref=GeneID:107882164,Genbank:XM_016807512.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X3;transcript_id=XM_016807512.1
+GL349622	Gnomon	mRNA	666164	672248	.	+	.	ID=rna192;Parent=gene130;Dbxref=GeneID:107882164,Genbank:XM_016807480.1;Name=XM_016807480.1;gbkey=mRNA;gene=LOC107882164;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=uncharacterized LOC107882164%2C transcript variant X1;transcript_id=XM_016807480.1
+GL349622	Gnomon	exon	666164	666997	.	+	.	ID=id1719;Parent=rna192;Dbxref=GeneID:107882164,Genbank:XM_016807480.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X1;transcript_id=XM_016807480.1
+GL349622	Gnomon	exon	668439	669398	.	+	.	ID=id1720;Parent=rna192;Dbxref=GeneID:107882164,Genbank:XM_016807480.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X1;transcript_id=XM_016807480.1
+GL349622	Gnomon	exon	671791	672248	.	+	.	ID=id1721;Parent=rna192;Dbxref=GeneID:107882164,Genbank:XM_016807480.1;gbkey=mRNA;gene=LOC107882164;product=uncharacterized LOC107882164%2C transcript variant X1;transcript_id=XM_016807480.1
+GL349622	Gnomon	CDS	666339	666997	.	+	0	ID=cds174;Parent=rna192;Dbxref=GeneID:107882164,Genbank:XP_016662969.1;Name=XP_016662969.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X1;protein_id=XP_016662969.1
+GL349622	Gnomon	CDS	668439	669398	.	+	1	ID=cds174;Parent=rna192;Dbxref=GeneID:107882164,Genbank:XP_016662969.1;Name=XP_016662969.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X1;protein_id=XP_016662969.1
+GL349622	Gnomon	CDS	671791	671989	.	+	1	ID=cds174;Parent=rna192;Dbxref=GeneID:107882164,Genbank:XP_016662969.1;Name=XP_016662969.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X1;protein_id=XP_016662969.1
+GL349622	Gnomon	CDS	666339	666997	.	+	0	ID=cds175;Parent=rna190;Dbxref=GeneID:107882164,Genbank:XP_016662983.1;Name=XP_016662983.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X1;protein_id=XP_016662983.1
+GL349622	Gnomon	CDS	668439	669398	.	+	1	ID=cds175;Parent=rna190;Dbxref=GeneID:107882164,Genbank:XP_016662983.1;Name=XP_016662983.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X1;protein_id=XP_016662983.1
+GL349622	Gnomon	CDS	671791	671989	.	+	1	ID=cds175;Parent=rna190;Dbxref=GeneID:107882164,Genbank:XP_016662983.1;Name=XP_016662983.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X1;protein_id=XP_016662983.1
+GL349622	Gnomon	CDS	666426	666997	.	+	0	ID=cds176;Parent=rna191;Dbxref=GeneID:107882164,Genbank:XP_016663001.1;Name=XP_016663001.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X2;protein_id=XP_016663001.1
+GL349622	Gnomon	CDS	668439	669398	.	+	1	ID=cds176;Parent=rna191;Dbxref=GeneID:107882164,Genbank:XP_016663001.1;Name=XP_016663001.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X2;protein_id=XP_016663001.1
+GL349622	Gnomon	CDS	671791	671989	.	+	1	ID=cds176;Parent=rna191;Dbxref=GeneID:107882164,Genbank:XP_016663001.1;Name=XP_016663001.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X2;protein_id=XP_016663001.1
+GL349622	Gnomon	CDS	666426	666997	.	+	0	ID=cds177;Parent=rna189;Dbxref=GeneID:107882164,Genbank:XP_016663033.1;Name=XP_016663033.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X2;protein_id=XP_016663033.1
+GL349622	Gnomon	CDS	668439	669398	.	+	1	ID=cds177;Parent=rna189;Dbxref=GeneID:107882164,Genbank:XP_016663033.1;Name=XP_016663033.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X2;protein_id=XP_016663033.1
+GL349622	Gnomon	CDS	671791	671989	.	+	1	ID=cds177;Parent=rna189;Dbxref=GeneID:107882164,Genbank:XP_016663033.1;Name=XP_016663033.1;gbkey=CDS;gene=LOC107882164;product=uncharacterized protein LOC107882164 isoform X2;protein_id=XP_016663033.1
+GL349622	Gnomon	gene	683696	684784	.	+	.	ID=gene131;Dbxref=GeneID:103310837;Name=LOC103310837;gbkey=Gene;gene=LOC103310837;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	683696	684784	.	+	.	ID=rna193;Parent=gene131;Dbxref=GeneID:103310837,Genbank:XM_008190239.1;Name=XM_008190239.1;gbkey=mRNA;gene=LOC103310837;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC103310837;transcript_id=XM_008190239.1
+GL349622	Gnomon	exon	683696	684784	.	+	.	ID=id1722;Parent=rna193;Dbxref=GeneID:103310837,Genbank:XM_008190239.1;gbkey=mRNA;gene=LOC103310837;product=uncharacterized LOC103310837;transcript_id=XM_008190239.1
+GL349622	Gnomon	CDS	683696	684784	.	+	0	ID=cds178;Parent=rna193;Dbxref=GeneID:103310837,Genbank:XP_008188461.1;Name=XP_008188461.1;gbkey=CDS;gene=LOC103310837;product=uncharacterized protein LOC103310837;protein_id=XP_008188461.1
+GL349622	Gnomon	gene	684884	685537	.	+	.	ID=gene132;Dbxref=GeneID:103310859;Name=LOC103310859;gbkey=Gene;gene=LOC103310859;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	684884	685537	.	+	.	ID=rna194;Parent=gene132;Dbxref=GeneID:103310859,Genbank:XM_008190308.1;Name=XM_008190308.1;gbkey=mRNA;gene=LOC103310859;model_evidence=Supporting evidence includes similarity to: 4 Proteins;product=uncharacterized LOC103310859;transcript_id=XM_008190308.1
+GL349622	Gnomon	exon	684884	684971	.	+	.	ID=id1723;Parent=rna194;Dbxref=GeneID:103310859,Genbank:XM_008190308.1;gbkey=mRNA;gene=LOC103310859;product=uncharacterized LOC103310859;transcript_id=XM_008190308.1
+GL349622	Gnomon	exon	685041	685537	.	+	.	ID=id1724;Parent=rna194;Dbxref=GeneID:103310859,Genbank:XM_008190308.1;gbkey=mRNA;gene=LOC103310859;product=uncharacterized LOC103310859;transcript_id=XM_008190308.1
+GL349622	Gnomon	CDS	684884	684971	.	+	0	ID=cds179;Parent=rna194;Dbxref=GeneID:103310859,Genbank:XP_008188530.1;Name=XP_008188530.1;gbkey=CDS;gene=LOC103310859;product=uncharacterized protein LOC103310859;protein_id=XP_008188530.1
+GL349622	Gnomon	CDS	685041	685537	.	+	2	ID=cds179;Parent=rna194;Dbxref=GeneID:103310859,Genbank:XP_008188530.1;Name=XP_008188530.1;gbkey=CDS;gene=LOC103310859;product=uncharacterized protein LOC103310859;protein_id=XP_008188530.1
+GL349622	Gnomon	gene	737688	740892	.	-	.	ID=gene133;Dbxref=GeneID:100570737;Name=LOC100570737;gbkey=Gene;gene=LOC100570737;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	737688	740892	.	-	.	ID=rna195;Parent=gene133;Dbxref=GeneID:100570737,Genbank:XM_008190376.2;Name=XM_008190376.2;gbkey=mRNA;gene=LOC100570737;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=kelch-like protein 2;transcript_id=XM_008190376.2
+GL349622	Gnomon	exon	740651	740892	.	-	.	ID=id1725;Parent=rna195;Dbxref=GeneID:100570737,Genbank:XM_008190376.2;gbkey=mRNA;gene=LOC100570737;product=kelch-like protein 2;transcript_id=XM_008190376.2
+GL349622	Gnomon	exon	738154	738309	.	-	.	ID=id1726;Parent=rna195;Dbxref=GeneID:100570737,Genbank:XM_008190376.2;gbkey=mRNA;gene=LOC100570737;product=kelch-like protein 2;transcript_id=XM_008190376.2
+GL349622	Gnomon	exon	737866	738094	.	-	.	ID=id1727;Parent=rna195;Dbxref=GeneID:100570737,Genbank:XM_008190376.2;gbkey=mRNA;gene=LOC100570737;product=kelch-like protein 2;transcript_id=XM_008190376.2
+GL349622	Gnomon	exon	737688	737792	.	-	.	ID=id1728;Parent=rna195;Dbxref=GeneID:100570737,Genbank:XM_008190376.2;gbkey=mRNA;gene=LOC100570737;product=kelch-like protein 2;transcript_id=XM_008190376.2
+GL349622	Gnomon	CDS	738154	738263	.	-	0	ID=cds180;Parent=rna195;Dbxref=GeneID:100570737,Genbank:XP_008188598.1;Name=XP_008188598.1;gbkey=CDS;gene=LOC100570737;product=kelch-like protein 2;protein_id=XP_008188598.1
+GL349622	Gnomon	CDS	737866	738094	.	-	1	ID=cds180;Parent=rna195;Dbxref=GeneID:100570737,Genbank:XP_008188598.1;Name=XP_008188598.1;gbkey=CDS;gene=LOC100570737;product=kelch-like protein 2;protein_id=XP_008188598.1
+GL349622	Gnomon	CDS	737688	737792	.	-	0	ID=cds180;Parent=rna195;Dbxref=GeneID:100570737,Genbank:XP_008188598.1;Name=XP_008188598.1;gbkey=CDS;gene=LOC100570737;product=kelch-like protein 2;protein_id=XP_008188598.1
+GL349622	Gnomon	gene	773336	779122	.	+	.	ID=gene134;Dbxref=GeneID:100570804;Name=LOC100570804;gbkey=Gene;gene=LOC100570804;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	773336	779122	.	+	.	ID=rna196;Parent=gene134;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;Name=XM_008185549.2;gbkey=mRNA;gene=LOC100570804;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	773336	773539	.	+	.	ID=id1729;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	774628	774801	.	+	.	ID=id1730;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	774865	775176	.	+	.	ID=id1731;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	776623	776807	.	+	.	ID=id1732;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	776869	776968	.	+	.	ID=id1733;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	777034	777215	.	+	.	ID=id1734;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	777273	777567	.	+	.	ID=id1735;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	777648	777863	.	+	.	ID=id1736;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	777981	778313	.	+	.	ID=id1737;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	exon	779023	779122	.	+	.	ID=id1738;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XM_008185549.2;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X2;transcript_id=XM_008185549.2
+GL349622	Gnomon	mRNA	773336	778380	.	+	.	ID=rna197;Parent=gene134;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;Name=XM_003240034.3;gbkey=mRNA;gene=LOC100570804;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	773336	773539	.	+	.	ID=id1739;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	774628	774801	.	+	.	ID=id1740;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	774865	775176	.	+	.	ID=id1741;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	776623	776807	.	+	.	ID=id1742;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	776869	776968	.	+	.	ID=id1743;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	777034	777215	.	+	.	ID=id1744;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	777273	777567	.	+	.	ID=id1745;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	777648	777863	.	+	.	ID=id1746;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	exon	777981	778380	.	+	.	ID=id1747;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XM_003240034.3;gbkey=mRNA;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like%2C transcript variant X1;transcript_id=XM_003240034.3
+GL349622	Gnomon	CDS	773411	773539	.	+	0	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	774628	774801	.	+	0	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	774865	775176	.	+	0	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	776623	776807	.	+	0	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	776869	776968	.	+	1	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	777034	777215	.	+	0	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	777273	777567	.	+	1	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	777648	777863	.	+	0	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	777981	778295	.	+	0	ID=cds181;Parent=rna197;Dbxref=GeneID:100570804,Genbank:XP_003240082.1;Name=XP_003240082.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_003240082.1
+GL349622	Gnomon	CDS	773411	773539	.	+	0	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	774628	774801	.	+	0	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	774865	775176	.	+	0	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	776623	776807	.	+	0	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	776869	776968	.	+	1	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	777034	777215	.	+	0	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	777273	777567	.	+	1	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	777648	777863	.	+	0	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	CDS	777981	778295	.	+	0	ID=cds182;Parent=rna196;Dbxref=GeneID:100570804,Genbank:XP_008183771.1;Name=XP_008183771.1;gbkey=CDS;gene=LOC100570804;product=cytadherence high molecular weight protein 2-like;protein_id=XP_008183771.1
+GL349622	Gnomon	gene	781854	783818	.	+	.	ID=gene135;Dbxref=GeneID:107884180;Name=LOC107884180;gbkey=Gene;gene=LOC107884180;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	781854	783818	.	+	.	ID=rna198;Parent=gene135;Dbxref=GeneID:107884180,Genbank:XM_016805810.1;Name=XM_016805810.1;gbkey=mRNA;gene=LOC107884180;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC107884180;transcript_id=XM_016805810.1
+GL349622	Gnomon	exon	781854	781970	.	+	.	ID=id1748;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XM_016805810.1;gbkey=mRNA;gene=LOC107884180;product=uncharacterized LOC107884180;transcript_id=XM_016805810.1
+GL349622	Gnomon	exon	782428	782560	.	+	.	ID=id1749;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XM_016805810.1;gbkey=mRNA;gene=LOC107884180;product=uncharacterized LOC107884180;transcript_id=XM_016805810.1
+GL349622	Gnomon	exon	782700	782872	.	+	.	ID=id1750;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XM_016805810.1;gbkey=mRNA;gene=LOC107884180;product=uncharacterized LOC107884180;transcript_id=XM_016805810.1
+GL349622	Gnomon	exon	783234	783818	.	+	.	ID=id1751;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XM_016805810.1;gbkey=mRNA;gene=LOC107884180;product=uncharacterized LOC107884180;transcript_id=XM_016805810.1
+GL349622	Gnomon	CDS	781854	781970	.	+	0	ID=cds183;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XP_016661299.1;Name=XP_016661299.1;gbkey=CDS;gene=LOC107884180;product=uncharacterized protein LOC107884180;protein_id=XP_016661299.1
+GL349622	Gnomon	CDS	782428	782560	.	+	0	ID=cds183;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XP_016661299.1;Name=XP_016661299.1;gbkey=CDS;gene=LOC107884180;product=uncharacterized protein LOC107884180;protein_id=XP_016661299.1
+GL349622	Gnomon	CDS	782700	782872	.	+	2	ID=cds183;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XP_016661299.1;Name=XP_016661299.1;gbkey=CDS;gene=LOC107884180;product=uncharacterized protein LOC107884180;protein_id=XP_016661299.1
+GL349622	Gnomon	CDS	783234	783818	.	+	0	ID=cds183;Parent=rna198;Dbxref=GeneID:107884180,Genbank:XP_016661299.1;Name=XP_016661299.1;gbkey=CDS;gene=LOC107884180;product=uncharacterized protein LOC107884180;protein_id=XP_016661299.1
+GL349622	Gnomon	gene	802396	807299	.	+	.	ID=gene136;Dbxref=APHIDBASE:ACYPI006489,GeneID:100165548;Name=LOC100165548;gbkey=Gene;gene=LOC100165548;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	802396	807299	.	+	.	ID=rna199;Parent=gene136;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;Name=XM_001946392.4;gbkey=mRNA;gene=LOC100165548;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	802396	802622	.	+	.	ID=id1752;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	802848	802998	.	+	.	ID=id1753;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	803076	803282	.	+	.	ID=id1754;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	803348	803673	.	+	.	ID=id1755;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	803752	803847	.	+	.	ID=id1756;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	804268	804452	.	+	.	ID=id1757;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	804514	804575	.	+	.	ID=id1758;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	804857	804945	.	+	.	ID=id1759;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	805139	805283	.	+	.	ID=id1760;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	805372	805486	.	+	.	ID=id1761;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	805554	805766	.	+	.	ID=id1762;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	805845	805985	.	+	.	ID=id1763;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	806803	806942	.	+	.	ID=id1764;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	exon	807008	807299	.	+	.	ID=id1765;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XM_001946392.4,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X1;transcript_id=XM_001946392.4
+GL349622	Gnomon	mRNA	802666	807299	.	+	.	ID=rna200;Parent=gene136;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;Name=XM_008185666.2;gbkey=mRNA;gene=LOC100165548;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	802666	802769	.	+	.	ID=id1766;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	802848	802998	.	+	.	ID=id1767;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	803076	803282	.	+	.	ID=id1768;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	803348	803673	.	+	.	ID=id1769;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	803752	803847	.	+	.	ID=id1770;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	804268	804452	.	+	.	ID=id1771;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	804514	804575	.	+	.	ID=id1772;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	804857	804945	.	+	.	ID=id1773;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	805139	805283	.	+	.	ID=id1774;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	805372	805486	.	+	.	ID=id1775;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	805554	805766	.	+	.	ID=id1776;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	805845	805985	.	+	.	ID=id1777;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	806803	806942	.	+	.	ID=id1778;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	exon	807008	807299	.	+	.	ID=id1779;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XM_008185666.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X2;transcript_id=XM_008185666.2
+GL349622	Gnomon	CDS	803083	803282	.	+	0	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	803348	803673	.	+	1	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	803752	803847	.	+	2	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	804268	804452	.	+	2	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	804514	804575	.	+	0	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	804857	804945	.	+	1	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	805139	805283	.	+	2	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	805372	805486	.	+	1	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	805554	805766	.	+	0	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	805845	805985	.	+	0	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	806803	806942	.	+	0	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	807008	807131	.	+	1	ID=cds184;Parent=rna199;Dbxref=GeneID:100165548,Genbank:XP_001946427.2,APHIDBASE:ACYPI006489;Name=XP_001946427.2;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_001946427.2
+GL349622	Gnomon	CDS	803083	803282	.	+	0	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	803348	803673	.	+	1	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	803752	803847	.	+	2	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	804268	804452	.	+	2	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	804514	804575	.	+	0	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	804857	804945	.	+	1	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	805139	805283	.	+	2	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	805372	805486	.	+	1	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	805554	805766	.	+	0	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	805845	805985	.	+	0	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	806803	806942	.	+	0	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	CDS	807008	807131	.	+	1	ID=cds185;Parent=rna200;Dbxref=GeneID:100165548,Genbank:XP_008183888.1,APHIDBASE:ACYPI006489;Name=XP_008183888.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X1;protein_id=XP_008183888.1
+GL349622	Gnomon	mRNA	803156	807299	.	+	.	ID=rna201;Parent=gene136;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;Name=XM_008185699.2;gbkey=mRNA;gene=LOC100165548;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	803156	803282	.	+	.	ID=id1780;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	803398	803673	.	+	.	ID=id1781;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	803752	803847	.	+	.	ID=id1782;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	804268	804452	.	+	.	ID=id1783;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	804514	804575	.	+	.	ID=id1784;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	804857	804945	.	+	.	ID=id1785;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	805139	805283	.	+	.	ID=id1786;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	805372	805486	.	+	.	ID=id1787;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	805554	805766	.	+	.	ID=id1788;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	805845	805985	.	+	.	ID=id1789;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	806803	806942	.	+	.	ID=id1790;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	exon	807008	807299	.	+	.	ID=id1791;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XM_008185699.2,APHIDBASE:ACYPI006489;gbkey=mRNA;gene=LOC100165548;product=sorting nexin-29%2C transcript variant X3;transcript_id=XM_008185699.2
+GL349622	Gnomon	CDS	803270	803282	.	+	0	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	803398	803673	.	+	2	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	803752	803847	.	+	2	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	804268	804452	.	+	2	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	804514	804575	.	+	0	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	804857	804945	.	+	1	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	805139	805283	.	+	2	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	805372	805486	.	+	1	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	805554	805766	.	+	0	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	805845	805985	.	+	0	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	806803	806942	.	+	0	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	CDS	807008	807131	.	+	1	ID=cds186;Parent=rna201;Dbxref=GeneID:100165548,Genbank:XP_008183921.1,APHIDBASE:ACYPI006489;Name=XP_008183921.1;gbkey=CDS;gene=LOC100165548;product=sorting nexin-29 isoform X2;protein_id=XP_008183921.1
+GL349622	Gnomon	gene	821253	829640	.	-	.	ID=gene137;Dbxref=GeneID:103310924;Name=LOC103310924;gbkey=Gene;gene=LOC103310924;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	821253	829640	.	-	.	ID=rna202;Parent=gene137;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;Name=XM_016805834.1;gbkey=mRNA;gene=LOC103310924;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 83%25 coverage of the annotated genomic feature by RNAseq alignments;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	829632	829640	.	-	.	ID=id1792;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	827797	827914	.	-	.	ID=id1793;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	827641	827729	.	-	.	ID=id1794;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	827248	827401	.	-	.	ID=id1795;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	827036	827134	.	-	.	ID=id1796;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	826846	826979	.	-	.	ID=id1797;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	825721	825822	.	-	.	ID=id1798;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	825291	825388	.	-	.	ID=id1799;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	exon	821253	821304	.	-	.	ID=id1800;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XM_016805834.1;gbkey=mRNA;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;transcript_id=XM_016805834.1
+GL349622	Gnomon	CDS	829632	829640	.	-	0	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	827797	827914	.	-	0	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	827641	827729	.	-	2	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	827248	827401	.	-	0	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	827036	827134	.	-	2	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	826846	826979	.	-	2	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	825721	825822	.	-	0	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	825291	825388	.	-	0	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	CDS	821253	821304	.	-	1	ID=cds187;Parent=rna202;Dbxref=GeneID:103310924,Genbank:XP_016661323.1;Name=XP_016661323.1;gbkey=CDS;gene=LOC103310924;product=presenilins-associated rhomboid-like protein%2C mitochondrial;protein_id=XP_016661323.1
+GL349622	Gnomon	gene	838010	838415	.	+	.	ID=gene138;Dbxref=GeneID:107884205;Name=LOC107884205;gbkey=Gene;gene=LOC107884205;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	838010	838415	.	+	.	ID=rna203;Parent=gene138;Dbxref=GeneID:107884205,Genbank:XM_016805867.1;Name=XM_016805867.1;gbkey=mRNA;gene=LOC107884205;model_evidence=Supporting evidence includes similarity to: 70%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC107884205;transcript_id=XM_016805867.1
+GL349622	Gnomon	exon	838010	838161	.	+	.	ID=id1801;Parent=rna203;Dbxref=GeneID:107884205,Genbank:XM_016805867.1;gbkey=mRNA;gene=LOC107884205;product=uncharacterized LOC107884205;transcript_id=XM_016805867.1
+GL349622	Gnomon	exon	838253	838415	.	+	.	ID=id1802;Parent=rna203;Dbxref=GeneID:107884205,Genbank:XM_016805867.1;gbkey=mRNA;gene=LOC107884205;product=uncharacterized LOC107884205;transcript_id=XM_016805867.1
+GL349622	Gnomon	CDS	838016	838161	.	+	0	ID=cds188;Parent=rna203;Dbxref=GeneID:107884205,Genbank:XP_016661356.1;Name=XP_016661356.1;gbkey=CDS;gene=LOC107884205;product=uncharacterized protein LOC107884205;protein_id=XP_016661356.1
+GL349622	Gnomon	CDS	838253	838415	.	+	1	ID=cds188;Parent=rna203;Dbxref=GeneID:107884205,Genbank:XP_016661356.1;Name=XP_016661356.1;gbkey=CDS;gene=LOC107884205;product=uncharacterized protein LOC107884205;protein_id=XP_016661356.1
+GL349622	Gnomon	gene	838996	843102	.	+	.	ID=gene139;Dbxref=GeneID:107884635;Name=LOC107884635;gbkey=Gene;gene=LOC107884635;gene_biotype=lncRNA
+GL349622	Gnomon	ncRNA	838996	843102	.	+	.	ID=rna204;Parent=gene139;Dbxref=GeneID:107884635,Genbank:XR_001680054.1;Name=XR_001680054.1;gbkey=ncRNA;gene=LOC107884635;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;ncrna_class=lncRNA;product=uncharacterized LOC107884635;transcript_id=XR_001680054.1
+GL349622	Gnomon	exon	838996	839116	.	+	.	ID=id1803;Parent=rna204;Dbxref=GeneID:107884635,Genbank:XR_001680054.1;gbkey=ncRNA;gene=LOC107884635;ncrna_class=lncRNA;product=uncharacterized LOC107884635;transcript_id=XR_001680054.1
+GL349622	Gnomon	exon	842072	842239	.	+	.	ID=id1804;Parent=rna204;Dbxref=GeneID:107884635,Genbank:XR_001680054.1;gbkey=ncRNA;gene=LOC107884635;ncrna_class=lncRNA;product=uncharacterized LOC107884635;transcript_id=XR_001680054.1
+GL349622	Gnomon	exon	842314	843102	.	+	.	ID=id1805;Parent=rna204;Dbxref=GeneID:107884635,Genbank:XR_001680054.1;gbkey=ncRNA;gene=LOC107884635;ncrna_class=lncRNA;product=uncharacterized LOC107884635;transcript_id=XR_001680054.1
+GL349622	Gnomon	gene	843205	849804	.	-	.	ID=gene140;Dbxref=GeneID:100570835;Name=LOC100570835;gbkey=Gene;gene=LOC100570835;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	843205	849804	.	-	.	ID=rna205;Parent=gene140;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;Name=XM_016807639.1;gbkey=mRNA;gene=LOC100570835;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 4 samples with support for all annotated introns;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	849587	849804	.	-	.	ID=id1806;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	849312	849444	.	-	.	ID=id1807;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	848514	848640	.	-	.	ID=id1808;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	847228	847372	.	-	.	ID=id1809;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	846579	846720	.	-	.	ID=id1810;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	846310	846406	.	-	.	ID=id1811;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	846132	846198	.	-	.	ID=id1812;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	845478	846059	.	-	.	ID=id1813;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	844646	844883	.	-	.	ID=id1814;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	844239	844303	.	-	.	ID=id1815;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	844091	844181	.	-	.	ID=id1816;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	843967	844026	.	-	.	ID=id1817;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	exon	843205	843644	.	-	.	ID=id1818;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XM_016807639.1;gbkey=mRNA;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;transcript_id=XM_016807639.1
+GL349622	Gnomon	CDS	849312	849423	.	-	0	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	848514	848640	.	-	2	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	847228	847372	.	-	1	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	846579	846720	.	-	0	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	846310	846406	.	-	2	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	846132	846198	.	-	1	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	845478	846059	.	-	0	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	844646	844883	.	-	0	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	844239	844303	.	-	2	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	844091	844181	.	-	0	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	843967	844026	.	-	2	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	CDS	843484	843644	.	-	2	ID=cds189;Parent=rna205;Dbxref=GeneID:100570835,Genbank:XP_016663128.1;Name=XP_016663128.1;gbkey=CDS;gene=LOC100570835;product=putative uncharacterized protein DDB_G0282133;protein_id=XP_016663128.1
+GL349622	Gnomon	gene	850042	851922	.	+	.	ID=gene141;Dbxref=GeneID:107884810;Name=LOC107884810;gbkey=Gene;gene=LOC107884810;gene_biotype=lncRNA
+GL349622	Gnomon	ncRNA	850042	851922	.	+	.	ID=rna206;Parent=gene141;Dbxref=GeneID:107884810,Genbank:XR_001680152.1;Name=XR_001680152.1;gbkey=ncRNA;gene=LOC107884810;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 4 samples with support for all annotated introns;ncrna_class=lncRNA;product=uncharacterized LOC107884810;transcript_id=XR_001680152.1
+GL349622	Gnomon	exon	850042	850455	.	+	.	ID=id1819;Parent=rna206;Dbxref=GeneID:107884810,Genbank:XR_001680152.1;gbkey=ncRNA;gene=LOC107884810;ncrna_class=lncRNA;product=uncharacterized LOC107884810;transcript_id=XR_001680152.1
+GL349622	Gnomon	exon	850516	850724	.	+	.	ID=id1820;Parent=rna206;Dbxref=GeneID:107884810,Genbank:XR_001680152.1;gbkey=ncRNA;gene=LOC107884810;ncrna_class=lncRNA;product=uncharacterized LOC107884810;transcript_id=XR_001680152.1
+GL349622	Gnomon	exon	850789	850834	.	+	.	ID=id1821;Parent=rna206;Dbxref=GeneID:107884810,Genbank:XR_001680152.1;gbkey=ncRNA;gene=LOC107884810;ncrna_class=lncRNA;product=uncharacterized LOC107884810;transcript_id=XR_001680152.1
+GL349622	Gnomon	exon	851574	851922	.	+	.	ID=id1822;Parent=rna206;Dbxref=GeneID:107884810,Genbank:XR_001680152.1;gbkey=ncRNA;gene=LOC107884810;ncrna_class=lncRNA;product=uncharacterized LOC107884810;transcript_id=XR_001680152.1
+GL349622	Gnomon	gene	852356	852655	.	+	.	ID=gene142;Dbxref=GeneID:107884816;Name=LOC107884816;gbkey=Gene;gene=LOC107884816;gene_biotype=lncRNA
+GL349622	Gnomon	ncRNA	852356	852655	.	+	.	ID=rna207;Parent=gene142;Dbxref=GeneID:107884816,Genbank:XR_001680171.1;Name=XR_001680171.1;gbkey=ncRNA;gene=LOC107884816;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;ncrna_class=lncRNA;product=uncharacterized LOC107884816;transcript_id=XR_001680171.1
+GL349622	Gnomon	exon	852356	852472	.	+	.	ID=id1823;Parent=rna207;Dbxref=GeneID:107884816,Genbank:XR_001680171.1;gbkey=ncRNA;gene=LOC107884816;ncrna_class=lncRNA;product=uncharacterized LOC107884816;transcript_id=XR_001680171.1
+GL349622	Gnomon	exon	852545	852655	.	+	.	ID=id1824;Parent=rna207;Dbxref=GeneID:107884816,Genbank:XR_001680171.1;gbkey=ncRNA;gene=LOC107884816;ncrna_class=lncRNA;product=uncharacterized LOC107884816;transcript_id=XR_001680171.1
+GL349622	Gnomon	gene	853959	855548	.	-	.	ID=gene143;Dbxref=GeneID:103311069;Name=LOC103311069;gbkey=Gene;gene=LOC103311069;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	853959	855548	.	-	.	ID=rna208;Parent=gene143;Dbxref=GeneID:103311069,Genbank:XM_008190625.1;Name=XM_008190625.1;gbkey=mRNA;gene=LOC103311069;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC103311069;transcript_id=XM_008190625.1
+GL349622	Gnomon	exon	855468	855548	.	-	.	ID=id1825;Parent=rna208;Dbxref=GeneID:103311069,Genbank:XM_008190625.1;gbkey=mRNA;gene=LOC103311069;product=uncharacterized LOC103311069;transcript_id=XM_008190625.1
+GL349622	Gnomon	exon	853959	855269	.	-	.	ID=id1826;Parent=rna208;Dbxref=GeneID:103311069,Genbank:XM_008190625.1;gbkey=mRNA;gene=LOC103311069;product=uncharacterized LOC103311069;transcript_id=XM_008190625.1
+GL349622	Gnomon	CDS	855468	855548	.	-	0	ID=cds190;Parent=rna208;Dbxref=GeneID:103311069,Genbank:XP_008188847.1;Name=XP_008188847.1;gbkey=CDS;gene=LOC103311069;product=uncharacterized protein LOC103311069;protein_id=XP_008188847.1
+GL349622	Gnomon	CDS	853959	855269	.	-	0	ID=cds190;Parent=rna208;Dbxref=GeneID:103311069,Genbank:XP_008188847.1;Name=XP_008188847.1;gbkey=CDS;gene=LOC103311069;product=uncharacterized protein LOC103311069;protein_id=XP_008188847.1
+GL349622	Gnomon	gene	863726	867587	.	+	.	ID=gene144;Dbxref=GeneID:100571026;Name=LOC100571026;gbkey=Gene;gene=LOC100571026;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	863726	867587	.	+	.	ID=rna209;Parent=gene144;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;Name=XM_016807739.1;gbkey=mRNA;gene=LOC100571026;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	863726	863841	.	+	.	ID=id1827;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	863945	864003	.	+	.	ID=id1828;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	864277	864411	.	+	.	ID=id1829;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	864507	864731	.	+	.	ID=id1830;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	864812	865022	.	+	.	ID=id1831;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	865087	865158	.	+	.	ID=id1832;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	865712	865824	.	+	.	ID=id1833;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	866249	866491	.	+	.	ID=id1834;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	866574	866733	.	+	.	ID=id1835;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	867122	867182	.	+	.	ID=id1836;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	exon	867288	867587	.	+	.	ID=id1837;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XM_016807739.1;gbkey=mRNA;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;transcript_id=XM_016807739.1
+GL349622	Gnomon	CDS	863760	863841	.	+	0	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	863945	864003	.	+	2	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	864277	864411	.	+	0	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	864507	864731	.	+	0	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	864812	865022	.	+	0	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	865087	865158	.	+	2	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	865712	865824	.	+	2	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	866249	866491	.	+	0	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	866574	866733	.	+	0	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	867122	867182	.	+	2	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	CDS	867288	867306	.	+	1	ID=cds191;Parent=rna209;Dbxref=GeneID:100571026,Genbank:XP_016663228.1;Name=XP_016663228.1;gbkey=CDS;gene=LOC100571026;product=dynein beta chain%2C ciliary-like;protein_id=XP_016663228.1
+GL349622	Gnomon	gene	886367	891111	.	-	.	ID=gene145;Dbxref=APHIDBASE:ACYPI001992,GeneID:100160714;Name=LOC100160714;gbkey=Gene;gene=LOC100160714;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	886367	891111	.	-	.	ID=rna210;Parent=gene145;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;Name=XM_001944073.4;gbkey=mRNA;gene=LOC100160714;model_evidence=Supporting evidence includes similarity to: 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 24 samples with support for all annotated introns;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	exon	890764	891111	.	-	.	ID=id1838;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;gbkey=mRNA;gene=LOC100160714;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	exon	889583	889757	.	-	.	ID=id1839;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;gbkey=mRNA;gene=LOC100160714;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	exon	889344	889473	.	-	.	ID=id1840;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;gbkey=mRNA;gene=LOC100160714;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	exon	888053	888185	.	-	.	ID=id1841;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;gbkey=mRNA;gene=LOC100160714;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	exon	886720	886863	.	-	.	ID=id1842;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;gbkey=mRNA;gene=LOC100160714;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	exon	886367	886559	.	-	.	ID=id1843;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XM_001944073.4,APHIDBASE:ACYPI001992;gbkey=mRNA;gene=LOC100160714;product=farnesol dehydrogenase;transcript_id=XM_001944073.4
+GL349622	Gnomon	CDS	890764	890928	.	-	0	ID=cds192;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XP_001944108.2,APHIDBASE:ACYPI001992;Name=XP_001944108.2;gbkey=CDS;gene=LOC100160714;product=farnesol dehydrogenase;protein_id=XP_001944108.2
+GL349622	Gnomon	CDS	889583	889757	.	-	0	ID=cds192;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XP_001944108.2,APHIDBASE:ACYPI001992;Name=XP_001944108.2;gbkey=CDS;gene=LOC100160714;product=farnesol dehydrogenase;protein_id=XP_001944108.2
+GL349622	Gnomon	CDS	889344	889473	.	-	2	ID=cds192;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XP_001944108.2,APHIDBASE:ACYPI001992;Name=XP_001944108.2;gbkey=CDS;gene=LOC100160714;product=farnesol dehydrogenase;protein_id=XP_001944108.2
+GL349622	Gnomon	CDS	888053	888185	.	-	1	ID=cds192;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XP_001944108.2,APHIDBASE:ACYPI001992;Name=XP_001944108.2;gbkey=CDS;gene=LOC100160714;product=farnesol dehydrogenase;protein_id=XP_001944108.2
+GL349622	Gnomon	CDS	886720	886863	.	-	0	ID=cds192;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XP_001944108.2,APHIDBASE:ACYPI001992;Name=XP_001944108.2;gbkey=CDS;gene=LOC100160714;product=farnesol dehydrogenase;protein_id=XP_001944108.2
+GL349622	Gnomon	CDS	886500	886559	.	-	0	ID=cds192;Parent=rna210;Dbxref=GeneID:100160714,Genbank:XP_001944108.2,APHIDBASE:ACYPI001992;Name=XP_001944108.2;gbkey=CDS;gene=LOC100160714;product=farnesol dehydrogenase;protein_id=XP_001944108.2
+GL349622	Gnomon	gene	897120	911579	.	-	.	ID=gene146;Dbxref=APHIDBASE:ACYPI005816,GeneID:100164829;Name=LOC100164829;gbkey=Gene;gene=LOC100164829;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	897120	911579	.	-	.	ID=rna211;Parent=gene146;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;Name=XM_016807838.1;gbkey=mRNA;gene=LOC100164829;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	911235	911579	.	-	.	ID=id1844;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	908817	908929	.	-	.	ID=id1845;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	908461	908653	.	-	.	ID=id1846;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	905653	905701	.	-	.	ID=id1847;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	905522	905571	.	-	.	ID=id1848;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	905309	905442	.	-	.	ID=id1849;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	904484	904875	.	-	.	ID=id1850;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	901710	901869	.	-	.	ID=id1851;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	901607	901638	.	-	.	ID=id1852;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	899646	899751	.	-	.	ID=id1853;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	899100	899324	.	-	.	ID=id1854;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	898908	899031	.	-	.	ID=id1855;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	898713	898818	.	-	.	ID=id1856;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	898435	898535	.	-	.	ID=id1857;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	exon	897120	897438	.	-	.	ID=id1858;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XM_016807838.1,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X2;transcript_id=XM_016807838.1
+GL349622	Gnomon	mRNA	897120	909160	.	-	.	ID=rna212;Parent=gene146;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;Name=XM_001943966.4;gbkey=mRNA;gene=LOC100164829;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 14 samples with support for all annotated introns;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	908817	909160	.	-	.	ID=id1859;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	908461	908653	.	-	.	ID=id1860;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	905653	905701	.	-	.	ID=id1861;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	905522	905571	.	-	.	ID=id1862;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	905309	905442	.	-	.	ID=id1863;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	904484	904875	.	-	.	ID=id1864;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	901710	901869	.	-	.	ID=id1865;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	901607	901638	.	-	.	ID=id1866;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	899646	899751	.	-	.	ID=id1867;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	899100	899324	.	-	.	ID=id1868;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	898908	899031	.	-	.	ID=id1869;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	898713	898818	.	-	.	ID=id1870;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	898435	898535	.	-	.	ID=id1871;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	exon	897120	897438	.	-	.	ID=id1872;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XM_001943966.4,APHIDBASE:ACYPI005816;gbkey=mRNA;gene=LOC100164829;product=protein scarlet%2C transcript variant X1;transcript_id=XM_001943966.4
+GL349622	Gnomon	CDS	908817	908834	.	-	0	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	908461	908653	.	-	0	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	905653	905701	.	-	2	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	905522	905571	.	-	1	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	905309	905442	.	-	2	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	904484	904875	.	-	0	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	901710	901869	.	-	1	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	901607	901638	.	-	0	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	899646	899751	.	-	1	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	899100	899324	.	-	0	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	898908	899031	.	-	0	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	898713	898818	.	-	2	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	898435	898535	.	-	1	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	897263	897438	.	-	2	ID=cds193;Parent=rna211;Dbxref=GeneID:100164829,Genbank:XP_016663327.1,APHIDBASE:ACYPI005816;Name=XP_016663327.1;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_016663327.1
+GL349622	Gnomon	CDS	908817	908834	.	-	0	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	908461	908653	.	-	0	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	905653	905701	.	-	2	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	905522	905571	.	-	1	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	905309	905442	.	-	2	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	904484	904875	.	-	0	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	901710	901869	.	-	1	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	901607	901638	.	-	0	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	899646	899751	.	-	1	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	899100	899324	.	-	0	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	898908	899031	.	-	0	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	898713	898818	.	-	2	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	898435	898535	.	-	1	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	CDS	897263	897438	.	-	2	ID=cds194;Parent=rna212;Dbxref=GeneID:100164829,Genbank:XP_001944001.2,APHIDBASE:ACYPI005816;Name=XP_001944001.2;gbkey=CDS;gene=LOC100164829;product=protein scarlet;protein_id=XP_001944001.2
+GL349622	Gnomon	gene	912301	915845	.	+	.	ID=gene147;Dbxref=APHIDBASE:ACYPI009583,GeneID:100168920;Name=LOC100168920;gbkey=Gene;gene=LOC100168920;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	912301	915845	.	+	.	ID=rna213;Parent=gene147;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;Name=XM_001943851.4;gbkey=mRNA;gene=LOC100168920;model_evidence=Supporting evidence includes similarity to: 18 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 26 samples with support for all annotated introns;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	912301	912506	.	+	.	ID=id1873;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	912674	912733	.	+	.	ID=id1874;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	913180	913275	.	+	.	ID=id1875;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	913331	913468	.	+	.	ID=id1876;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	913536	913719	.	+	.	ID=id1877;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	913793	913947	.	+	.	ID=id1878;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	914020	914171	.	+	.	ID=id1879;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	914234	914525	.	+	.	ID=id1880;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	914592	914776	.	+	.	ID=id1881;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	exon	915556	915845	.	+	.	ID=id1882;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XM_001943851.4,APHIDBASE:ACYPI009583;gbkey=mRNA;gene=LOC100168920;product=uncharacterized LOC100168920;transcript_id=XM_001943851.4
+GL349622	Gnomon	CDS	912499	912506	.	+	0	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	912674	912733	.	+	1	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	913180	913275	.	+	1	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	913331	913468	.	+	1	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	913536	913719	.	+	1	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	913793	913947	.	+	0	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	914020	914171	.	+	1	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	914234	914525	.	+	2	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	914592	914776	.	+	1	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	CDS	915556	915599	.	+	2	ID=cds195;Parent=rna213;Dbxref=GeneID:100168920,Genbank:XP_001943886.1,APHIDBASE:ACYPI009583;Name=XP_001943886.1;gbkey=CDS;gene=LOC100168920;product=uncharacterized protein LOC100168920;protein_id=XP_001943886.1
+GL349622	Gnomon	gene	915421	918276	.	-	.	ID=gene148;Dbxref=APHIDBASE:ACYPI001374,GeneID:100160041;Name=LOC100160041;gbkey=Gene;gene=LOC100160041;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	915421	918276	.	-	.	ID=rna214;Parent=gene148;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;Name=XM_001943803.4;gbkey=mRNA;gene=LOC100160041;model_evidence=Supporting evidence includes similarity to: 2 mRNAs%2C 57 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 40 samples with support for all annotated introns;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	918026	918276	.	-	.	ID=id1883;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	917789	917952	.	-	.	ID=id1884;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	917590	917726	.	-	.	ID=id1885;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	916966	917229	.	-	.	ID=id1886;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	916709	916888	.	-	.	ID=id1887;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	916444	916637	.	-	.	ID=id1888;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	916215	916377	.	-	.	ID=id1889;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	exon	915421	916148	.	-	.	ID=id1890;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XM_001943803.4,APHIDBASE:ACYPI001374;gbkey=mRNA;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;transcript_id=XM_001943803.4
+GL349622	Gnomon	CDS	918026	918138	.	-	0	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	Gnomon	CDS	917789	917952	.	-	1	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	Gnomon	CDS	917590	917726	.	-	2	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	Gnomon	CDS	916966	917229	.	-	0	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	Gnomon	CDS	916709	916888	.	-	0	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	Gnomon	CDS	916444	916637	.	-	0	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	Gnomon	CDS	916215	916377	.	-	1	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	Gnomon	CDS	915885	916148	.	-	0	ID=cds196;Parent=rna214;Dbxref=GeneID:100160041,Genbank:XP_001943838.2,APHIDBASE:ACYPI001374;Name=XP_001943838.2;gbkey=CDS;gene=LOC100160041;product=dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex%2C mitochondrial;protein_id=XP_001943838.2
+GL349622	BestRefSeq	gene	919254	920506	.	+	.	ID=gene149;Dbxref=APHIDBASE:ACYPI003263,GeneID:100162084;Name=LOC100162084;description=sentrin-specific protease 8;gbkey=Gene;gene=LOC100162084;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	919254	920506	.	+	.	ID=rna215;Parent=gene149;Dbxref=GeneID:100162084,Genbank:NM_001301349.1,APHIDBASE:ACYPI003263;Name=NM_001301349.1;Note=The RefSeq transcript has 1 substitution compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100162084;product=sentrin-specific protease 8;transcript_id=NM_001301349.1
+GL349622	BestRefSeq	exon	919254	920506	.	+	.	ID=id1891;Parent=rna215;Dbxref=GeneID:100162084,Genbank:NM_001301349.1,APHIDBASE:ACYPI003263;Note=The RefSeq transcript has 1 substitution compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100162084;product=sentrin-specific protease 8;transcript_id=NM_001301349.1
+GL349622	BestRefSeq	CDS	919536	920210	.	+	0	ID=cds197;Parent=rna215;Dbxref=GeneID:100162084,Genbank:NP_001288278.1,APHIDBASE:ACYPI003263;Name=NP_001288278.1;Note=The RefSeq protein has 1 substitution compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100162084;product=sentrin-specific protease 8;protein_id=NP_001288278.1
+GL349622	Gnomon	gene	925430	930218	.	-	.	ID=gene150;Dbxref=APHIDBASE:ACYPI005182,GeneID:100164143;Name=LOC100164143;gbkey=Gene;gene=LOC100164143;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	925430	930218	.	-	.	ID=rna216;Parent=gene150;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;Name=XM_001943696.4;gbkey=mRNA;gene=LOC100164143;model_evidence=Supporting evidence includes similarity to: 9 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 30 samples with support for all annotated introns;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	929680	930218	.	-	.	ID=id1892;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	929537	929602	.	-	.	ID=id1893;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	929166	929408	.	-	.	ID=id1894;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	928966	929100	.	-	.	ID=id1895;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	928749	928905	.	-	.	ID=id1896;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	927701	927807	.	-	.	ID=id1897;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	926107	926248	.	-	.	ID=id1898;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	925706	926031	.	-	.	ID=id1899;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	exon	925430	925647	.	-	.	ID=id1900;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XM_001943696.4,APHIDBASE:ACYPI005182;gbkey=mRNA;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;transcript_id=XM_001943696.4
+GL349622	Gnomon	CDS	929680	929739	.	-	0	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	929537	929602	.	-	0	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	929166	929408	.	-	0	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	928966	929100	.	-	0	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	928749	928905	.	-	0	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	927701	927807	.	-	2	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	926107	926248	.	-	0	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	925706	926031	.	-	2	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	CDS	925483	925647	.	-	0	ID=cds198;Parent=rna216;Dbxref=GeneID:100164143,Genbank:XP_001943731.2,APHIDBASE:ACYPI005182;Name=XP_001943731.2;gbkey=CDS;gene=LOC100164143;product=tRNA (guanine(10)-N2)-methyltransferase homolog;protein_id=XP_001943731.2
+GL349622	Gnomon	gene	930390	946547	.	+	.	ID=gene151;Dbxref=APHIDBASE:ACYPI007079,GeneID:100166186;Name=LOC100166186;gbkey=Gene;gene=LOC100166186;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	930390	946547	.	+	.	ID=rna217;Parent=gene151;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;Name=XM_001943648.4;gbkey=mRNA;gene=LOC100166186;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 37 ESTs%2C 19 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	930390	930742	.	+	.	ID=id1901;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	944105	944282	.	+	.	ID=id1902;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	944377	944528	.	+	.	ID=id1903;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	944632	944802	.	+	.	ID=id1904;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	944879	945043	.	+	.	ID=id1905;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	945109	945503	.	+	.	ID=id1906;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	945563	945787	.	+	.	ID=id1907;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	945863	945928	.	+	.	ID=id1908;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	946015	946180	.	+	.	ID=id1909;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	exon	946252	946547	.	+	.	ID=id1910;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XM_001943648.4,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X1;transcript_id=XM_001943648.4
+GL349622	Gnomon	mRNA	930391	946547	.	+	.	ID=rna218;Parent=gene151;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;Name=XM_003240038.3;gbkey=mRNA;gene=LOC100166186;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 61 ESTs%2C 19 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 34 samples with support for all annotated introns;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	930391	930658	.	+	.	ID=id1911;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	944105	944282	.	+	.	ID=id1912;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	944377	944528	.	+	.	ID=id1913;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	944632	944802	.	+	.	ID=id1914;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	944879	945043	.	+	.	ID=id1915;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	945109	945503	.	+	.	ID=id1916;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	945563	945787	.	+	.	ID=id1917;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	945863	945928	.	+	.	ID=id1918;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	946015	946180	.	+	.	ID=id1919;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	exon	946252	946547	.	+	.	ID=id1920;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XM_003240038.3,APHIDBASE:ACYPI007079;gbkey=mRNA;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1%2C transcript variant X2;transcript_id=XM_003240038.3
+GL349622	Gnomon	CDS	930691	930742	.	+	0	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	944105	944282	.	+	2	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	944377	944528	.	+	1	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	944632	944802	.	+	2	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	944879	945043	.	+	2	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	945109	945503	.	+	2	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	945563	945787	.	+	0	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	945863	945928	.	+	0	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	946015	946180	.	+	0	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	946252	946340	.	+	2	ID=cds199;Parent=rna217;Dbxref=GeneID:100166186,Genbank:XP_001943683.1,APHIDBASE:ACYPI007079;Name=XP_001943683.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X1;protein_id=XP_001943683.1
+GL349622	Gnomon	CDS	944107	944282	.	+	0	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	944377	944528	.	+	1	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	944632	944802	.	+	2	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	944879	945043	.	+	2	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	945109	945503	.	+	2	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	945563	945787	.	+	0	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	945863	945928	.	+	0	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	946015	946180	.	+	0	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	CDS	946252	946340	.	+	2	ID=cds200;Parent=rna218;Dbxref=GeneID:100166186,Genbank:XP_003240086.1,APHIDBASE:ACYPI007079;Name=XP_003240086.1;gbkey=CDS;gene=LOC100166186;product=prolyl 4-hydroxylase subunit alpha-1 isoform X2;protein_id=XP_003240086.1
+GL349622	Gnomon	gene	954965	962371	.	+	.	ID=gene152;Dbxref=GeneID:100571889;Name=LOC100571889;gbkey=Gene;gene=LOC100571889;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	954965	962371	.	+	.	ID=rna219;Parent=gene152;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;Name=XM_008190770.2;gbkey=mRNA;gene=LOC100571889;model_evidence=Supporting evidence includes similarity to: 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	exon	954965	954989	.	+	.	ID=id1921;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;gbkey=mRNA;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	exon	955358	955492	.	+	.	ID=id1922;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;gbkey=mRNA;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	exon	958011	958136	.	+	.	ID=id1923;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;gbkey=mRNA;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	exon	958589	958740	.	+	.	ID=id1924;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;gbkey=mRNA;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	exon	958871	959059	.	+	.	ID=id1925;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;gbkey=mRNA;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	exon	959145	959488	.	+	.	ID=id1926;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;gbkey=mRNA;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	exon	961855	962371	.	+	.	ID=id1927;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XM_008190770.2;gbkey=mRNA;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;transcript_id=XM_008190770.2
+GL349622	Gnomon	CDS	954965	954989	.	+	0	ID=cds201;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XP_008188992.2;Name=XP_008188992.2;gbkey=CDS;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;protein_id=XP_008188992.2
+GL349622	Gnomon	CDS	955358	955492	.	+	2	ID=cds201;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XP_008188992.2;Name=XP_008188992.2;gbkey=CDS;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;protein_id=XP_008188992.2
+GL349622	Gnomon	CDS	958011	958136	.	+	2	ID=cds201;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XP_008188992.2;Name=XP_008188992.2;gbkey=CDS;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;protein_id=XP_008188992.2
+GL349622	Gnomon	CDS	958589	958740	.	+	2	ID=cds201;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XP_008188992.2;Name=XP_008188992.2;gbkey=CDS;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;protein_id=XP_008188992.2
+GL349622	Gnomon	CDS	958871	959059	.	+	0	ID=cds201;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XP_008188992.2;Name=XP_008188992.2;gbkey=CDS;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;protein_id=XP_008188992.2
+GL349622	Gnomon	CDS	959145	959488	.	+	0	ID=cds201;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XP_008188992.2;Name=XP_008188992.2;gbkey=CDS;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;protein_id=XP_008188992.2
+GL349622	Gnomon	CDS	961855	962371	.	+	1	ID=cds201;Parent=rna219;Dbxref=GeneID:100571889,Genbank:XP_008188992.2;Name=XP_008188992.2;gbkey=CDS;gene=LOC100571889;product=prostaglandin G/H synthase 2-like;protein_id=XP_008188992.2
+GL349622	Gnomon	gene	962994	969582	.	+	.	ID=gene153;Dbxref=GeneID:107884914;Name=LOC107884914;gbkey=Gene;gene=LOC107884914;gene_biotype=lncRNA
+GL349622	Gnomon	ncRNA	962994	969582	.	+	.	ID=rna220;Parent=gene153;Dbxref=GeneID:107884914,Genbank:XR_001680236.1;Name=XR_001680236.1;gbkey=ncRNA;gene=LOC107884914;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;ncrna_class=lncRNA;product=uncharacterized LOC107884914;transcript_id=XR_001680236.1
+GL349622	Gnomon	exon	962994	963176	.	+	.	ID=id1928;Parent=rna220;Dbxref=GeneID:107884914,Genbank:XR_001680236.1;gbkey=ncRNA;gene=LOC107884914;ncrna_class=lncRNA;product=uncharacterized LOC107884914;transcript_id=XR_001680236.1
+GL349622	Gnomon	exon	967987	968174	.	+	.	ID=id1929;Parent=rna220;Dbxref=GeneID:107884914,Genbank:XR_001680236.1;gbkey=ncRNA;gene=LOC107884914;ncrna_class=lncRNA;product=uncharacterized LOC107884914;transcript_id=XR_001680236.1
+GL349622	Gnomon	exon	968237	969582	.	+	.	ID=id1930;Parent=rna220;Dbxref=GeneID:107884914,Genbank:XR_001680236.1;gbkey=ncRNA;gene=LOC107884914;ncrna_class=lncRNA;product=uncharacterized LOC107884914;transcript_id=XR_001680236.1
+GL349622	Gnomon	gene	975067	979841	.	-	.	ID=gene154;Dbxref=APHIDBASE:ACYPI002622,GeneID:100161399;Name=LOC100161399;gbkey=Gene;gene=LOC100161399;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	975067	979841	.	-	.	ID=rna221;Parent=gene154;Dbxref=GeneID:100161399,Genbank:XM_003240040.3,APHIDBASE:ACYPI002622;Name=XM_003240040.3;gbkey=mRNA;gene=LOC100161399;model_evidence=Supporting evidence includes similarity to: 3 mRNAs%2C 105 ESTs%2C 42 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 47 samples with support for all annotated introns;product=calreticulin;transcript_id=XM_003240040.3
+GL349622	Gnomon	exon	979538	979841	.	-	.	ID=id1931;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XM_003240040.3,APHIDBASE:ACYPI002622;gbkey=mRNA;gene=LOC100161399;product=calreticulin;transcript_id=XM_003240040.3
+GL349622	Gnomon	exon	979159	979467	.	-	.	ID=id1932;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XM_003240040.3,APHIDBASE:ACYPI002622;gbkey=mRNA;gene=LOC100161399;product=calreticulin;transcript_id=XM_003240040.3
+GL349622	Gnomon	exon	976159	976619	.	-	.	ID=id1933;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XM_003240040.3,APHIDBASE:ACYPI002622;gbkey=mRNA;gene=LOC100161399;product=calreticulin;transcript_id=XM_003240040.3
+GL349622	Gnomon	exon	975856	976050	.	-	.	ID=id1934;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XM_003240040.3,APHIDBASE:ACYPI002622;gbkey=mRNA;gene=LOC100161399;product=calreticulin;transcript_id=XM_003240040.3
+GL349622	Gnomon	exon	975067	975795	.	-	.	ID=id1935;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XM_003240040.3,APHIDBASE:ACYPI002622;gbkey=mRNA;gene=LOC100161399;product=calreticulin;transcript_id=XM_003240040.3
+GL349622	Gnomon	CDS	979538	979637	.	-	0	ID=cds202;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XP_003240088.1,APHIDBASE:ACYPI002622;Name=XP_003240088.1;gbkey=CDS;gene=LOC100161399;product=calreticulin;protein_id=XP_003240088.1
+GL349622	Gnomon	CDS	979159	979467	.	-	2	ID=cds202;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XP_003240088.1,APHIDBASE:ACYPI002622;Name=XP_003240088.1;gbkey=CDS;gene=LOC100161399;product=calreticulin;protein_id=XP_003240088.1
+GL349622	Gnomon	CDS	976159	976619	.	-	2	ID=cds202;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XP_003240088.1,APHIDBASE:ACYPI002622;Name=XP_003240088.1;gbkey=CDS;gene=LOC100161399;product=calreticulin;protein_id=XP_003240088.1
+GL349622	Gnomon	CDS	975856	976050	.	-	0	ID=cds202;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XP_003240088.1,APHIDBASE:ACYPI002622;Name=XP_003240088.1;gbkey=CDS;gene=LOC100161399;product=calreticulin;protein_id=XP_003240088.1
+GL349622	Gnomon	CDS	975634	975795	.	-	0	ID=cds202;Parent=rna221;Dbxref=GeneID:100161399,Genbank:XP_003240088.1,APHIDBASE:ACYPI002622;Name=XP_003240088.1;gbkey=CDS;gene=LOC100161399;product=calreticulin;protein_id=XP_003240088.1
+GL349622	Gnomon	gene	988282	991782	.	+	.	ID=gene155;Dbxref=GeneID:103311237;Name=LOC103311237;gbkey=Gene;gene=LOC103311237;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	988282	991782	.	+	.	ID=rna222;Parent=gene155;Dbxref=GeneID:103311237,Genbank:XM_008190837.2;Name=XM_008190837.2;gbkey=mRNA;gene=LOC103311237;model_evidence=Supporting evidence includes similarity to: 5 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 5 samples with support for all annotated introns;product=mpv17-like protein 2%2C transcript variant X1;transcript_id=XM_008190837.2
+GL349622	Gnomon	exon	988282	988337	.	+	.	ID=id1936;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XM_008190837.2;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X1;transcript_id=XM_008190837.2
+GL349622	Gnomon	exon	988435	988631	.	+	.	ID=id1937;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XM_008190837.2;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X1;transcript_id=XM_008190837.2
+GL349622	Gnomon	exon	990258	990496	.	+	.	ID=id1938;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XM_008190837.2;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X1;transcript_id=XM_008190837.2
+GL349622	Gnomon	exon	991475	991603	.	+	.	ID=id1939;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XM_008190837.2;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X1;transcript_id=XM_008190837.2
+GL349622	Gnomon	exon	991690	991782	.	+	.	ID=id1940;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XM_008190837.2;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X1;transcript_id=XM_008190837.2
+GL349622	Gnomon	mRNA	988287	991782	.	+	.	ID=rna223;Parent=gene155;Dbxref=GeneID:103311237,Genbank:XM_016808131.1;Name=XM_016808131.1;gbkey=mRNA;gene=LOC103311237;model_evidence=Supporting evidence includes similarity to: 5 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=mpv17-like protein 2%2C transcript variant X2;transcript_id=XM_016808131.1
+GL349622	Gnomon	exon	988287	988327	.	+	.	ID=id1941;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XM_016808131.1;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X2;transcript_id=XM_016808131.1
+GL349622	Gnomon	exon	988435	988631	.	+	.	ID=id1942;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XM_016808131.1;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X2;transcript_id=XM_016808131.1
+GL349622	Gnomon	exon	990258	990496	.	+	.	ID=id1943;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XM_016808131.1;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X2;transcript_id=XM_016808131.1
+GL349622	Gnomon	exon	991475	991603	.	+	.	ID=id1944;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XM_016808131.1;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X2;transcript_id=XM_016808131.1
+GL349622	Gnomon	exon	991690	991782	.	+	.	ID=id1945;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XM_016808131.1;gbkey=mRNA;gene=LOC103311237;product=mpv17-like protein 2%2C transcript variant X2;transcript_id=XM_016808131.1
+GL349622	Gnomon	CDS	988288	988337	.	+	0	ID=cds203;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XP_008189059.2;Name=XP_008189059.2;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X1;protein_id=XP_008189059.2
+GL349622	Gnomon	CDS	988435	988631	.	+	1	ID=cds203;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XP_008189059.2;Name=XP_008189059.2;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X1;protein_id=XP_008189059.2
+GL349622	Gnomon	CDS	990258	990496	.	+	2	ID=cds203;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XP_008189059.2;Name=XP_008189059.2;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X1;protein_id=XP_008189059.2
+GL349622	Gnomon	CDS	991475	991603	.	+	0	ID=cds203;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XP_008189059.2;Name=XP_008189059.2;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X1;protein_id=XP_008189059.2
+GL349622	Gnomon	CDS	991690	991743	.	+	0	ID=cds203;Parent=rna222;Dbxref=GeneID:103311237,Genbank:XP_008189059.2;Name=XP_008189059.2;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X1;protein_id=XP_008189059.2
+GL349622	Gnomon	CDS	988451	988631	.	+	0	ID=cds204;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XP_016663620.1;Name=XP_016663620.1;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X2;protein_id=XP_016663620.1
+GL349622	Gnomon	CDS	990258	990496	.	+	2	ID=cds204;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XP_016663620.1;Name=XP_016663620.1;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X2;protein_id=XP_016663620.1
+GL349622	Gnomon	CDS	991475	991603	.	+	0	ID=cds204;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XP_016663620.1;Name=XP_016663620.1;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X2;protein_id=XP_016663620.1
+GL349622	Gnomon	CDS	991690	991743	.	+	0	ID=cds204;Parent=rna223;Dbxref=GeneID:103311237,Genbank:XP_016663620.1;Name=XP_016663620.1;gbkey=CDS;gene=LOC103311237;product=mpv17-like protein 2 isoform X2;protein_id=XP_016663620.1
+GL349622	Gnomon	gene	991112	996973	.	-	.	ID=gene156;Dbxref=APHIDBASE:ACYPI004530,GeneID:100163441;Name=LOC100163441;gbkey=Gene;gene=LOC100163441;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	991112	996973	.	-	.	ID=rna224;Parent=gene156;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;Name=XM_001952548.4;gbkey=mRNA;gene=LOC100163441;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 11 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	996752	996973	.	-	.	ID=id1946;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	996219	996515	.	-	.	ID=id1947;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	995443	995727	.	-	.	ID=id1948;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	993908	994016	.	-	.	ID=id1949;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	993360	993772	.	-	.	ID=id1950;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	993065	993304	.	-	.	ID=id1951;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	992151	992276	.	-	.	ID=id1952;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	exon	991112	992076	.	-	.	ID=id1953;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XM_001952548.4,APHIDBASE:ACYPI004530;gbkey=mRNA;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;transcript_id=XM_001952548.4
+GL349622	Gnomon	CDS	996752	996823	.	-	0	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	CDS	996219	996515	.	-	0	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	CDS	995443	995727	.	-	0	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	CDS	993908	994016	.	-	0	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	CDS	993360	993772	.	-	2	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	CDS	993065	993304	.	-	0	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	CDS	992151	992276	.	-	0	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	CDS	991897	992076	.	-	0	ID=cds205;Parent=rna224;Dbxref=GeneID:100163441,Genbank:XP_001952583.1,APHIDBASE:ACYPI004530;Name=XP_001952583.1;gbkey=CDS;gene=LOC100163441;product=E3 ubiquitin-protein ligase TRIM23;protein_id=XP_001952583.1
+GL349622	Gnomon	gene	997999	1002764	.	-	.	ID=gene157;Dbxref=GeneID:100572199;Name=LOC100572199;gbkey=Gene;gene=LOC100572199;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	997999	1002764	.	-	.	ID=rna225;Parent=gene157;Dbxref=GeneID:100572199,Genbank:XM_016808180.1;Name=XM_016808180.1;gbkey=mRNA;gene=LOC100572199;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC100572199;transcript_id=XM_016808180.1
+GL349622	Gnomon	exon	1002682	1002764	.	-	.	ID=id1954;Parent=rna225;Dbxref=GeneID:100572199,Genbank:XM_016808180.1;gbkey=mRNA;gene=LOC100572199;product=uncharacterized LOC100572199;transcript_id=XM_016808180.1
+GL349622	Gnomon	exon	999417	999698	.	-	.	ID=id1955;Parent=rna225;Dbxref=GeneID:100572199,Genbank:XM_016808180.1;gbkey=mRNA;gene=LOC100572199;product=uncharacterized LOC100572199;transcript_id=XM_016808180.1
+GL349622	Gnomon	exon	997999	999323	.	-	.	ID=id1956;Parent=rna225;Dbxref=GeneID:100572199,Genbank:XM_016808180.1;gbkey=mRNA;gene=LOC100572199;product=uncharacterized LOC100572199;transcript_id=XM_016808180.1
+GL349622	Gnomon	CDS	999417	999690	.	-	0	ID=cds206;Parent=rna225;Dbxref=GeneID:100572199,Genbank:XP_016663669.1;Name=XP_016663669.1;gbkey=CDS;gene=LOC100572199;product=uncharacterized protein LOC100572199;protein_id=XP_016663669.1
+GL349622	Gnomon	CDS	998671	999323	.	-	2	ID=cds206;Parent=rna225;Dbxref=GeneID:100572199,Genbank:XP_016663669.1;Name=XP_016663669.1;gbkey=CDS;gene=LOC100572199;product=uncharacterized protein LOC100572199;protein_id=XP_016663669.1
+GL349622	Gnomon	gene	1004305	1007224	.	-	.	ID=gene158;Dbxref=GeneID:100572295;Name=LOC100572295;gbkey=Gene;gene=LOC100572295;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1004305	1007224	.	-	.	ID=rna226;Parent=gene158;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;Name=XM_008190912.1;gbkey=mRNA;gene=LOC100572295;model_evidence=Supporting evidence includes similarity to: 4 Proteins;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	exon	1007012	1007224	.	-	.	ID=id1957;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;gbkey=mRNA;gene=LOC100572295;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	exon	1006761	1006899	.	-	.	ID=id1958;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;gbkey=mRNA;gene=LOC100572295;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	exon	1005955	1006163	.	-	.	ID=id1959;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;gbkey=mRNA;gene=LOC100572295;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	exon	1005744	1005890	.	-	.	ID=id1960;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;gbkey=mRNA;gene=LOC100572295;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	exon	1005223	1005458	.	-	.	ID=id1961;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;gbkey=mRNA;gene=LOC100572295;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	exon	1004862	1005053	.	-	.	ID=id1962;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;gbkey=mRNA;gene=LOC100572295;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	exon	1004305	1004506	.	-	.	ID=id1963;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XM_008190912.1;gbkey=mRNA;gene=LOC100572295;product=probable kinetochore protein NUF2;transcript_id=XM_008190912.1
+GL349622	Gnomon	CDS	1007012	1007224	.	-	0	ID=cds207;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XP_008189134.1;Name=XP_008189134.1;gbkey=CDS;gene=LOC100572295;product=probable kinetochore protein NUF2;protein_id=XP_008189134.1
+GL349622	Gnomon	CDS	1006761	1006899	.	-	0	ID=cds207;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XP_008189134.1;Name=XP_008189134.1;gbkey=CDS;gene=LOC100572295;product=probable kinetochore protein NUF2;protein_id=XP_008189134.1
+GL349622	Gnomon	CDS	1005955	1006163	.	-	2	ID=cds207;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XP_008189134.1;Name=XP_008189134.1;gbkey=CDS;gene=LOC100572295;product=probable kinetochore protein NUF2;protein_id=XP_008189134.1
+GL349622	Gnomon	CDS	1005744	1005890	.	-	0	ID=cds207;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XP_008189134.1;Name=XP_008189134.1;gbkey=CDS;gene=LOC100572295;product=probable kinetochore protein NUF2;protein_id=XP_008189134.1
+GL349622	Gnomon	CDS	1005223	1005458	.	-	0	ID=cds207;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XP_008189134.1;Name=XP_008189134.1;gbkey=CDS;gene=LOC100572295;product=probable kinetochore protein NUF2;protein_id=XP_008189134.1
+GL349622	Gnomon	CDS	1004862	1005053	.	-	1	ID=cds207;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XP_008189134.1;Name=XP_008189134.1;gbkey=CDS;gene=LOC100572295;product=probable kinetochore protein NUF2;protein_id=XP_008189134.1
+GL349622	Gnomon	CDS	1004305	1004506	.	-	1	ID=cds207;Parent=rna226;Dbxref=GeneID:100572295,Genbank:XP_008189134.1;Name=XP_008189134.1;gbkey=CDS;gene=LOC100572295;product=probable kinetochore protein NUF2;protein_id=XP_008189134.1
+GL349622	Gnomon	gene	1012741	1030181	.	+	.	ID=gene159;Dbxref=APHIDBASE:ACYPI004573,GeneID:100163487;Name=LOC100163487;gbkey=Gene;gene=LOC100163487;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1012741	1030181	.	+	.	ID=rna227;Parent=gene159;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;Name=XM_008186592.2;gbkey=mRNA;gene=LOC100163487;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 8 samples with support for all annotated introns;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1012741	1012988	.	+	.	ID=id1964;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1013086	1013183	.	+	.	ID=id1965;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1013264	1013377	.	+	.	ID=id1966;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1016376	1016462	.	+	.	ID=id1967;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1017063	1017257	.	+	.	ID=id1968;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1017318	1017447	.	+	.	ID=id1969;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1020699	1020820	.	+	.	ID=id1970;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1020900	1021019	.	+	.	ID=id1971;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1021100	1021225	.	+	.	ID=id1972;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1022984	1023132	.	+	.	ID=id1973;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1023198	1023323	.	+	.	ID=id1974;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1023383	1023557	.	+	.	ID=id1975;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1025656	1025763	.	+	.	ID=id1976;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1025829	1025993	.	+	.	ID=id1977;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1026056	1026200	.	+	.	ID=id1978;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1026287	1026495	.	+	.	ID=id1979;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1026566	1026625	.	+	.	ID=id1980;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1026689	1026882	.	+	.	ID=id1981;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	exon	1029791	1030181	.	+	.	ID=id1982;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XM_008186592.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X3;transcript_id=XM_008186592.2
+GL349622	Gnomon	mRNA	1012741	1030181	.	+	.	ID=rna228;Parent=gene159;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;Name=XM_001951254.4;gbkey=mRNA;gene=LOC100163487;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 10 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 19 samples with support for all annotated introns;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1012741	1012988	.	+	.	ID=id1983;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1013264	1013377	.	+	.	ID=id1984;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1016376	1016462	.	+	.	ID=id1985;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1017063	1017257	.	+	.	ID=id1986;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1017318	1017447	.	+	.	ID=id1987;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1020699	1020820	.	+	.	ID=id1988;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1020900	1021019	.	+	.	ID=id1989;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1021100	1021225	.	+	.	ID=id1990;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1022984	1023132	.	+	.	ID=id1991;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1023198	1023323	.	+	.	ID=id1992;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1023383	1023557	.	+	.	ID=id1993;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1025656	1025763	.	+	.	ID=id1994;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1025829	1025993	.	+	.	ID=id1995;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1026056	1026200	.	+	.	ID=id1996;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1026287	1026495	.	+	.	ID=id1997;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1026566	1026625	.	+	.	ID=id1998;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1026689	1026882	.	+	.	ID=id1999;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	exon	1029791	1030181	.	+	.	ID=id2000;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XM_001951254.4,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X1;transcript_id=XM_001951254.4
+GL349622	Gnomon	mRNA	1012756	1030181	.	+	.	ID=rna229;Parent=gene159;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;Name=XM_008186560.2;gbkey=mRNA;gene=LOC100163487;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 11 ESTs%2C 2 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 9 samples with support for all annotated introns;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1012756	1012988	.	+	.	ID=id2001;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1013086	1013162	.	+	.	ID=id2002;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1013264	1013377	.	+	.	ID=id2003;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1016376	1016462	.	+	.	ID=id2004;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1017063	1017257	.	+	.	ID=id2005;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1017318	1017447	.	+	.	ID=id2006;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1020699	1020820	.	+	.	ID=id2007;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1020900	1021019	.	+	.	ID=id2008;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1021100	1021225	.	+	.	ID=id2009;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1022984	1023132	.	+	.	ID=id2010;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1023198	1023323	.	+	.	ID=id2011;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1023383	1023557	.	+	.	ID=id2012;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1025656	1025763	.	+	.	ID=id2013;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1025829	1025993	.	+	.	ID=id2014;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1026056	1026200	.	+	.	ID=id2015;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1026287	1026495	.	+	.	ID=id2016;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1026566	1026625	.	+	.	ID=id2017;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1026689	1026882	.	+	.	ID=id2018;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	exon	1029791	1030181	.	+	.	ID=id2019;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XM_008186560.2,APHIDBASE:ACYPI004573;gbkey=mRNA;gene=LOC100163487;product=pre-mRNA-processing factor 39-like%2C transcript variant X2;transcript_id=XM_008186560.2
+GL349622	Gnomon	CDS	1013267	1013377	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1016376	1016462	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1017063	1017257	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1017318	1017447	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1020699	1020820	.	+	2	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1020900	1021019	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1021100	1021225	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1022984	1023132	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1023198	1023323	.	+	1	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1023383	1023557	.	+	1	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1025656	1025763	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1025829	1025993	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1026056	1026200	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1026287	1026495	.	+	2	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1026566	1026625	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1026689	1026882	.	+	0	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1029791	1029881	.	+	1	ID=cds208;Parent=rna228;Dbxref=GeneID:100163487,Genbank:XP_001951289.2,APHIDBASE:ACYPI004573;Name=XP_001951289.2;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_001951289.2
+GL349622	Gnomon	CDS	1013267	1013377	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1016376	1016462	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1017063	1017257	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1017318	1017447	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1020699	1020820	.	+	2	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1020900	1021019	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1021100	1021225	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1022984	1023132	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1023198	1023323	.	+	1	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1023383	1023557	.	+	1	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1025656	1025763	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1025829	1025993	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1026056	1026200	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1026287	1026495	.	+	2	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1026566	1026625	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1026689	1026882	.	+	0	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1029791	1029881	.	+	1	ID=cds209;Parent=rna229;Dbxref=GeneID:100163487,Genbank:XP_008184782.1,APHIDBASE:ACYPI004573;Name=XP_008184782.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184782.1
+GL349622	Gnomon	CDS	1013267	1013377	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1016376	1016462	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1017063	1017257	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1017318	1017447	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1020699	1020820	.	+	2	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1020900	1021019	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1021100	1021225	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1022984	1023132	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1023198	1023323	.	+	1	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1023383	1023557	.	+	1	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1025656	1025763	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1025829	1025993	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1026056	1026200	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1026287	1026495	.	+	2	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1026566	1026625	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1026689	1026882	.	+	0	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	CDS	1029791	1029881	.	+	1	ID=cds210;Parent=rna227;Dbxref=GeneID:100163487,Genbank:XP_008184814.1,APHIDBASE:ACYPI004573;Name=XP_008184814.1;gbkey=CDS;gene=LOC100163487;product=pre-mRNA-processing factor 39-like;protein_id=XP_008184814.1
+GL349622	Gnomon	gene	1027699	1029369	.	+	.	ID=gene160;Dbxref=GeneID:103309860;Name=LOC103309860;gbkey=Gene;gene=LOC103309860;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1027699	1029369	.	+	.	ID=rna230;Parent=gene160;Dbxref=GeneID:103309860,Genbank:XM_016808364.1;Name=XM_016808364.1;gbkey=mRNA;gene=LOC103309860;model_evidence=Supporting evidence includes similarity to: 11 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=fumarylacetoacetase;transcript_id=XM_016808364.1
+GL349622	Gnomon	exon	1027699	1029369	.	+	.	ID=id2020;Parent=rna230;Dbxref=GeneID:103309860,Genbank:XM_016808364.1;gbkey=mRNA;gene=LOC103309860;product=fumarylacetoacetase;transcript_id=XM_016808364.1
+GL349622	Gnomon	CDS	1027876	1029108	.	+	0	ID=cds211;Parent=rna230;Dbxref=GeneID:103309860,Genbank:XP_016663853.1;Name=XP_016663853.1;gbkey=CDS;gene=LOC103309860;product=fumarylacetoacetase;protein_id=XP_016663853.1
+GL349622	Gnomon	gene	1030338	1043929	.	-	.	ID=gene161;Dbxref=APHIDBASE:ACYPI006485,GeneID:100165543;Name=LOC100165543;gbkey=Gene;gene=LOC100165543;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1030338	1043929	.	-	.	ID=rna231;Parent=gene161;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;Name=XM_001951241.4;gbkey=mRNA;gene=LOC100165543;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1043417	1043929	.	-	.	ID=id2021;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1043150	1043346	.	-	.	ID=id2022;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1042953	1043089	.	-	.	ID=id2023;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1042643	1042889	.	-	.	ID=id2024;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1042335	1042565	.	-	.	ID=id2025;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1042109	1042268	.	-	.	ID=id2026;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1041833	1042040	.	-	.	ID=id2027;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1041464	1041755	.	-	.	ID=id2028;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1041018	1041106	.	-	.	ID=id2029;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1040830	1040929	.	-	.	ID=id2030;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1040541	1040721	.	-	.	ID=id2031;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1039330	1039451	.	-	.	ID=id2032;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1039026	1039263	.	-	.	ID=id2033;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1038524	1038725	.	-	.	ID=id2034;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1038374	1038464	.	-	.	ID=id2035;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1038116	1038290	.	-	.	ID=id2036;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1037857	1038034	.	-	.	ID=id2037;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1036958	1037116	.	-	.	ID=id2038;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1036760	1036895	.	-	.	ID=id2039;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1036457	1036591	.	-	.	ID=id2040;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1036030	1036383	.	-	.	ID=id2041;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1034709	1034920	.	-	.	ID=id2042;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1033932	1034124	.	-	.	ID=id2043;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1033427	1033494	.	-	.	ID=id2044;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1033180	1033279	.	-	.	ID=id2045;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1032993	1033066	.	-	.	ID=id2046;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1032786	1032906	.	-	.	ID=id2047;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1031998	1032206	.	-	.	ID=id2048;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1031869	1031937	.	-	.	ID=id2049;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1031605	1031803	.	-	.	ID=id2050;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1031413	1031515	.	-	.	ID=id2051;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	exon	1030338	1030521	.	-	.	ID=id2052;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XM_001951241.4,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X2;transcript_id=XM_001951241.4
+GL349622	Gnomon	mRNA	1030338	1043929	.	-	.	ID=rna232;Parent=gene161;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;Name=XM_008186639.2;gbkey=mRNA;gene=LOC100165543;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 9 samples with support for all annotated introns;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1043417	1043929	.	-	.	ID=id2053;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1043150	1043346	.	-	.	ID=id2054;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1042953	1043089	.	-	.	ID=id2055;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1042643	1042889	.	-	.	ID=id2056;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1042335	1042565	.	-	.	ID=id2057;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1042109	1042268	.	-	.	ID=id2058;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1041833	1042040	.	-	.	ID=id2059;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1041464	1041755	.	-	.	ID=id2060;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1041018	1041106	.	-	.	ID=id2061;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1040830	1040929	.	-	.	ID=id2062;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1040541	1040721	.	-	.	ID=id2063;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1039330	1039451	.	-	.	ID=id2064;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1039026	1039263	.	-	.	ID=id2065;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1038524	1038725	.	-	.	ID=id2066;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1038374	1038464	.	-	.	ID=id2067;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1038116	1038290	.	-	.	ID=id2068;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1037857	1038034	.	-	.	ID=id2069;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1036958	1037116	.	-	.	ID=id2070;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1036760	1036895	.	-	.	ID=id2071;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1036457	1036591	.	-	.	ID=id2072;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1036030	1036383	.	-	.	ID=id2073;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1034709	1034920	.	-	.	ID=id2074;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1033932	1034124	.	-	.	ID=id2075;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1033427	1033494	.	-	.	ID=id2076;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1033180	1033279	.	-	.	ID=id2077;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1032993	1033066	.	-	.	ID=id2078;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1032786	1032906	.	-	.	ID=id2079;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1031998	1032206	.	-	.	ID=id2080;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1031869	1031937	.	-	.	ID=id2081;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1031587	1031803	.	-	.	ID=id2082;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1031413	1031515	.	-	.	ID=id2083;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	exon	1030338	1030521	.	-	.	ID=id2084;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XM_008186639.2,APHIDBASE:ACYPI006485;gbkey=mRNA;gene=LOC100165543;product=general transcription factor 3C polypeptide 1%2C transcript variant X1;transcript_id=XM_008186639.2
+GL349622	Gnomon	CDS	1043417	1043498	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1043150	1043346	.	-	2	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1042953	1043089	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1042643	1042889	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1042335	1042565	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1042109	1042268	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1041833	1042040	.	-	2	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1041464	1041755	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1041018	1041106	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1040830	1040929	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1040541	1040721	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1039330	1039451	.	-	2	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1039026	1039263	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1038524	1038725	.	-	2	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1038374	1038464	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1038116	1038290	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1037857	1038034	.	-	2	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1036958	1037116	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1036760	1036895	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1036457	1036591	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1036030	1036383	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1034709	1034920	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1033932	1034124	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1033427	1033494	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1033180	1033279	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1032993	1033066	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1032786	1032906	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1031998	1032206	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1031869	1031937	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1031605	1031803	.	-	1	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1031413	1031515	.	-	0	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1030412	1030521	.	-	2	ID=cds212;Parent=rna231;Dbxref=GeneID:100165543,Genbank:XP_001951276.2,APHIDBASE:ACYPI006485;Name=XP_001951276.2;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X2;protein_id=XP_001951276.2
+GL349622	Gnomon	CDS	1043417	1043498	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1043150	1043346	.	-	2	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1042953	1043089	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1042643	1042889	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1042335	1042565	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1042109	1042268	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1041833	1042040	.	-	2	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1041464	1041755	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1041018	1041106	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1040830	1040929	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1040541	1040721	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1039330	1039451	.	-	2	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1039026	1039263	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1038524	1038725	.	-	2	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1038374	1038464	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1038116	1038290	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1037857	1038034	.	-	2	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1036958	1037116	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1036760	1036895	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1036457	1036591	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1036030	1036383	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1034709	1034920	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1033932	1034124	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1033427	1033494	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1033180	1033279	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1032993	1033066	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1032786	1032906	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1031998	1032206	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1031869	1031937	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1031587	1031803	.	-	1	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1031413	1031515	.	-	0	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	CDS	1030412	1030521	.	-	2	ID=cds213;Parent=rna232;Dbxref=GeneID:100165543,Genbank:XP_008184861.1,APHIDBASE:ACYPI006485;Name=XP_008184861.1;gbkey=CDS;gene=LOC100165543;product=general transcription factor 3C polypeptide 1 isoform X1;protein_id=XP_008184861.1
+GL349622	Gnomon	gene	1073980	1094548	.	-	.	ID=gene162;Dbxref=APHIDBASE:ACYPI001389,GeneID:100160057;Name=LOC100160057;gbkey=Gene;gene=LOC100160057;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1073980	1094548	.	-	.	ID=rna233;Parent=gene162;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;Name=XM_016806012.1;gbkey=mRNA;gene=LOC100160057;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 11 Proteins%2C and 96%25 coverage of the annotated genomic feature by RNAseq alignments;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1094126	1094548	.	-	.	ID=id2085;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1092285	1092445	.	-	.	ID=id2086;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1091264	1091791	.	-	.	ID=id2087;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1090940	1091201	.	-	.	ID=id2088;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1089672	1089842	.	-	.	ID=id2089;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1089405	1089502	.	-	.	ID=id2090;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1089204	1089338	.	-	.	ID=id2091;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1088983	1089144	.	-	.	ID=id2092;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1088671	1088893	.	-	.	ID=id2093;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1088485	1088609	.	-	.	ID=id2094;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1088216	1088419	.	-	.	ID=id2095;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1086978	1087197	.	-	.	ID=id2096;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1086759	1086888	.	-	.	ID=id2097;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1086584	1086697	.	-	.	ID=id2098;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1086371	1086479	.	-	.	ID=id2099;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1086127	1086267	.	-	.	ID=id2100;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1081309	1081370	.	-	.	ID=id2101;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1081002	1081221	.	-	.	ID=id2102;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1078788	1079312	.	-	.	ID=id2103;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1078464	1078725	.	-	.	ID=id2104;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1078163	1078333	.	-	.	ID=id2105;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1077910	1078007	.	-	.	ID=id2106;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1077255	1077389	.	-	.	ID=id2107;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1077033	1077194	.	-	.	ID=id2108;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1076200	1076422	.	-	.	ID=id2109;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1076022	1076146	.	-	.	ID=id2110;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1075758	1075961	.	-	.	ID=id2111;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1075042	1075261	.	-	.	ID=id2112;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1074818	1074947	.	-	.	ID=id2113;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1074646	1074759	.	-	.	ID=id2114;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1074452	1074560	.	-	.	ID=id2115;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	exon	1073980	1074322	.	-	.	ID=id2116;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XM_016806012.1,APHIDBASE:ACYPI001389;gbkey=mRNA;gene=LOC100160057;product=uncharacterized LOC100160057;transcript_id=XM_016806012.1
+GL349622	Gnomon	CDS	1092285	1092410	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1091264	1091791	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1090940	1091201	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1089672	1089842	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1089405	1089502	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1089204	1089338	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1088983	1089144	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1088671	1088893	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1088485	1088609	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1088216	1088419	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1086978	1087197	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1086759	1086888	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1086584	1086697	.	-	1	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1086371	1086479	.	-	1	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1086127	1086267	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1081309	1081370	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1081002	1081221	.	-	1	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1078788	1079312	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1078464	1078725	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1078163	1078333	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1077910	1078007	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1077255	1077389	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1077033	1077194	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1076200	1076422	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1076022	1076146	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1075758	1075961	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1075042	1075261	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1074818	1074947	.	-	2	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1074646	1074759	.	-	1	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1074452	1074560	.	-	1	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	Gnomon	CDS	1074179	1074322	.	-	0	ID=cds214;Parent=rna233;Dbxref=GeneID:100160057,Genbank:XP_016661501.1,APHIDBASE:ACYPI001389;Name=XP_016661501.1;gbkey=CDS;gene=LOC100160057;product=uncharacterized protein LOC100160057;protein_id=XP_016661501.1
+GL349622	BestRefSeq	gene	1107340	1114955	.	-	.	ID=gene163;Dbxref=APHIDBASE:ACYPI008967,GeneID:100168247;Name=Enpep;description=glutamyl aminopeptidase;gbkey=Gene;gene=Enpep;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	1107340	1114955	.	-	.	ID=rna234;Parent=gene163;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;Name=NM_001205267.1;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1114776	1114955	.	-	.	ID=id2117;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1113066	1113319	.	-	.	ID=id2118;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1111864	1112391	.	-	.	ID=id2119;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1111535	1111796	.	-	.	ID=id2120;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1111212	1111385	.	-	.	ID=id2121;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1110957	1111054	.	-	.	ID=id2122;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1110754	1110888	.	-	.	ID=id2123;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1110533	1110694	.	-	.	ID=id2124;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1110221	1110443	.	-	.	ID=id2125;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1110036	1110160	.	-	.	ID=id2126;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1109773	1109976	.	-	.	ID=id2127;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1108383	1108602	.	-	.	ID=id2128;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1108160	1108289	.	-	.	ID=id2129;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1107993	1108106	.	-	.	ID=id2130;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1107787	1107895	.	-	.	ID=id2131;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	exon	1107340	1107650	.	-	.	ID=id2132;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NM_001205267.1,APHIDBASE:ACYPI008967;gbkey=mRNA;gene=Enpep;product=glutamyl aminopeptidase;transcript_id=NM_001205267.1
+GL349622	BestRefSeq	CDS	1113066	1113227	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1111864	1112391	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1111535	1111796	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1111212	1111385	.	-	2	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1110957	1111054	.	-	2	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1110754	1110888	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1110533	1110694	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1110221	1110443	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1110036	1110160	.	-	2	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1109773	1109976	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1108383	1108602	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1108160	1108289	.	-	2	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1107993	1108106	.	-	1	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1107787	1107895	.	-	1	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	CDS	1107507	1107650	.	-	0	ID=cds215;Parent=rna234;Dbxref=GeneID:100168247,Genbank:NP_001192196.1,APHIDBASE:ACYPI008967;Name=NP_001192196.1;gbkey=CDS;gene=Enpep;product=glutamyl aminopeptidase;protein_id=NP_001192196.1
+GL349622	BestRefSeq	gene	1133813	1136648	.	+	.	ID=gene164;Dbxref=APHIDBASE:ACYPI001350,GeneID:100160016;Name=LOC100160016;description=phosphatidylinositol glycan%2C class P-like;gbkey=Gene;gene=LOC100160016;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	1133813	1136648	.	+	.	ID=rna235;Parent=gene164;Dbxref=GeneID:100160016,Genbank:NM_001161949.2,APHIDBASE:ACYPI001350;Name=NM_001161949.2;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160016;product=phosphatidylinositol glycan%2C class P-like;transcript_id=NM_001161949.2
+GL349622	BestRefSeq	exon	1133813	1133947	.	+	.	ID=id2133;Parent=rna235;Dbxref=GeneID:100160016,Genbank:NM_001161949.2,APHIDBASE:ACYPI001350;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160016;product=phosphatidylinositol glycan%2C class P-like;transcript_id=NM_001161949.2
+GL349622	BestRefSeq	exon	1135804	1135929	.	+	.	ID=id2134;Parent=rna235;Dbxref=GeneID:100160016,Genbank:NM_001161949.2,APHIDBASE:ACYPI001350;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160016;product=phosphatidylinositol glycan%2C class P-like;transcript_id=NM_001161949.2
+GL349622	BestRefSeq	exon	1136029	1136648	.	+	.	ID=id2135;Parent=rna235;Dbxref=GeneID:100160016,Genbank:NM_001161949.2,APHIDBASE:ACYPI001350;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160016;product=phosphatidylinositol glycan%2C class P-like;transcript_id=NM_001161949.2
+GL349622	Gnomon	gene	1133954	1135723	.	+	.	ID=gene165;Dbxref=GeneID:103309958;Name=LOC103309958;gbkey=Gene;gene=LOC103309958;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1133954	1135723	.	+	.	ID=rna236;Parent=gene165;Dbxref=GeneID:103309958,Genbank:XM_008186778.2;Name=XM_008186778.2;gbkey=mRNA;gene=LOC103309958;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=acyl-CoA dehydrogenase family member 9%2C mitochondrial-like;transcript_id=XM_008186778.2
+GL349622	Gnomon	exon	1133954	1135723	.	+	.	ID=id2136;Parent=rna236;Dbxref=GeneID:103309958,Genbank:XM_008186778.2;gbkey=mRNA;gene=LOC103309958;product=acyl-CoA dehydrogenase family member 9%2C mitochondrial-like;transcript_id=XM_008186778.2
+GL349622	Gnomon	CDS	1134005	1135669	.	+	0	ID=cds216;Parent=rna236;Dbxref=GeneID:103309958,Genbank:XP_008185000.1;Name=XP_008185000.1;gbkey=CDS;gene=LOC103309958;product=acyl-CoA dehydrogenase family member 9%2C mitochondrial-like;protein_id=XP_008185000.1
+GL349622	BestRefSeq	CDS	1136148	1136558	.	+	0	ID=cds217;Parent=rna235;Dbxref=GeneID:100160016,Genbank:NP_001155421.1,APHIDBASE:ACYPI001350;Name=NP_001155421.1;gbkey=CDS;gene=LOC100160016;product=phosphatidylinositol glycan%2C class P-like;protein_id=NP_001155421.1
+GL349622	Gnomon	gene	1137507	1151641	.	-	.	ID=gene166;Dbxref=GeneID:100166813;Name=LOC100166813;gbkey=Gene;gene=LOC100166813;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1137507	1151641	.	-	.	ID=rna237;Parent=gene166;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;Name=XM_003240043.2;gbkey=mRNA;gene=LOC100166813;model_evidence=Supporting evidence includes similarity to: 10 ESTs%2C 6 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 12 samples with support for all annotated introns;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1151492	1151641	.	-	.	ID=id2137;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1150135	1150372	.	-	.	ID=id2138;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1142352	1142879	.	-	.	ID=id2139;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1142028	1142289	.	-	.	ID=id2140;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1141768	1141938	.	-	.	ID=id2141;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1141567	1141664	.	-	.	ID=id2142;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1141362	1141496	.	-	.	ID=id2143;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1141138	1141299	.	-	.	ID=id2144;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1140854	1141076	.	-	.	ID=id2145;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1140669	1140793	.	-	.	ID=id2146;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1140405	1140608	.	-	.	ID=id2147;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1138674	1138893	.	-	.	ID=id2148;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1138462	1138591	.	-	.	ID=id2149;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1138286	1138399	.	-	.	ID=id2150;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1138107	1138215	.	-	.	ID=id2151;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	exon	1137507	1137983	.	-	.	ID=id2152;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XM_003240043.2;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X1;transcript_id=XM_003240043.2
+GL349622	Gnomon	mRNA	1137507	1143382	.	-	.	ID=rna238;Parent=gene166;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;Name=XM_003240044.3;gbkey=mRNA;gene=LOC100166813;model_evidence=Supporting evidence includes similarity to: 9 ESTs%2C 5 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 24 samples with support for all annotated introns;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1143077	1143382	.	-	.	ID=id2153;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1142352	1142879	.	-	.	ID=id2154;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1142028	1142289	.	-	.	ID=id2155;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1141768	1141938	.	-	.	ID=id2156;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1141567	1141664	.	-	.	ID=id2157;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1141362	1141496	.	-	.	ID=id2158;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1141138	1141299	.	-	.	ID=id2159;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1140854	1141076	.	-	.	ID=id2160;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1140669	1140793	.	-	.	ID=id2161;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1140405	1140608	.	-	.	ID=id2162;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1138674	1138893	.	-	.	ID=id2163;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1138462	1138591	.	-	.	ID=id2164;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1138286	1138399	.	-	.	ID=id2165;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1138107	1138215	.	-	.	ID=id2166;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	exon	1137507	1137983	.	-	.	ID=id2167;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XM_003240044.3;gbkey=mRNA;gene=LOC100166813;product=glutamyl aminopeptidase%2C transcript variant X2;transcript_id=XM_003240044.3
+GL349622	Gnomon	CDS	1150135	1150299	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1142352	1142879	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1142028	1142289	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1141768	1141938	.	-	2	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1141567	1141664	.	-	2	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1141362	1141496	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1141138	1141299	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1140854	1141076	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1140669	1140793	.	-	2	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1140405	1140608	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1138674	1138893	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1138462	1138591	.	-	2	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1138286	1138399	.	-	1	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1138107	1138215	.	-	1	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1137840	1137983	.	-	0	ID=cds218;Parent=rna237;Dbxref=GeneID:100166813,Genbank:XP_003240091.1;Name=XP_003240091.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X1;protein_id=XP_003240091.1
+GL349622	Gnomon	CDS	1143077	1143097	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1142352	1142879	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1142028	1142289	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1141768	1141938	.	-	2	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1141567	1141664	.	-	2	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1141362	1141496	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1141138	1141299	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1140854	1141076	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1140669	1140793	.	-	2	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1140405	1140608	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1138674	1138893	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1138462	1138591	.	-	2	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1138286	1138399	.	-	1	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1138107	1138215	.	-	1	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	CDS	1137840	1137983	.	-	0	ID=cds219;Parent=rna238;Dbxref=GeneID:100166813,Genbank:XP_003240092.1;Name=XP_003240092.1;gbkey=CDS;gene=LOC100166813;product=glutamyl aminopeptidase isoform X2;protein_id=XP_003240092.1
+GL349622	Gnomon	gene	1159150	1159545	.	+	.	ID=gene167;Dbxref=APHIDBASE:ACYPI001126,GeneID:100159779;Name=LOC100159779;gbkey=Gene;gene=LOC100159779;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1159150	1159545	.	+	.	ID=rna239;Parent=gene167;Dbxref=GeneID:100159779,Genbank:XM_008191055.1,APHIDBASE:ACYPI001126;Name=XM_008191055.1;gbkey=mRNA;gene=LOC100159779;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC100159779;transcript_id=XM_008191055.1
+GL349622	Gnomon	exon	1159150	1159545	.	+	.	ID=id2168;Parent=rna239;Dbxref=GeneID:100159779,Genbank:XM_008191055.1,APHIDBASE:ACYPI001126;gbkey=mRNA;gene=LOC100159779;product=uncharacterized LOC100159779;transcript_id=XM_008191055.1
+GL349622	Gnomon	CDS	1159150	1159545	.	+	0	ID=cds220;Parent=rna239;Dbxref=GeneID:100159779,Genbank:XP_008189277.1,APHIDBASE:ACYPI001126;Name=XP_008189277.1;gbkey=CDS;gene=LOC100159779;product=uncharacterized protein LOC100159779;protein_id=XP_008189277.1
+GL349622	Gnomon	gene	1173640	1174512	.	+	.	ID=gene168;Dbxref=GeneID:107884305;Name=LOC107884305;gbkey=Gene;gene=LOC107884305;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1173640	1174512	.	+	.	ID=rna240;Parent=gene168;Dbxref=GeneID:107884305,Genbank:XM_016806094.1;Name=XM_016806094.1;gbkey=mRNA;gene=LOC107884305;model_evidence=Supporting evidence includes similarity to: 92%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=uncharacterized LOC107884305;transcript_id=XM_016806094.1
+GL349622	Gnomon	exon	1173640	1173686	.	+	.	ID=id2169;Parent=rna240;Dbxref=GeneID:107884305,Genbank:XM_016806094.1;gbkey=mRNA;gene=LOC107884305;product=uncharacterized LOC107884305;transcript_id=XM_016806094.1
+GL349622	Gnomon	exon	1173971	1174512	.	+	.	ID=id2170;Parent=rna240;Dbxref=GeneID:107884305,Genbank:XM_016806094.1;gbkey=mRNA;gene=LOC107884305;product=uncharacterized LOC107884305;transcript_id=XM_016806094.1
+GL349622	Gnomon	CDS	1173668	1173686	.	+	0	ID=cds221;Parent=rna240;Dbxref=GeneID:107884305,Genbank:XP_016661583.1;Name=XP_016661583.1;gbkey=CDS;gene=LOC107884305;product=uncharacterized protein LOC107884305;protein_id=XP_016661583.1
+GL349622	Gnomon	CDS	1173971	1174512	.	+	2	ID=cds221;Parent=rna240;Dbxref=GeneID:107884305,Genbank:XP_016661583.1;Name=XP_016661583.1;gbkey=CDS;gene=LOC107884305;product=uncharacterized protein LOC107884305;protein_id=XP_016661583.1
+GL349622	Gnomon	gene	1184737	1186035	.	-	.	ID=gene169;Dbxref=GeneID:107884322;Name=LOC107884322;gbkey=Gene;gene=LOC107884322;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1184737	1186035	.	-	.	ID=rna241;Parent=gene169;Dbxref=GeneID:107884322,Genbank:XM_016806134.1;Name=XM_016806134.1;gbkey=mRNA;gene=LOC107884322;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC107884322;transcript_id=XM_016806134.1
+GL349622	Gnomon	exon	1185831	1186035	.	-	.	ID=id2171;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XM_016806134.1;gbkey=mRNA;gene=LOC107884322;product=uncharacterized LOC107884322;transcript_id=XM_016806134.1
+GL349622	Gnomon	exon	1185461	1185653	.	-	.	ID=id2172;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XM_016806134.1;gbkey=mRNA;gene=LOC107884322;product=uncharacterized LOC107884322;transcript_id=XM_016806134.1
+GL349622	Gnomon	exon	1185271	1185376	.	-	.	ID=id2173;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XM_016806134.1;gbkey=mRNA;gene=LOC107884322;product=uncharacterized LOC107884322;transcript_id=XM_016806134.1
+GL349622	Gnomon	exon	1184737	1185135	.	-	.	ID=id2174;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XM_016806134.1;gbkey=mRNA;gene=LOC107884322;product=uncharacterized LOC107884322;transcript_id=XM_016806134.1
+GL349622	Gnomon	CDS	1185831	1186035	.	-	0	ID=cds222;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XP_016661623.1;Name=XP_016661623.1;gbkey=CDS;gene=LOC107884322;product=uncharacterized protein LOC107884322;protein_id=XP_016661623.1
+GL349622	Gnomon	CDS	1185461	1185653	.	-	2	ID=cds222;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XP_016661623.1;Name=XP_016661623.1;gbkey=CDS;gene=LOC107884322;product=uncharacterized protein LOC107884322;protein_id=XP_016661623.1
+GL349622	Gnomon	CDS	1185271	1185376	.	-	1	ID=cds222;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XP_016661623.1;Name=XP_016661623.1;gbkey=CDS;gene=LOC107884322;product=uncharacterized protein LOC107884322;protein_id=XP_016661623.1
+GL349622	Gnomon	CDS	1184737	1185135	.	-	0	ID=cds222;Parent=rna241;Dbxref=GeneID:107884322,Genbank:XP_016661623.1;Name=XP_016661623.1;gbkey=CDS;gene=LOC107884322;product=uncharacterized protein LOC107884322;protein_id=XP_016661623.1
+GL349622	Gnomon	gene	1186072	1187039	.	-	.	ID=gene170;Dbxref=GeneID:100571607;Name=LOC100571607;gbkey=Gene;gene=LOC100571607;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1186072	1187039	.	-	.	ID=rna242;Parent=gene170;Dbxref=GeneID:100571607,Genbank:XM_008191119.1;Name=XM_008191119.1;gbkey=mRNA;gene=LOC100571607;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC100571607;transcript_id=XM_008191119.1
+GL349622	Gnomon	exon	1187017	1187039	.	-	.	ID=id2175;Parent=rna242;Dbxref=GeneID:100571607,Genbank:XM_008191119.1;gbkey=mRNA;gene=LOC100571607;product=uncharacterized LOC100571607;transcript_id=XM_008191119.1
+GL349622	Gnomon	exon	1186072	1186921	.	-	.	ID=id2176;Parent=rna242;Dbxref=GeneID:100571607,Genbank:XM_008191119.1;gbkey=mRNA;gene=LOC100571607;product=uncharacterized LOC100571607;transcript_id=XM_008191119.1
+GL349622	Gnomon	CDS	1187017	1187039	.	-	0	ID=cds223;Parent=rna242;Dbxref=GeneID:100571607,Genbank:XP_008189341.1;Name=XP_008189341.1;gbkey=CDS;gene=LOC100571607;product=uncharacterized protein LOC100571607;protein_id=XP_008189341.1
+GL349622	Gnomon	CDS	1186072	1186921	.	-	1	ID=cds223;Parent=rna242;Dbxref=GeneID:100571607,Genbank:XP_008189341.1;Name=XP_008189341.1;gbkey=CDS;gene=LOC100571607;product=uncharacterized protein LOC100571607;protein_id=XP_008189341.1
+GL349622	Gnomon	gene	1304532	1352974	.	-	.	ID=gene171;Dbxref=APHIDBASE:ACYPI002989,GeneID:100161792;Name=LOC100161792;gbkey=Gene;gene=LOC100161792;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1304532	1352974	.	-	.	ID=rna243;Parent=gene171;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;Name=XM_008187118.2;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 17 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 23 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1352626	1352974	.	-	.	ID=id2177;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1312853	1312950	.	-	.	ID=id2178;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1311664	1311854	.	-	.	ID=id2179;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1308952	1309035	.	-	.	ID=id2180;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1308641	1308697	.	-	.	ID=id2181;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1308443	1308548	.	-	.	ID=id2182;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1307486	1307784	.	-	.	ID=id2183;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	exon	1304532	1305931	.	-	.	ID=id2184;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XM_008187118.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X5;transcript_id=XM_008187118.2
+GL349622	Gnomon	mRNA	1304532	1329186	.	-	.	ID=rna244;Parent=gene171;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;Name=XM_003240046.3;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 17 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 31 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1328532	1329186	.	-	.	ID=id2185;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1312853	1312950	.	-	.	ID=id2186;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1311664	1311854	.	-	.	ID=id2187;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1308952	1309035	.	-	.	ID=id2188;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1308641	1308697	.	-	.	ID=id2189;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1308443	1308548	.	-	.	ID=id2190;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1307486	1307784	.	-	.	ID=id2191;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	exon	1304532	1305931	.	-	.	ID=id2192;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XM_003240046.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X3;transcript_id=XM_003240046.3
+GL349622	Gnomon	mRNA	1304532	1319408	.	-	.	ID=rna245;Parent=gene171;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;Name=XM_001943165.3;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 23 ESTs%2C 13 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1319375	1319408	.	-	.	ID=id2193;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1319069	1319207	.	-	.	ID=id2194;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1312853	1312950	.	-	.	ID=id2195;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1311664	1311854	.	-	.	ID=id2196;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1310471	1310551	.	-	.	ID=id2197;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1308641	1308697	.	-	.	ID=id2198;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1308443	1308548	.	-	.	ID=id2199;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1307486	1307784	.	-	.	ID=id2200;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	exon	1304532	1305931	.	-	.	ID=id2201;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XM_001943165.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X7;transcript_id=XM_001943165.3
+GL349622	Gnomon	mRNA	1304532	1319403	.	-	.	ID=rna246;Parent=gene171;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;Name=XM_008187024.1;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 18 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1319375	1319403	.	-	.	ID=id2202;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1319069	1319207	.	-	.	ID=id2203;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1312853	1312950	.	-	.	ID=id2204;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1311664	1311854	.	-	.	ID=id2205;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1308952	1309035	.	-	.	ID=id2206;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1308641	1308697	.	-	.	ID=id2207;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1308443	1308548	.	-	.	ID=id2208;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1307486	1307784	.	-	.	ID=id2209;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	exon	1304532	1305931	.	-	.	ID=id2210;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XM_008187024.1,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X2;transcript_id=XM_008187024.1
+GL349622	Gnomon	mRNA	1304532	1314189	.	-	.	ID=rna247;Parent=gene171;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;Name=XM_008187079.2;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 17 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 17 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1314044	1314189	.	-	.	ID=id2211;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1312853	1312950	.	-	.	ID=id2212;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1311664	1311854	.	-	.	ID=id2213;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1308952	1309035	.	-	.	ID=id2214;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1308641	1308697	.	-	.	ID=id2215;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1308443	1308548	.	-	.	ID=id2216;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1307486	1307784	.	-	.	ID=id2217;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	exon	1304532	1305931	.	-	.	ID=id2218;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XM_008187079.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X4;transcript_id=XM_008187079.2
+GL349622	Gnomon	mRNA	1304532	1313340	.	-	.	ID=rna248;Parent=gene171;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;Name=XM_008186942.2;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 21 ESTs%2C 16 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 37 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1313109	1313340	.	-	.	ID=id2219;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1312853	1312950	.	-	.	ID=id2220;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1311664	1311854	.	-	.	ID=id2221;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1308952	1309035	.	-	.	ID=id2222;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1308641	1308697	.	-	.	ID=id2223;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1308443	1308548	.	-	.	ID=id2224;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1307486	1307784	.	-	.	ID=id2225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	exon	1304532	1305931	.	-	.	ID=id2226;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XM_008186942.2,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X1;transcript_id=XM_008186942.2
+GL349622	Gnomon	mRNA	1304532	1313340	.	-	.	ID=rna249;Parent=gene171;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;Name=XM_003240045.3;gbkey=mRNA;gene=LOC100161792;model_evidence=Supporting evidence includes similarity to: 21 ESTs%2C 13 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 37 samples with support for all annotated introns;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1313109	1313340	.	-	.	ID=id2227;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1312853	1312950	.	-	.	ID=id2228;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1311664	1311854	.	-	.	ID=id2229;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1310471	1310551	.	-	.	ID=id2230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1308641	1308697	.	-	.	ID=id2231;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1308443	1308548	.	-	.	ID=id2232;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1307486	1307784	.	-	.	ID=id2233;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	exon	1304532	1305931	.	-	.	ID=id2234;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XM_003240045.3,APHIDBASE:ACYPI002989;gbkey=mRNA;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004%2C transcript variant X6;transcript_id=XM_003240045.3
+GL349622	Gnomon	CDS	1312853	1312901	.	-	0	ID=cds224;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XP_003240094.1,APHIDBASE:ACYPI002989;Name=XP_003240094.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_003240094.1
+GL349622	Gnomon	CDS	1311664	1311854	.	-	2	ID=cds224;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XP_003240094.1,APHIDBASE:ACYPI002989;Name=XP_003240094.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_003240094.1
+GL349622	Gnomon	CDS	1308952	1309035	.	-	0	ID=cds224;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XP_003240094.1,APHIDBASE:ACYPI002989;Name=XP_003240094.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_003240094.1
+GL349622	Gnomon	CDS	1308641	1308697	.	-	0	ID=cds224;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XP_003240094.1,APHIDBASE:ACYPI002989;Name=XP_003240094.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_003240094.1
+GL349622	Gnomon	CDS	1308443	1308548	.	-	0	ID=cds224;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XP_003240094.1,APHIDBASE:ACYPI002989;Name=XP_003240094.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_003240094.1
+GL349622	Gnomon	CDS	1307486	1307784	.	-	2	ID=cds224;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XP_003240094.1,APHIDBASE:ACYPI002989;Name=XP_003240094.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_003240094.1
+GL349622	Gnomon	CDS	1305791	1305931	.	-	0	ID=cds224;Parent=rna244;Dbxref=GeneID:100161792,Genbank:XP_003240094.1,APHIDBASE:ACYPI002989;Name=XP_003240094.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_003240094.1
+GL349622	Gnomon	CDS	1312853	1312901	.	-	0	ID=cds225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XP_008185164.1,APHIDBASE:ACYPI002989;Name=XP_008185164.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185164.1
+GL349622	Gnomon	CDS	1311664	1311854	.	-	2	ID=cds225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XP_008185164.1,APHIDBASE:ACYPI002989;Name=XP_008185164.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185164.1
+GL349622	Gnomon	CDS	1308952	1309035	.	-	0	ID=cds225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XP_008185164.1,APHIDBASE:ACYPI002989;Name=XP_008185164.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185164.1
+GL349622	Gnomon	CDS	1308641	1308697	.	-	0	ID=cds225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XP_008185164.1,APHIDBASE:ACYPI002989;Name=XP_008185164.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185164.1
+GL349622	Gnomon	CDS	1308443	1308548	.	-	0	ID=cds225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XP_008185164.1,APHIDBASE:ACYPI002989;Name=XP_008185164.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185164.1
+GL349622	Gnomon	CDS	1307486	1307784	.	-	2	ID=cds225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XP_008185164.1,APHIDBASE:ACYPI002989;Name=XP_008185164.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185164.1
+GL349622	Gnomon	CDS	1305791	1305931	.	-	0	ID=cds225;Parent=rna248;Dbxref=GeneID:100161792,Genbank:XP_008185164.1,APHIDBASE:ACYPI002989;Name=XP_008185164.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185164.1
+GL349622	Gnomon	CDS	1312853	1312901	.	-	0	ID=cds226;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XP_008185246.1,APHIDBASE:ACYPI002989;Name=XP_008185246.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185246.1
+GL349622	Gnomon	CDS	1311664	1311854	.	-	2	ID=cds226;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XP_008185246.1,APHIDBASE:ACYPI002989;Name=XP_008185246.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185246.1
+GL349622	Gnomon	CDS	1308952	1309035	.	-	0	ID=cds226;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XP_008185246.1,APHIDBASE:ACYPI002989;Name=XP_008185246.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185246.1
+GL349622	Gnomon	CDS	1308641	1308697	.	-	0	ID=cds226;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XP_008185246.1,APHIDBASE:ACYPI002989;Name=XP_008185246.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185246.1
+GL349622	Gnomon	CDS	1308443	1308548	.	-	0	ID=cds226;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XP_008185246.1,APHIDBASE:ACYPI002989;Name=XP_008185246.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185246.1
+GL349622	Gnomon	CDS	1307486	1307784	.	-	2	ID=cds226;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XP_008185246.1,APHIDBASE:ACYPI002989;Name=XP_008185246.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185246.1
+GL349622	Gnomon	CDS	1305791	1305931	.	-	0	ID=cds226;Parent=rna246;Dbxref=GeneID:100161792,Genbank:XP_008185246.1,APHIDBASE:ACYPI002989;Name=XP_008185246.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185246.1
+GL349622	Gnomon	CDS	1312853	1312901	.	-	0	ID=cds227;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XP_008185301.1,APHIDBASE:ACYPI002989;Name=XP_008185301.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185301.1
+GL349622	Gnomon	CDS	1311664	1311854	.	-	2	ID=cds227;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XP_008185301.1,APHIDBASE:ACYPI002989;Name=XP_008185301.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185301.1
+GL349622	Gnomon	CDS	1308952	1309035	.	-	0	ID=cds227;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XP_008185301.1,APHIDBASE:ACYPI002989;Name=XP_008185301.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185301.1
+GL349622	Gnomon	CDS	1308641	1308697	.	-	0	ID=cds227;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XP_008185301.1,APHIDBASE:ACYPI002989;Name=XP_008185301.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185301.1
+GL349622	Gnomon	CDS	1308443	1308548	.	-	0	ID=cds227;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XP_008185301.1,APHIDBASE:ACYPI002989;Name=XP_008185301.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185301.1
+GL349622	Gnomon	CDS	1307486	1307784	.	-	2	ID=cds227;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XP_008185301.1,APHIDBASE:ACYPI002989;Name=XP_008185301.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185301.1
+GL349622	Gnomon	CDS	1305791	1305931	.	-	0	ID=cds227;Parent=rna247;Dbxref=GeneID:100161792,Genbank:XP_008185301.1,APHIDBASE:ACYPI002989;Name=XP_008185301.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185301.1
+GL349622	Gnomon	CDS	1312853	1312901	.	-	0	ID=cds228;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XP_008185340.1,APHIDBASE:ACYPI002989;Name=XP_008185340.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185340.1
+GL349622	Gnomon	CDS	1311664	1311854	.	-	2	ID=cds228;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XP_008185340.1,APHIDBASE:ACYPI002989;Name=XP_008185340.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185340.1
+GL349622	Gnomon	CDS	1308952	1309035	.	-	0	ID=cds228;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XP_008185340.1,APHIDBASE:ACYPI002989;Name=XP_008185340.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185340.1
+GL349622	Gnomon	CDS	1308641	1308697	.	-	0	ID=cds228;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XP_008185340.1,APHIDBASE:ACYPI002989;Name=XP_008185340.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185340.1
+GL349622	Gnomon	CDS	1308443	1308548	.	-	0	ID=cds228;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XP_008185340.1,APHIDBASE:ACYPI002989;Name=XP_008185340.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185340.1
+GL349622	Gnomon	CDS	1307486	1307784	.	-	2	ID=cds228;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XP_008185340.1,APHIDBASE:ACYPI002989;Name=XP_008185340.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185340.1
+GL349622	Gnomon	CDS	1305791	1305931	.	-	0	ID=cds228;Parent=rna243;Dbxref=GeneID:100161792,Genbank:XP_008185340.1,APHIDBASE:ACYPI002989;Name=XP_008185340.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X1;protein_id=XP_008185340.1
+GL349622	Gnomon	CDS	1312853	1312901	.	-	0	ID=cds229;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XP_001943200.2,APHIDBASE:ACYPI002989;Name=XP_001943200.2;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_001943200.2
+GL349622	Gnomon	CDS	1311664	1311854	.	-	2	ID=cds229;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XP_001943200.2,APHIDBASE:ACYPI002989;Name=XP_001943200.2;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_001943200.2
+GL349622	Gnomon	CDS	1310471	1310551	.	-	0	ID=cds229;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XP_001943200.2,APHIDBASE:ACYPI002989;Name=XP_001943200.2;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_001943200.2
+GL349622	Gnomon	CDS	1308641	1308697	.	-	0	ID=cds229;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XP_001943200.2,APHIDBASE:ACYPI002989;Name=XP_001943200.2;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_001943200.2
+GL349622	Gnomon	CDS	1308443	1308548	.	-	0	ID=cds229;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XP_001943200.2,APHIDBASE:ACYPI002989;Name=XP_001943200.2;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_001943200.2
+GL349622	Gnomon	CDS	1307486	1307784	.	-	2	ID=cds229;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XP_001943200.2,APHIDBASE:ACYPI002989;Name=XP_001943200.2;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_001943200.2
+GL349622	Gnomon	CDS	1305791	1305931	.	-	0	ID=cds229;Parent=rna245;Dbxref=GeneID:100161792,Genbank:XP_001943200.2,APHIDBASE:ACYPI002989;Name=XP_001943200.2;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_001943200.2
+GL349622	Gnomon	CDS	1312853	1312901	.	-	0	ID=cds230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XP_003240093.1,APHIDBASE:ACYPI002989;Name=XP_003240093.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_003240093.1
+GL349622	Gnomon	CDS	1311664	1311854	.	-	2	ID=cds230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XP_003240093.1,APHIDBASE:ACYPI002989;Name=XP_003240093.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_003240093.1
+GL349622	Gnomon	CDS	1310471	1310551	.	-	0	ID=cds230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XP_003240093.1,APHIDBASE:ACYPI002989;Name=XP_003240093.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_003240093.1
+GL349622	Gnomon	CDS	1308641	1308697	.	-	0	ID=cds230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XP_003240093.1,APHIDBASE:ACYPI002989;Name=XP_003240093.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_003240093.1
+GL349622	Gnomon	CDS	1308443	1308548	.	-	0	ID=cds230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XP_003240093.1,APHIDBASE:ACYPI002989;Name=XP_003240093.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_003240093.1
+GL349622	Gnomon	CDS	1307486	1307784	.	-	2	ID=cds230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XP_003240093.1,APHIDBASE:ACYPI002989;Name=XP_003240093.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_003240093.1
+GL349622	Gnomon	CDS	1305791	1305931	.	-	0	ID=cds230;Parent=rna249;Dbxref=GeneID:100161792,Genbank:XP_003240093.1,APHIDBASE:ACYPI002989;Name=XP_003240093.1;gbkey=CDS;gene=LOC100161792;product=elongation of very long chain fatty acids protein AAEL008004 isoform X2;protein_id=XP_003240093.1
+GL349622	Gnomon	gene	1372639	1377114	.	-	.	ID=gene172;Dbxref=APHIDBASE:ACYPI008679,GeneID:100167932;Name=LOC100167932;gbkey=Gene;gene=LOC100167932;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1372639	1377114	.	-	.	ID=rna250;Parent=gene172;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;Name=XM_008187391.2;gbkey=mRNA;gene=LOC100167932;model_evidence=Supporting evidence includes similarity to: 4 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	exon	1376595	1377114	.	-	.	ID=id2235;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	exon	1376404	1376521	.	-	.	ID=id2236;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	exon	1376187	1376336	.	-	.	ID=id2237;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	exon	1375019	1375237	.	-	.	ID=id2238;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	exon	1374715	1374940	.	-	.	ID=id2239;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	exon	1374313	1374567	.	-	.	ID=id2240;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	exon	1372639	1372934	.	-	.	ID=id2241;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XM_008187391.2,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X2;transcript_id=XM_008187391.2
+GL349622	Gnomon	mRNA	1372639	1377112	.	-	.	ID=rna251;Parent=gene172;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;Name=XM_001942975.4;gbkey=mRNA;gene=LOC100167932;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 37 samples with support for all annotated introns;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	exon	1376595	1377112	.	-	.	ID=id2242;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	exon	1376404	1376524	.	-	.	ID=id2243;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	exon	1376187	1376336	.	-	.	ID=id2244;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	exon	1375019	1375237	.	-	.	ID=id2245;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	exon	1374715	1374940	.	-	.	ID=id2246;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	exon	1374313	1374567	.	-	.	ID=id2247;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	exon	1372639	1372934	.	-	.	ID=id2248;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XM_001942975.4,APHIDBASE:ACYPI008679;gbkey=mRNA;gene=LOC100167932;product=uncharacterized LOC100167932%2C transcript variant X1;transcript_id=XM_001942975.4
+GL349622	Gnomon	CDS	1376595	1376599	.	-	0	ID=cds231;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XP_008185613.1,APHIDBASE:ACYPI008679;Name=XP_008185613.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X2;protein_id=XP_008185613.1
+GL349622	Gnomon	CDS	1376404	1376521	.	-	1	ID=cds231;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XP_008185613.1,APHIDBASE:ACYPI008679;Name=XP_008185613.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X2;protein_id=XP_008185613.1
+GL349622	Gnomon	CDS	1376187	1376336	.	-	0	ID=cds231;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XP_008185613.1,APHIDBASE:ACYPI008679;Name=XP_008185613.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X2;protein_id=XP_008185613.1
+GL349622	Gnomon	CDS	1375019	1375237	.	-	0	ID=cds231;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XP_008185613.1,APHIDBASE:ACYPI008679;Name=XP_008185613.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X2;protein_id=XP_008185613.1
+GL349622	Gnomon	CDS	1374715	1374940	.	-	0	ID=cds231;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XP_008185613.1,APHIDBASE:ACYPI008679;Name=XP_008185613.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X2;protein_id=XP_008185613.1
+GL349622	Gnomon	CDS	1374313	1374567	.	-	2	ID=cds231;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XP_008185613.1,APHIDBASE:ACYPI008679;Name=XP_008185613.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X2;protein_id=XP_008185613.1
+GL349622	Gnomon	CDS	1372843	1372934	.	-	2	ID=cds231;Parent=rna250;Dbxref=GeneID:100167932,Genbank:XP_008185613.1,APHIDBASE:ACYPI008679;Name=XP_008185613.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X2;protein_id=XP_008185613.1
+GL349622	Gnomon	CDS	1376595	1376599	.	-	0	ID=cds232;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XP_001943010.1,APHIDBASE:ACYPI008679;Name=XP_001943010.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X1;protein_id=XP_001943010.1
+GL349622	Gnomon	CDS	1376404	1376524	.	-	1	ID=cds232;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XP_001943010.1,APHIDBASE:ACYPI008679;Name=XP_001943010.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X1;protein_id=XP_001943010.1
+GL349622	Gnomon	CDS	1376187	1376336	.	-	0	ID=cds232;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XP_001943010.1,APHIDBASE:ACYPI008679;Name=XP_001943010.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X1;protein_id=XP_001943010.1
+GL349622	Gnomon	CDS	1375019	1375237	.	-	0	ID=cds232;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XP_001943010.1,APHIDBASE:ACYPI008679;Name=XP_001943010.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X1;protein_id=XP_001943010.1
+GL349622	Gnomon	CDS	1374715	1374940	.	-	0	ID=cds232;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XP_001943010.1,APHIDBASE:ACYPI008679;Name=XP_001943010.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X1;protein_id=XP_001943010.1
+GL349622	Gnomon	CDS	1374313	1374567	.	-	2	ID=cds232;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XP_001943010.1,APHIDBASE:ACYPI008679;Name=XP_001943010.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X1;protein_id=XP_001943010.1
+GL349622	Gnomon	CDS	1372843	1372934	.	-	2	ID=cds232;Parent=rna251;Dbxref=GeneID:100167932,Genbank:XP_001943010.1,APHIDBASE:ACYPI008679;Name=XP_001943010.1;gbkey=CDS;gene=LOC100167932;product=uncharacterized protein LOC100167932 isoform X1;protein_id=XP_001943010.1
+GL349622	Gnomon	gene	1384318	1387580	.	+	.	ID=gene173;Dbxref=APHIDBASE:ACYPI008117,GeneID:100167311;Name=LOC100167311;gbkey=Gene;gene=LOC100167311;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1384318	1387580	.	+	.	ID=rna252;Parent=gene173;Dbxref=GeneID:100167311,Genbank:XM_008187445.2,APHIDBASE:ACYPI008117;Name=XM_008187445.2;gbkey=mRNA;gene=LOC100167311;model_evidence=Supporting evidence includes similarity to: 9 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 44 samples with support for all annotated introns;product=zinc finger protein 593%2C transcript variant X1;transcript_id=XM_008187445.2
+GL349622	Gnomon	exon	1384318	1384464	.	+	.	ID=id2249;Parent=rna252;Dbxref=GeneID:100167311,Genbank:XM_008187445.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X1;transcript_id=XM_008187445.2
+GL349622	Gnomon	exon	1384612	1384707	.	+	.	ID=id2250;Parent=rna252;Dbxref=GeneID:100167311,Genbank:XM_008187445.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X1;transcript_id=XM_008187445.2
+GL349622	Gnomon	exon	1385655	1385755	.	+	.	ID=id2251;Parent=rna252;Dbxref=GeneID:100167311,Genbank:XM_008187445.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X1;transcript_id=XM_008187445.2
+GL349622	Gnomon	exon	1385834	1387580	.	+	.	ID=id2252;Parent=rna252;Dbxref=GeneID:100167311,Genbank:XM_008187445.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X1;transcript_id=XM_008187445.2
+GL349622	Gnomon	mRNA	1384331	1386237	.	+	.	ID=rna253;Parent=gene173;Dbxref=GeneID:100167311,Genbank:XM_008187492.2,APHIDBASE:ACYPI008117;Name=XM_008187492.2;gbkey=mRNA;gene=LOC100167311;model_evidence=Supporting evidence includes similarity to: 7 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 44 samples with support for all annotated introns;product=zinc finger protein 593%2C transcript variant X2;transcript_id=XM_008187492.2
+GL349622	Gnomon	exon	1384331	1384464	.	+	.	ID=id2253;Parent=rna253;Dbxref=GeneID:100167311,Genbank:XM_008187492.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X2;transcript_id=XM_008187492.2
+GL349622	Gnomon	exon	1384612	1384707	.	+	.	ID=id2254;Parent=rna253;Dbxref=GeneID:100167311,Genbank:XM_008187492.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X2;transcript_id=XM_008187492.2
+GL349622	Gnomon	exon	1385655	1385755	.	+	.	ID=id2255;Parent=rna253;Dbxref=GeneID:100167311,Genbank:XM_008187492.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X2;transcript_id=XM_008187492.2
+GL349622	Gnomon	exon	1385834	1386237	.	+	.	ID=id2256;Parent=rna253;Dbxref=GeneID:100167311,Genbank:XM_008187492.2,APHIDBASE:ACYPI008117;gbkey=mRNA;gene=LOC100167311;product=zinc finger protein 593%2C transcript variant X2;transcript_id=XM_008187492.2
+GL349622	Gnomon	CDS	1384612	1384707	.	+	0	ID=cds233;Parent=rna253;Dbxref=GeneID:100167311,Genbank:XP_008185714.1,APHIDBASE:ACYPI008117;Name=XP_008185714.1;gbkey=CDS;gene=LOC100167311;product=zinc finger protein 593 isoform X2;protein_id=XP_008185714.1
+GL349622	Gnomon	CDS	1385655	1385755	.	+	0	ID=cds233;Parent=rna253;Dbxref=GeneID:100167311,Genbank:XP_008185714.1,APHIDBASE:ACYPI008117;Name=XP_008185714.1;gbkey=CDS;gene=LOC100167311;product=zinc finger protein 593 isoform X2;protein_id=XP_008185714.1
+GL349622	Gnomon	CDS	1385834	1386074	.	+	1	ID=cds233;Parent=rna253;Dbxref=GeneID:100167311,Genbank:XP_008185714.1,APHIDBASE:ACYPI008117;Name=XP_008185714.1;gbkey=CDS;gene=LOC100167311;product=zinc finger protein 593 isoform X2;protein_id=XP_008185714.1
+GL349622	Gnomon	CDS	1386071	1387393	.	+	0	ID=cds234;Parent=rna252;Dbxref=GeneID:100167311,Genbank:XP_008185667.1,APHIDBASE:ACYPI008117;Name=XP_008185667.1;gbkey=CDS;gene=LOC100167311;product=serine--tRNA ligase isoform X1;protein_id=XP_008185667.1
+GL349622	Gnomon	gene	1388356	1398413	.	-	.	ID=gene174;Dbxref=APHIDBASE:ACYPI004312,GeneID:100163212;Name=LOC100163212;gbkey=Gene;gene=LOC100163212;gene_biotype=protein_coding;partial=true
+GL349622	Gnomon	mRNA	1388356	1398413	.	-	.	ID=rna254;Parent=gene174;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Name=XM_001942814.4;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 26 ESTs%2C 3 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1398106	1398413	.	-	.	ID=id2257;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;start_range=.,1398106;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1397384	1397583	.	-	.	ID=id2258;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1396521	1396667	.	-	.	ID=id2259;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1396235	1396450	.	-	.	ID=id2260;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1395198	1395401	.	-	.	ID=id2261;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1394967	1395141	.	-	.	ID=id2262;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1394737	1394892	.	-	.	ID=id2263;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1392808	1392927	.	-	.	ID=id2264;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1392655	1392741	.	-	.	ID=id2265;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1392068	1392569	.	-	.	ID=id2266;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1389062	1389156	.	-	.	ID=id2267;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	exon	1388356	1388994	.	-	.	ID=id2268;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XM_001942814.4,APHIDBASE:ACYPI004312;Note=The sequence of the model RefSeq transcript was modified relative to this genomic sequence to represent the inferred CDS: added 149 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;transcript_id=XM_001942814.4
+GL349622	Gnomon	CDS	1397384	1397583	.	-	0	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;end_range=1397583,.;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1396521	1396667	.	-	1	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1396235	1396450	.	-	1	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1395198	1395401	.	-	1	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1394967	1395141	.	-	1	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1394737	1394892	.	-	0	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1392808	1392927	.	-	0	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1392655	1392741	.	-	0	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1392068	1392569	.	-	0	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1389062	1389156	.	-	2	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	CDS	1388839	1388994	.	-	0	ID=cds235;Parent=rna254;Dbxref=GeneID:100163212,Genbank:XP_001942849.3,APHIDBASE:ACYPI004312;Name=XP_001942849.3;Note=The sequence of the model RefSeq protein was modified relative to this genomic sequence to represent the inferred CDS: added 108 bases not found in genome assembly;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100163212;partial=true;product=gametogenetin-binding protein 2-like;protein_id=XP_001942849.3
+GL349622	Gnomon	gene	1398757	1413919	.	+	.	ID=gene175;Dbxref=APHIDBASE:ACYPI006243,GeneID:100165286;Name=LOC100165286;gbkey=Gene;gene=LOC100165286;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1398757	1413919	.	+	.	ID=rna255;Parent=gene175;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;Name=XM_001942758.4;gbkey=mRNA;gene=LOC100165286;model_evidence=Supporting evidence includes similarity to: 7 ESTs%2C 1 Protein%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 26 samples with support for all annotated introns;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1398757	1399309	.	+	.	ID=id2269;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1406040	1406181	.	+	.	ID=id2270;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1406246	1406371	.	+	.	ID=id2271;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1406431	1406588	.	+	.	ID=id2272;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1406653	1406879	.	+	.	ID=id2273;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1407175	1407257	.	+	.	ID=id2274;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1408122	1408236	.	+	.	ID=id2275;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1408456	1408683	.	+	.	ID=id2276;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1409570	1409748	.	+	.	ID=id2277;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	exon	1412918	1413919	.	+	.	ID=id2278;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XM_001942758.4,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X2;transcript_id=XM_001942758.4
+GL349622	Gnomon	mRNA	1398759	1412681	.	+	.	ID=rna256;Parent=gene175;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;Name=XM_008187626.2;gbkey=mRNA;gene=LOC100165286;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 20 samples with support for all annotated introns;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1398759	1399026	.	+	.	ID=id2279;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1399101	1399309	.	+	.	ID=id2280;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1406040	1406181	.	+	.	ID=id2281;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1406246	1406371	.	+	.	ID=id2282;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1406431	1406588	.	+	.	ID=id2283;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1406653	1406879	.	+	.	ID=id2284;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1407175	1407257	.	+	.	ID=id2285;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1408122	1408236	.	+	.	ID=id2286;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1408456	1408683	.	+	.	ID=id2287;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1409570	1409748	.	+	.	ID=id2288;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	exon	1409858	1412681	.	+	.	ID=id2289;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XM_008187626.2,APHIDBASE:ACYPI006243;gbkey=mRNA;gene=LOC100165286;product=copine-5%2C transcript variant X1;transcript_id=XM_008187626.2
+GL349622	Gnomon	CDS	1399242	1399309	.	+	0	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1406040	1406181	.	+	1	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1406246	1406371	.	+	0	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1406431	1406588	.	+	0	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1406653	1406879	.	+	1	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1407175	1407257	.	+	2	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1408122	1408236	.	+	0	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1408456	1408683	.	+	2	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1409570	1409748	.	+	2	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1412918	1413205	.	+	0	ID=cds236;Parent=rna255;Dbxref=GeneID:100165286,Genbank:XP_001942793.1,APHIDBASE:ACYPI006243;Name=XP_001942793.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X2;protein_id=XP_001942793.1
+GL349622	Gnomon	CDS	1399242	1399309	.	+	0	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1406040	1406181	.	+	1	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1406246	1406371	.	+	0	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1406431	1406588	.	+	0	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1406653	1406879	.	+	1	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1407175	1407257	.	+	2	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1408122	1408236	.	+	0	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1408456	1408683	.	+	2	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1409570	1409748	.	+	2	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	Gnomon	CDS	1409858	1410148	.	+	0	ID=cds237;Parent=rna256;Dbxref=GeneID:100165286,Genbank:XP_008185848.1,APHIDBASE:ACYPI006243;Name=XP_008185848.1;gbkey=CDS;gene=LOC100165286;product=copine-5 isoform X1;protein_id=XP_008185848.1
+GL349622	BestRefSeq%2CGnomon	gene	1408564	1418644	.	-	.	ID=gene176;Dbxref=APHIDBASE:ACYPI009997,GeneID:100169371;Name=LOC100169371;description=proline synthase co-transcribed bacterial homolog protein-like;gbkey=Gene;gene=LOC100169371;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1408564	1418644	.	-	.	ID=rna257;Parent=gene176;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;Name=XM_016805280.1;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1418507	1418644	.	-	.	ID=id2290;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1417426	1417602	.	-	.	ID=id2291;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1417194	1417331	.	-	.	ID=id2292;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1416899	1417109	.	-	.	ID=id2293;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1416647	1416789	.	-	.	ID=id2294;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1416492	1416590	.	-	.	ID=id2295;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1416258	1416338	.	-	.	ID=id2296;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	exon	1408564	1408671	.	-	.	ID=id2297;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XM_016805280.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X2;transcript_id=XM_016805280.1
+GL349622	Gnomon	mRNA	1416051	1418643	.	-	.	ID=rna258;Parent=gene176;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;Name=XM_016805246.1;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 4 Proteins%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	exon	1418507	1418643	.	-	.	ID=id2298;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	exon	1417426	1417602	.	-	.	ID=id2299;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	exon	1417194	1417331	.	-	.	ID=id2300;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	exon	1416899	1417109	.	-	.	ID=id2301;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	exon	1416647	1416789	.	-	.	ID=id2302;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	exon	1416492	1416590	.	-	.	ID=id2303;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	exon	1416051	1416338	.	-	.	ID=id2304;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XM_016805246.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X1;transcript_id=XM_016805246.1
+GL349622	Gnomon	mRNA	1416051	1418643	.	-	.	ID=rna259;Parent=gene176;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;Name=XM_008185225.2;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 5 ESTs%2C 4 Proteins%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 17 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	exon	1418507	1418643	.	-	.	ID=id2305;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	exon	1417426	1417645	.	-	.	ID=id2306;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	exon	1417194	1417331	.	-	.	ID=id2307;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	exon	1416899	1417109	.	-	.	ID=id2308;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	exon	1416647	1416789	.	-	.	ID=id2309;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	exon	1416492	1416590	.	-	.	ID=id2310;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	exon	1416051	1416338	.	-	.	ID=id2311;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XM_008185225.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X3;transcript_id=XM_008185225.2
+GL349622	Gnomon	mRNA	1416051	1418377	.	-	.	ID=rna260;Parent=gene176;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;Name=XM_016805340.1;gbkey=mRNA;gene=LOC100169371;model_evidence=Supporting evidence includes similarity to: 4 ESTs%2C 4 Proteins%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 17 samples with support for all annotated introns;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	Gnomon	exon	1418316	1418377	.	-	.	ID=id2312;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	Gnomon	exon	1417426	1417645	.	-	.	ID=id2313;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	Gnomon	exon	1417194	1417331	.	-	.	ID=id2314;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	Gnomon	exon	1416899	1417109	.	-	.	ID=id2315;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	Gnomon	exon	1416647	1416789	.	-	.	ID=id2316;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	Gnomon	exon	1416492	1416590	.	-	.	ID=id2317;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	Gnomon	exon	1416051	1416338	.	-	.	ID=id2318;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XM_016805340.1,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like%2C transcript variant X4;transcript_id=XM_016805340.1
+GL349622	BestRefSeq	mRNA	1416051	1417652	.	-	.	ID=rna261;Parent=gene176;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;Name=NM_001246111.2;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	BestRefSeq	exon	1417426	1417652	.	-	.	ID=id2319;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	BestRefSeq	exon	1417194	1417331	.	-	.	ID=id2320;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	BestRefSeq	exon	1416899	1417109	.	-	.	ID=id2321;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	BestRefSeq	exon	1416647	1416789	.	-	.	ID=id2322;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	BestRefSeq	exon	1416492	1416590	.	-	.	ID=id2323;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	BestRefSeq	exon	1416051	1416338	.	-	.	ID=id2324;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NM_001246111.2,APHIDBASE:ACYPI009997;gbkey=mRNA;gene=LOC100169371;product=proline synthase co-transcribed bacterial homolog protein-like;transcript_id=NM_001246111.2
+GL349622	Gnomon	CDS	1418507	1418509	.	-	0	ID=cds238;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XP_016660735.1,APHIDBASE:ACYPI009997;Name=XP_016660735.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660735.1
+GL349622	Gnomon	CDS	1417426	1417602	.	-	0	ID=cds238;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XP_016660735.1,APHIDBASE:ACYPI009997;Name=XP_016660735.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660735.1
+GL349622	Gnomon	CDS	1417194	1417331	.	-	0	ID=cds238;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XP_016660735.1,APHIDBASE:ACYPI009997;Name=XP_016660735.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660735.1
+GL349622	Gnomon	CDS	1416899	1417109	.	-	0	ID=cds238;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XP_016660735.1,APHIDBASE:ACYPI009997;Name=XP_016660735.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660735.1
+GL349622	Gnomon	CDS	1416647	1416789	.	-	2	ID=cds238;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XP_016660735.1,APHIDBASE:ACYPI009997;Name=XP_016660735.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660735.1
+GL349622	Gnomon	CDS	1416492	1416590	.	-	0	ID=cds238;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XP_016660735.1,APHIDBASE:ACYPI009997;Name=XP_016660735.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660735.1
+GL349622	Gnomon	CDS	1416264	1416338	.	-	0	ID=cds238;Parent=rna258;Dbxref=GeneID:100169371,Genbank:XP_016660735.1,APHIDBASE:ACYPI009997;Name=XP_016660735.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660735.1
+GL349622	Gnomon	CDS	1418507	1418509	.	-	0	ID=cds239;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XP_016660769.1,APHIDBASE:ACYPI009997;Name=XP_016660769.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660769.1
+GL349622	Gnomon	CDS	1417426	1417602	.	-	0	ID=cds239;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XP_016660769.1,APHIDBASE:ACYPI009997;Name=XP_016660769.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660769.1
+GL349622	Gnomon	CDS	1417194	1417331	.	-	0	ID=cds239;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XP_016660769.1,APHIDBASE:ACYPI009997;Name=XP_016660769.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660769.1
+GL349622	Gnomon	CDS	1416899	1417109	.	-	0	ID=cds239;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XP_016660769.1,APHIDBASE:ACYPI009997;Name=XP_016660769.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660769.1
+GL349622	Gnomon	CDS	1416647	1416789	.	-	2	ID=cds239;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XP_016660769.1,APHIDBASE:ACYPI009997;Name=XP_016660769.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660769.1
+GL349622	Gnomon	CDS	1416492	1416590	.	-	0	ID=cds239;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XP_016660769.1,APHIDBASE:ACYPI009997;Name=XP_016660769.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660769.1
+GL349622	Gnomon	CDS	1416264	1416338	.	-	0	ID=cds239;Parent=rna257;Dbxref=GeneID:100169371,Genbank:XP_016660769.1,APHIDBASE:ACYPI009997;Name=XP_016660769.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X1;protein_id=XP_016660769.1
+GL349622	Gnomon	CDS	1417426	1417596	.	-	0	ID=cds240;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XP_016660829.1,APHIDBASE:ACYPI009997;Name=XP_016660829.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_016660829.1
+GL349622	Gnomon	CDS	1417194	1417331	.	-	0	ID=cds240;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XP_016660829.1,APHIDBASE:ACYPI009997;Name=XP_016660829.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_016660829.1
+GL349622	Gnomon	CDS	1416899	1417109	.	-	0	ID=cds240;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XP_016660829.1,APHIDBASE:ACYPI009997;Name=XP_016660829.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_016660829.1
+GL349622	Gnomon	CDS	1416647	1416789	.	-	2	ID=cds240;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XP_016660829.1,APHIDBASE:ACYPI009997;Name=XP_016660829.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_016660829.1
+GL349622	Gnomon	CDS	1416492	1416590	.	-	0	ID=cds240;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XP_016660829.1,APHIDBASE:ACYPI009997;Name=XP_016660829.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_016660829.1
+GL349622	Gnomon	CDS	1416264	1416338	.	-	0	ID=cds240;Parent=rna260;Dbxref=GeneID:100169371,Genbank:XP_016660829.1,APHIDBASE:ACYPI009997;Name=XP_016660829.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_016660829.1
+GL349622	BestRefSeq	CDS	1417426	1417596	.	-	0	ID=cds241;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NP_001233040.1,APHIDBASE:ACYPI009997;Name=NP_001233040.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371;protein_id=NP_001233040.1
+GL349622	BestRefSeq	CDS	1417194	1417331	.	-	0	ID=cds241;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NP_001233040.1,APHIDBASE:ACYPI009997;Name=NP_001233040.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371;protein_id=NP_001233040.1
+GL349622	BestRefSeq	CDS	1416899	1417109	.	-	0	ID=cds241;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NP_001233040.1,APHIDBASE:ACYPI009997;Name=NP_001233040.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371;protein_id=NP_001233040.1
+GL349622	BestRefSeq	CDS	1416647	1416789	.	-	2	ID=cds241;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NP_001233040.1,APHIDBASE:ACYPI009997;Name=NP_001233040.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371;protein_id=NP_001233040.1
+GL349622	BestRefSeq	CDS	1416492	1416590	.	-	0	ID=cds241;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NP_001233040.1,APHIDBASE:ACYPI009997;Name=NP_001233040.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371;protein_id=NP_001233040.1
+GL349622	BestRefSeq	CDS	1416264	1416338	.	-	0	ID=cds241;Parent=rna261;Dbxref=GeneID:100169371,Genbank:NP_001233040.1,APHIDBASE:ACYPI009997;Name=NP_001233040.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371;protein_id=NP_001233040.1
+GL349622	Gnomon	CDS	1417426	1417596	.	-	0	ID=cds242;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XP_008183447.1,APHIDBASE:ACYPI009997;Name=XP_008183447.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_008183447.1
+GL349622	Gnomon	CDS	1417194	1417331	.	-	0	ID=cds242;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XP_008183447.1,APHIDBASE:ACYPI009997;Name=XP_008183447.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_008183447.1
+GL349622	Gnomon	CDS	1416899	1417109	.	-	0	ID=cds242;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XP_008183447.1,APHIDBASE:ACYPI009997;Name=XP_008183447.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_008183447.1
+GL349622	Gnomon	CDS	1416647	1416789	.	-	2	ID=cds242;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XP_008183447.1,APHIDBASE:ACYPI009997;Name=XP_008183447.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_008183447.1
+GL349622	Gnomon	CDS	1416492	1416590	.	-	0	ID=cds242;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XP_008183447.1,APHIDBASE:ACYPI009997;Name=XP_008183447.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_008183447.1
+GL349622	Gnomon	CDS	1416264	1416338	.	-	0	ID=cds242;Parent=rna259;Dbxref=GeneID:100169371,Genbank:XP_008183447.1,APHIDBASE:ACYPI009997;Name=XP_008183447.1;gbkey=CDS;gene=LOC100169371;product=uncharacterized protein LOC100169371 isoform X2;protein_id=XP_008183447.1
+GL349622	Gnomon	gene	1423988	1451019	.	+	.	ID=gene177;Dbxref=APHIDBASE:ACYPI001780,GeneID:100160486;Name=LOC100160486;gbkey=Gene;gene=LOC100160486;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1423988	1451019	.	+	.	ID=rna262;Parent=gene177;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;Name=XM_008187776.2;gbkey=mRNA;gene=LOC100160486;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 19 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1423988	1424326	.	+	.	ID=id2325;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1448521	1448662	.	+	.	ID=id2326;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1448731	1448987	.	+	.	ID=id2327;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1449062	1449238	.	+	.	ID=id2328;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1449337	1449537	.	+	.	ID=id2329;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1449609	1449752	.	+	.	ID=id2330;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1449825	1450140	.	+	.	ID=id2331;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	exon	1450208	1451019	.	+	.	ID=id2332;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XM_008187776.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X3;transcript_id=XM_008187776.2
+GL349622	Gnomon	mRNA	1439167	1451019	.	+	.	ID=rna263;Parent=gene177;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;Name=XM_001942918.4;gbkey=mRNA;gene=LOC100160486;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 30 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 36 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1439167	1439440	.	+	.	ID=id2333;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1448521	1448662	.	+	.	ID=id2334;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1448731	1448987	.	+	.	ID=id2335;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1449062	1449238	.	+	.	ID=id2336;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1449337	1449537	.	+	.	ID=id2337;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1449609	1449752	.	+	.	ID=id2338;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1449825	1450140	.	+	.	ID=id2339;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	exon	1450208	1451019	.	+	.	ID=id2340;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XM_001942918.4,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X1;transcript_id=XM_001942918.4
+GL349622	Gnomon	mRNA	1445298	1451019	.	+	.	ID=rna264;Parent=gene177;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;Name=XM_008187747.2;gbkey=mRNA;gene=LOC100160486;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 25 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 28 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1445298	1445457	.	+	.	ID=id2341;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1448521	1448662	.	+	.	ID=id2342;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1448731	1448987	.	+	.	ID=id2343;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1449062	1449238	.	+	.	ID=id2344;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1449337	1449537	.	+	.	ID=id2345;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1449609	1449752	.	+	.	ID=id2346;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1449825	1450140	.	+	.	ID=id2347;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	exon	1450208	1451019	.	+	.	ID=id2348;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XM_008187747.2,APHIDBASE:ACYPI001780;gbkey=mRNA;gene=LOC100160486;product=facilitated trehalose transporter Tret1%2C transcript variant X2;transcript_id=XM_008187747.2
+GL349622	Gnomon	CDS	1448560	1448662	.	+	0	ID=cds243;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XP_001942953.1,APHIDBASE:ACYPI001780;Name=XP_001942953.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_001942953.1
+GL349622	Gnomon	CDS	1448731	1448987	.	+	2	ID=cds243;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XP_001942953.1,APHIDBASE:ACYPI001780;Name=XP_001942953.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_001942953.1
+GL349622	Gnomon	CDS	1449062	1449238	.	+	0	ID=cds243;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XP_001942953.1,APHIDBASE:ACYPI001780;Name=XP_001942953.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_001942953.1
+GL349622	Gnomon	CDS	1449337	1449537	.	+	0	ID=cds243;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XP_001942953.1,APHIDBASE:ACYPI001780;Name=XP_001942953.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_001942953.1
+GL349622	Gnomon	CDS	1449609	1449752	.	+	0	ID=cds243;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XP_001942953.1,APHIDBASE:ACYPI001780;Name=XP_001942953.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_001942953.1
+GL349622	Gnomon	CDS	1449825	1450140	.	+	0	ID=cds243;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XP_001942953.1,APHIDBASE:ACYPI001780;Name=XP_001942953.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_001942953.1
+GL349622	Gnomon	CDS	1450208	1450479	.	+	2	ID=cds243;Parent=rna263;Dbxref=GeneID:100160486,Genbank:XP_001942953.1,APHIDBASE:ACYPI001780;Name=XP_001942953.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_001942953.1
+GL349622	Gnomon	CDS	1448560	1448662	.	+	0	ID=cds244;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XP_008185969.1,APHIDBASE:ACYPI001780;Name=XP_008185969.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185969.1
+GL349622	Gnomon	CDS	1448731	1448987	.	+	2	ID=cds244;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XP_008185969.1,APHIDBASE:ACYPI001780;Name=XP_008185969.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185969.1
+GL349622	Gnomon	CDS	1449062	1449238	.	+	0	ID=cds244;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XP_008185969.1,APHIDBASE:ACYPI001780;Name=XP_008185969.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185969.1
+GL349622	Gnomon	CDS	1449337	1449537	.	+	0	ID=cds244;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XP_008185969.1,APHIDBASE:ACYPI001780;Name=XP_008185969.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185969.1
+GL349622	Gnomon	CDS	1449609	1449752	.	+	0	ID=cds244;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XP_008185969.1,APHIDBASE:ACYPI001780;Name=XP_008185969.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185969.1
+GL349622	Gnomon	CDS	1449825	1450140	.	+	0	ID=cds244;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XP_008185969.1,APHIDBASE:ACYPI001780;Name=XP_008185969.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185969.1
+GL349622	Gnomon	CDS	1450208	1450479	.	+	2	ID=cds244;Parent=rna264;Dbxref=GeneID:100160486,Genbank:XP_008185969.1,APHIDBASE:ACYPI001780;Name=XP_008185969.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185969.1
+GL349622	Gnomon	CDS	1448560	1448662	.	+	0	ID=cds245;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XP_008185998.1,APHIDBASE:ACYPI001780;Name=XP_008185998.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185998.1
+GL349622	Gnomon	CDS	1448731	1448987	.	+	2	ID=cds245;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XP_008185998.1,APHIDBASE:ACYPI001780;Name=XP_008185998.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185998.1
+GL349622	Gnomon	CDS	1449062	1449238	.	+	0	ID=cds245;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XP_008185998.1,APHIDBASE:ACYPI001780;Name=XP_008185998.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185998.1
+GL349622	Gnomon	CDS	1449337	1449537	.	+	0	ID=cds245;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XP_008185998.1,APHIDBASE:ACYPI001780;Name=XP_008185998.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185998.1
+GL349622	Gnomon	CDS	1449609	1449752	.	+	0	ID=cds245;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XP_008185998.1,APHIDBASE:ACYPI001780;Name=XP_008185998.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185998.1
+GL349622	Gnomon	CDS	1449825	1450140	.	+	0	ID=cds245;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XP_008185998.1,APHIDBASE:ACYPI001780;Name=XP_008185998.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185998.1
+GL349622	Gnomon	CDS	1450208	1450479	.	+	2	ID=cds245;Parent=rna262;Dbxref=GeneID:100160486,Genbank:XP_008185998.1,APHIDBASE:ACYPI001780;Name=XP_008185998.1;gbkey=CDS;gene=LOC100160486;product=facilitated trehalose transporter Tret1;protein_id=XP_008185998.1
+GL349622	Gnomon	gene	1460195	1463356	.	+	.	ID=gene178;Dbxref=APHIDBASE:ACYPI006604,GeneID:100165672;Name=LOC100165672;gbkey=Gene;gene=LOC100165672;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1460195	1463356	.	+	.	ID=rna265;Parent=gene178;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;Name=XM_001949996.4;gbkey=mRNA;gene=LOC100165672;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 9 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 32 samples with support for all annotated introns;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1460195	1460496	.	+	.	ID=id2349;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1460747	1460885	.	+	.	ID=id2350;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1460962	1461218	.	+	.	ID=id2351;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1461289	1461465	.	+	.	ID=id2352;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1461523	1461723	.	+	.	ID=id2353;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1461805	1461948	.	+	.	ID=id2354;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1462014	1462329	.	+	.	ID=id2355;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	exon	1462665	1463356	.	+	.	ID=id2356;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XM_001949996.4,APHIDBASE:ACYPI006604;gbkey=mRNA;gene=LOC100165672;product=facilitated trehalose transporter Tret1;transcript_id=XM_001949996.4
+GL349622	Gnomon	CDS	1460395	1460496	.	+	0	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	CDS	1460747	1460885	.	+	0	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	CDS	1460962	1461218	.	+	2	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	CDS	1461289	1461465	.	+	0	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	CDS	1461523	1461723	.	+	0	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	CDS	1461805	1461948	.	+	0	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	CDS	1462014	1462329	.	+	0	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	CDS	1462665	1462915	.	+	2	ID=cds246;Parent=rna265;Dbxref=GeneID:100165672,Genbank:XP_001950031.1,APHIDBASE:ACYPI006604;Name=XP_001950031.1;gbkey=CDS;gene=LOC100165672;product=facilitated trehalose transporter Tret1;protein_id=XP_001950031.1
+GL349622	Gnomon	gene	1466684	1468962	.	-	.	ID=gene179;Dbxref=APHIDBASE:ACYPI004698,GeneID:100163625;Name=LOC100163625;gbkey=Gene;gene=LOC100163625;gene_biotype=misc_RNA;pseudo=true
+GL349622	Gnomon	transcript	1466684	1468962	.	-	.	ID=rna266;Parent=gene179;Dbxref=GeneID:100163625,Genbank:XR_511263.2,APHIDBASE:ACYPI004698;Name=XR_511263.2;gbkey=misc_RNA;gene=LOC100163625;model_evidence=Supporting evidence includes similarity to: 5 ESTs%2C 194 Proteins%2C and 96%25 coverage of the annotated genomic feature by RNAseq alignments;product=major heat shock 70 kDa protein Ba-like;transcript_id=XR_511263.2
+GL349622	Gnomon	exon	1467994	1468962	.	-	.	ID=id2357;Parent=rna266;Dbxref=GeneID:100163625,Genbank:XR_511263.2,APHIDBASE:ACYPI004698;gbkey=misc_RNA;gene=LOC100163625;product=major heat shock 70 kDa protein Ba-like;transcript_id=XR_511263.2
+GL349622	Gnomon	exon	1466684	1467235	.	-	.	ID=id2358;Parent=rna266;Dbxref=GeneID:100163625,Genbank:XR_511263.2,APHIDBASE:ACYPI004698;gbkey=misc_RNA;gene=LOC100163625;product=major heat shock 70 kDa protein Ba-like;transcript_id=XR_511263.2
+GL349622	Gnomon	gene	1478969	1487171	.	-	.	ID=gene180;Dbxref=GeneID:107885372;Name=LOC107885372;gbkey=Gene;gene=LOC107885372;gene_biotype=lncRNA
+GL349622	Gnomon	ncRNA	1478969	1487171	.	-	.	ID=rna267;Parent=gene180;Dbxref=GeneID:107885372,Genbank:XR_001680415.1;Name=XR_001680415.1;gbkey=ncRNA;gene=LOC107885372;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 13 samples with support for all annotated introns;ncrna_class=lncRNA;product=uncharacterized LOC107885372;transcript_id=XR_001680415.1
+GL349622	Gnomon	exon	1486959	1487171	.	-	.	ID=id2359;Parent=rna267;Dbxref=GeneID:107885372,Genbank:XR_001680415.1;gbkey=ncRNA;gene=LOC107885372;ncrna_class=lncRNA;product=uncharacterized LOC107885372;transcript_id=XR_001680415.1
+GL349622	Gnomon	exon	1484524	1484717	.	-	.	ID=id2360;Parent=rna267;Dbxref=GeneID:107885372,Genbank:XR_001680415.1;gbkey=ncRNA;gene=LOC107885372;ncrna_class=lncRNA;product=uncharacterized LOC107885372;transcript_id=XR_001680415.1
+GL349622	Gnomon	exon	1479657	1480865	.	-	.	ID=id2361;Parent=rna267;Dbxref=GeneID:107885372,Genbank:XR_001680415.1;gbkey=ncRNA;gene=LOC107885372;ncrna_class=lncRNA;product=uncharacterized LOC107885372;transcript_id=XR_001680415.1
+GL349622	Gnomon	exon	1478969	1479573	.	-	.	ID=id2362;Parent=rna267;Dbxref=GeneID:107885372,Genbank:XR_001680415.1;gbkey=ncRNA;gene=LOC107885372;ncrna_class=lncRNA;product=uncharacterized LOC107885372;transcript_id=XR_001680415.1
+GL349622	Gnomon	gene	1490305	1491651	.	+	.	ID=gene181;Dbxref=GeneID:100574139;Name=LOC100574139;gbkey=Gene;gene=LOC100574139;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1490305	1491651	.	+	.	ID=rna268;Parent=gene181;Dbxref=GeneID:100574139,Genbank:XM_003240049.3;Name=XM_003240049.3;gbkey=mRNA;gene=LOC100574139;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 36 samples with support for all annotated introns;product=integrator complex subunit 12;transcript_id=XM_003240049.3
+GL349622	Gnomon	exon	1490305	1490663	.	+	.	ID=id2363;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XM_003240049.3;gbkey=mRNA;gene=LOC100574139;product=integrator complex subunit 12;transcript_id=XM_003240049.3
+GL349622	Gnomon	exon	1490731	1490927	.	+	.	ID=id2364;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XM_003240049.3;gbkey=mRNA;gene=LOC100574139;product=integrator complex subunit 12;transcript_id=XM_003240049.3
+GL349622	Gnomon	exon	1491002	1491164	.	+	.	ID=id2365;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XM_003240049.3;gbkey=mRNA;gene=LOC100574139;product=integrator complex subunit 12;transcript_id=XM_003240049.3
+GL349622	Gnomon	exon	1491238	1491331	.	+	.	ID=id2366;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XM_003240049.3;gbkey=mRNA;gene=LOC100574139;product=integrator complex subunit 12;transcript_id=XM_003240049.3
+GL349622	Gnomon	exon	1491398	1491651	.	+	.	ID=id2367;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XM_003240049.3;gbkey=mRNA;gene=LOC100574139;product=integrator complex subunit 12;transcript_id=XM_003240049.3
+GL349622	Gnomon	CDS	1490448	1490663	.	+	0	ID=cds247;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XP_003240097.1;Name=XP_003240097.1;gbkey=CDS;gene=LOC100574139;product=integrator complex subunit 12;protein_id=XP_003240097.1
+GL349622	Gnomon	CDS	1490731	1490927	.	+	0	ID=cds247;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XP_003240097.1;Name=XP_003240097.1;gbkey=CDS;gene=LOC100574139;product=integrator complex subunit 12;protein_id=XP_003240097.1
+GL349622	Gnomon	CDS	1491002	1491164	.	+	1	ID=cds247;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XP_003240097.1;Name=XP_003240097.1;gbkey=CDS;gene=LOC100574139;product=integrator complex subunit 12;protein_id=XP_003240097.1
+GL349622	Gnomon	CDS	1491238	1491331	.	+	0	ID=cds247;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XP_003240097.1;Name=XP_003240097.1;gbkey=CDS;gene=LOC100574139;product=integrator complex subunit 12;protein_id=XP_003240097.1
+GL349622	Gnomon	CDS	1491398	1491549	.	+	2	ID=cds247;Parent=rna268;Dbxref=GeneID:100574139,Genbank:XP_003240097.1;Name=XP_003240097.1;gbkey=CDS;gene=LOC100574139;product=integrator complex subunit 12;protein_id=XP_003240097.1
+GL349622	Gnomon	gene	1491547	1499437	.	-	.	ID=gene182;Dbxref=APHIDBASE:ACYPI009565,GeneID:100168902;Name=LOC100168902;gbkey=Gene;gene=LOC100168902;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1491547	1499437	.	-	.	ID=rna269;Parent=gene182;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;Name=XM_001943419.4;gbkey=mRNA;gene=LOC100168902;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1498873	1499437	.	-	.	ID=id2368;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1498669	1498808	.	-	.	ID=id2369;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1498424	1498555	.	-	.	ID=id2370;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1498163	1498368	.	-	.	ID=id2371;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1497638	1497842	.	-	.	ID=id2372;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1497414	1497549	.	-	.	ID=id2373;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1495021	1495211	.	-	.	ID=id2374;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1494644	1494952	.	-	.	ID=id2375;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1494444	1494585	.	-	.	ID=id2376;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1494181	1494374	.	-	.	ID=id2377;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1493570	1493655	.	-	.	ID=id2378;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1493124	1493235	.	-	.	ID=id2379;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1492617	1492962	.	-	.	ID=id2380;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1492358	1492538	.	-	.	ID=id2381;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1492153	1492289	.	-	.	ID=id2382;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1491903	1492090	.	-	.	ID=id2383;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	exon	1491547	1491828	.	-	.	ID=id2384;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XM_001943419.4,APHIDBASE:ACYPI009565;gbkey=mRNA;gene=LOC100168902;product=elongation factor-like GTPase 1;transcript_id=XM_001943419.4
+GL349622	Gnomon	CDS	1498873	1499116	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1498669	1498808	.	-	2	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1498424	1498555	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1498163	1498368	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1497638	1497842	.	-	1	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1497414	1497549	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1495021	1495211	.	-	2	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1494644	1494952	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1494444	1494585	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1494181	1494374	.	-	2	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1493570	1493655	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1493124	1493235	.	-	1	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1492617	1492962	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1492358	1492538	.	-	2	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1492153	1492289	.	-	1	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1491903	1492090	.	-	2	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	CDS	1491640	1491828	.	-	0	ID=cds248;Parent=rna269;Dbxref=GeneID:100168902,Genbank:XP_001943454.2,APHIDBASE:ACYPI009565;Name=XP_001943454.2;gbkey=CDS;gene=LOC100168902;product=elongation factor-like GTPase 1;protein_id=XP_001943454.2
+GL349622	Gnomon	gene	1530611	1532940	.	+	.	ID=gene183;Dbxref=GeneID:100574225;Name=LOC100574225;gbkey=Gene;gene=LOC100574225;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1530611	1532940	.	+	.	ID=rna270;Parent=gene183;Dbxref=GeneID:100574225,Genbank:XM_003240050.3;Name=XM_003240050.3;gbkey=mRNA;gene=LOC100574225;model_evidence=Supporting evidence includes similarity to: 5 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 36 samples with support for all annotated introns;product=uncharacterized LOC100574225;transcript_id=XM_003240050.3
+GL349622	Gnomon	exon	1530611	1531326	.	+	.	ID=id2385;Parent=rna270;Dbxref=GeneID:100574225,Genbank:XM_003240050.3;gbkey=mRNA;gene=LOC100574225;product=uncharacterized LOC100574225;transcript_id=XM_003240050.3
+GL349622	Gnomon	exon	1531865	1532940	.	+	.	ID=id2386;Parent=rna270;Dbxref=GeneID:100574225,Genbank:XM_003240050.3;gbkey=mRNA;gene=LOC100574225;product=uncharacterized LOC100574225;transcript_id=XM_003240050.3
+GL349622	Gnomon	CDS	1531222	1531326	.	+	0	ID=cds249;Parent=rna270;Dbxref=GeneID:100574225,Genbank:XP_003240098.1;Name=XP_003240098.1;gbkey=CDS;gene=LOC100574225;product=uncharacterized protein LOC100574225;protein_id=XP_003240098.1
+GL349622	Gnomon	CDS	1531865	1532482	.	+	0	ID=cds249;Parent=rna270;Dbxref=GeneID:100574225,Genbank:XP_003240098.1;Name=XP_003240098.1;gbkey=CDS;gene=LOC100574225;product=uncharacterized protein LOC100574225;protein_id=XP_003240098.1
+GL349622	Gnomon	gene	1562831	1566978	.	-	.	ID=gene184;Dbxref=APHIDBASE:ACYPI007246,GeneID:100166367;Name=LOC100166367;gbkey=Gene;gene=LOC100166367;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1562831	1566978	.	-	.	ID=rna271;Parent=gene184;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;Name=XM_016809157.1;gbkey=mRNA;gene=LOC100166367;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 9 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 16 samples with support for all annotated introns;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	exon	1566740	1566978	.	-	.	ID=id2387;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	exon	1565817	1566020	.	-	.	ID=id2388;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	exon	1565543	1565732	.	-	.	ID=id2389;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	exon	1564740	1564983	.	-	.	ID=id2390;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	exon	1564082	1564217	.	-	.	ID=id2391;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	exon	1562831	1563004	.	-	.	ID=id2392;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XM_016809157.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X2;transcript_id=XM_016809157.1
+GL349622	Gnomon	mRNA	1562839	1566978	.	-	.	ID=rna272;Parent=gene184;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;Name=XM_016809173.1;gbkey=mRNA;gene=LOC100166367;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 9 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 8 samples with support for all annotated introns;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	exon	1566740	1566978	.	-	.	ID=id2393;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	exon	1565817	1566020	.	-	.	ID=id2394;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	exon	1565543	1565732	.	-	.	ID=id2395;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	exon	1564740	1564983	.	-	.	ID=id2396;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	exon	1564082	1564217	.	-	.	ID=id2397;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	exon	1562839	1562928	.	-	.	ID=id2398;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XM_016809173.1,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X3;transcript_id=XM_016809173.1
+GL349622	Gnomon	mRNA	1563261	1566978	.	-	.	ID=rna273;Parent=gene184;Dbxref=GeneID:100166367,Genbank:XM_001945281.4,APHIDBASE:ACYPI007246;Name=XM_001945281.4;gbkey=mRNA;gene=LOC100166367;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 8 ESTs%2C 9 Proteins%2C and 96%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 32 samples with support for all annotated introns;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X1;transcript_id=XM_001945281.4
+GL349622	Gnomon	exon	1566740	1566978	.	-	.	ID=id2399;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XM_001945281.4,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X1;transcript_id=XM_001945281.4
+GL349622	Gnomon	exon	1565817	1566020	.	-	.	ID=id2400;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XM_001945281.4,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X1;transcript_id=XM_001945281.4
+GL349622	Gnomon	exon	1565543	1565732	.	-	.	ID=id2401;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XM_001945281.4,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X1;transcript_id=XM_001945281.4
+GL349622	Gnomon	exon	1564740	1564983	.	-	.	ID=id2402;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XM_001945281.4,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X1;transcript_id=XM_001945281.4
+GL349622	Gnomon	exon	1563261	1564217	.	-	.	ID=id2403;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XM_001945281.4,APHIDBASE:ACYPI007246;gbkey=mRNA;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4%2C transcript variant X1;transcript_id=XM_001945281.4
+GL349622	Gnomon	CDS	1566740	1566842	.	-	0	ID=cds250;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XP_016664646.1,APHIDBASE:ACYPI007246;Name=XP_016664646.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664646.1
+GL349622	Gnomon	CDS	1565817	1566020	.	-	2	ID=cds250;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XP_016664646.1,APHIDBASE:ACYPI007246;Name=XP_016664646.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664646.1
+GL349622	Gnomon	CDS	1565543	1565732	.	-	2	ID=cds250;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XP_016664646.1,APHIDBASE:ACYPI007246;Name=XP_016664646.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664646.1
+GL349622	Gnomon	CDS	1564740	1564983	.	-	1	ID=cds250;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XP_016664646.1,APHIDBASE:ACYPI007246;Name=XP_016664646.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664646.1
+GL349622	Gnomon	CDS	1564116	1564217	.	-	0	ID=cds250;Parent=rna271;Dbxref=GeneID:100166367,Genbank:XP_016664646.1,APHIDBASE:ACYPI007246;Name=XP_016664646.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664646.1
+GL349622	Gnomon	CDS	1566740	1566842	.	-	0	ID=cds251;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XP_016664662.1,APHIDBASE:ACYPI007246;Name=XP_016664662.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664662.1
+GL349622	Gnomon	CDS	1565817	1566020	.	-	2	ID=cds251;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XP_016664662.1,APHIDBASE:ACYPI007246;Name=XP_016664662.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664662.1
+GL349622	Gnomon	CDS	1565543	1565732	.	-	2	ID=cds251;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XP_016664662.1,APHIDBASE:ACYPI007246;Name=XP_016664662.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664662.1
+GL349622	Gnomon	CDS	1564740	1564983	.	-	1	ID=cds251;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XP_016664662.1,APHIDBASE:ACYPI007246;Name=XP_016664662.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664662.1
+GL349622	Gnomon	CDS	1564116	1564217	.	-	0	ID=cds251;Parent=rna272;Dbxref=GeneID:100166367,Genbank:XP_016664662.1,APHIDBASE:ACYPI007246;Name=XP_016664662.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_016664662.1
+GL349622	Gnomon	CDS	1566740	1566842	.	-	0	ID=cds252;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XP_001945316.1,APHIDBASE:ACYPI007246;Name=XP_001945316.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_001945316.1
+GL349622	Gnomon	CDS	1565817	1566020	.	-	2	ID=cds252;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XP_001945316.1,APHIDBASE:ACYPI007246;Name=XP_001945316.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_001945316.1
+GL349622	Gnomon	CDS	1565543	1565732	.	-	2	ID=cds252;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XP_001945316.1,APHIDBASE:ACYPI007246;Name=XP_001945316.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_001945316.1
+GL349622	Gnomon	CDS	1564740	1564983	.	-	1	ID=cds252;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XP_001945316.1,APHIDBASE:ACYPI007246;Name=XP_001945316.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_001945316.1
+GL349622	Gnomon	CDS	1564116	1564217	.	-	0	ID=cds252;Parent=rna273;Dbxref=GeneID:100166367,Genbank:XP_001945316.1,APHIDBASE:ACYPI007246;Name=XP_001945316.1;gbkey=CDS;gene=LOC100166367;product=cleavage and polyadenylation specificity factor subunit 4;protein_id=XP_001945316.1
+GL349622	Gnomon	gene	1567127	1569525	.	+	.	ID=gene185;Dbxref=GeneID:100574472;Name=LOC100574472;gbkey=Gene;gene=LOC100574472;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1567127	1569525	.	+	.	ID=rna274;Parent=gene185;Dbxref=GeneID:100574472,Genbank:XM_003240051.3;Name=XM_003240051.3;gbkey=mRNA;gene=LOC100574472;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=uncharacterized LOC100574472;transcript_id=XM_003240051.3
+GL349622	Gnomon	exon	1567127	1567756	.	+	.	ID=id2404;Parent=rna274;Dbxref=GeneID:100574472,Genbank:XM_003240051.3;gbkey=mRNA;gene=LOC100574472;product=uncharacterized LOC100574472;transcript_id=XM_003240051.3
+GL349622	Gnomon	exon	1568653	1568771	.	+	.	ID=id2405;Parent=rna274;Dbxref=GeneID:100574472,Genbank:XM_003240051.3;gbkey=mRNA;gene=LOC100574472;product=uncharacterized LOC100574472;transcript_id=XM_003240051.3
+GL349622	Gnomon	exon	1568842	1569525	.	+	.	ID=id2406;Parent=rna274;Dbxref=GeneID:100574472,Genbank:XM_003240051.3;gbkey=mRNA;gene=LOC100574472;product=uncharacterized LOC100574472;transcript_id=XM_003240051.3
+GL349622	Gnomon	CDS	1567340	1567756	.	+	0	ID=cds253;Parent=rna274;Dbxref=GeneID:100574472,Genbank:XP_003240099.1;Name=XP_003240099.1;gbkey=CDS;gene=LOC100574472;product=uncharacterized protein LOC100574472;protein_id=XP_003240099.1
+GL349622	Gnomon	CDS	1568653	1568771	.	+	0	ID=cds253;Parent=rna274;Dbxref=GeneID:100574472,Genbank:XP_003240099.1;Name=XP_003240099.1;gbkey=CDS;gene=LOC100574472;product=uncharacterized protein LOC100574472;protein_id=XP_003240099.1
+GL349622	Gnomon	CDS	1568842	1569130	.	+	1	ID=cds253;Parent=rna274;Dbxref=GeneID:100574472,Genbank:XP_003240099.1;Name=XP_003240099.1;gbkey=CDS;gene=LOC100574472;product=uncharacterized protein LOC100574472;protein_id=XP_003240099.1
+GL349622	Gnomon	gene	1572933	1574946	.	-	.	ID=gene186;Dbxref=APHIDBASE:ACYPI005373,GeneID:100164349;Name=LOC100164349;gbkey=Gene;gene=LOC100164349;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1572933	1574946	.	-	.	ID=rna275;Parent=gene186;Dbxref=GeneID:100164349,Genbank:XM_008188215.1,APHIDBASE:ACYPI005373;Name=XM_008188215.1;gbkey=mRNA;gene=LOC100164349;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 32 ESTs%2C 10 Proteins%2C and 96%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 42 samples with support for all annotated introns;product=small ubiquitin-related modifier-like;transcript_id=XM_008188215.1
+GL349622	Gnomon	exon	1574331	1574946	.	-	.	ID=id2407;Parent=rna275;Dbxref=GeneID:100164349,Genbank:XM_008188215.1,APHIDBASE:ACYPI005373;gbkey=mRNA;gene=LOC100164349;product=small ubiquitin-related modifier-like;transcript_id=XM_008188215.1
+GL349622	Gnomon	exon	1572933	1574157	.	-	.	ID=id2408;Parent=rna275;Dbxref=GeneID:100164349,Genbank:XM_008188215.1,APHIDBASE:ACYPI005373;gbkey=mRNA;gene=LOC100164349;product=small ubiquitin-related modifier-like;transcript_id=XM_008188215.1
+GL349622	Gnomon	CDS	1573735	1574151	.	-	0	ID=cds254;Parent=rna275;Dbxref=GeneID:100164349,Genbank:XP_008186437.1,APHIDBASE:ACYPI005373;Name=XP_008186437.1;gbkey=CDS;gene=LOC100164349;product=small ubiquitin-related modifier-like;protein_id=XP_008186437.1
+GL349622	Gnomon	gene	1576005	1588545	.	+	.	ID=gene187;Dbxref=APHIDBASE:ACYPI003974,GeneID:100162851;Name=LOC100162851;gbkey=Gene;gene=LOC100162851;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1576005	1588545	.	+	.	ID=rna276;Parent=gene187;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;Name=XM_001946456.4;gbkey=mRNA;gene=LOC100162851;model_evidence=Supporting evidence includes similarity to: 10 ESTs%2C and 95%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1576005	1576389	.	+	.	ID=id2409;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1580920	1581076	.	+	.	ID=id2410;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1581169	1581232	.	+	.	ID=id2411;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1582907	1583014	.	+	.	ID=id2412;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1583118	1583215	.	+	.	ID=id2413;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1583293	1583382	.	+	.	ID=id2414;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1583533	1583736	.	+	.	ID=id2415;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1584897	1585056	.	+	.	ID=id2416;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1585646	1585881	.	+	.	ID=id2417;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1586449	1586605	.	+	.	ID=id2418;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1586668	1586906	.	+	.	ID=id2419;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1588021	1588157	.	+	.	ID=id2420;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	exon	1588234	1588545	.	+	.	ID=id2421;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XM_001946456.4,APHIDBASE:ACYPI003974;gbkey=mRNA;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;transcript_id=XM_001946456.4
+GL349622	Gnomon	CDS	1580939	1581076	.	+	0	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1581169	1581232	.	+	0	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1582907	1583014	.	+	2	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1583118	1583215	.	+	2	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1583293	1583382	.	+	0	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1583533	1583736	.	+	0	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1584897	1585056	.	+	0	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1585646	1585881	.	+	2	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1586449	1586605	.	+	0	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1586668	1586906	.	+	2	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1588021	1588157	.	+	0	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	CDS	1588234	1588354	.	+	1	ID=cds255;Parent=rna276;Dbxref=GeneID:100162851,Genbank:XP_001946491.1,APHIDBASE:ACYPI003974;Name=XP_001946491.1;gbkey=CDS;gene=LOC100162851;product=PTS-dependent dihydroxyacetone kinase%2C dihydroxyacetone-binding subunit DhaK;protein_id=XP_001946491.1
+GL349622	Gnomon	gene	1588546	1590260	.	-	.	ID=gene188;Dbxref=APHIDBASE:ACYPI003438,GeneID:100162278;Name=LOC100162278;gbkey=Gene;gene=LOC100162278;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1588546	1590260	.	-	.	ID=rna277;Parent=gene188;Dbxref=GeneID:100162278,Genbank:XM_001945844.4,APHIDBASE:ACYPI003438;Name=XM_001945844.4;gbkey=mRNA;gene=LOC100162278;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 33 ESTs%2C 1 Protein%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 42 samples with support for all annotated introns;product=small ubiquitin-related modifier-like;transcript_id=XM_001945844.4
+GL349622	Gnomon	exon	1589966	1590260	.	-	.	ID=id2422;Parent=rna277;Dbxref=GeneID:100162278,Genbank:XM_001945844.4,APHIDBASE:ACYPI003438;gbkey=mRNA;gene=LOC100162278;product=small ubiquitin-related modifier-like;transcript_id=XM_001945844.4
+GL349622	Gnomon	exon	1588546	1589881	.	-	.	ID=id2423;Parent=rna277;Dbxref=GeneID:100162278,Genbank:XM_001945844.4,APHIDBASE:ACYPI003438;gbkey=mRNA;gene=LOC100162278;product=small ubiquitin-related modifier-like;transcript_id=XM_001945844.4
+GL349622	Gnomon	CDS	1589473	1589877	.	-	0	ID=cds256;Parent=rna277;Dbxref=GeneID:100162278,Genbank:XP_001945879.1,APHIDBASE:ACYPI003438;Name=XP_001945879.1;gbkey=CDS;gene=LOC100162278;product=small ubiquitin-related modifier-like;protein_id=XP_001945879.1
+GL349622	BestRefSeq	gene	1593498	1594937	.	+	.	ID=gene189;Dbxref=APHIDBASE:ACYPI001547,GeneID:100160233;Name=LOC100160233;description=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;gbkey=Gene;gene=LOC100160233;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	1593498	1594937	.	+	.	ID=rna278;Parent=gene189;Dbxref=GeneID:100160233,Genbank:NM_001162615.2,APHIDBASE:ACYPI001547;Name=NM_001162615.2;Note=The RefSeq transcript has 2 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;transcript_id=NM_001162615.2
+GL349622	BestRefSeq	exon	1593498	1593812	.	+	.	ID=id2424;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NM_001162615.2,APHIDBASE:ACYPI001547;Note=The RefSeq transcript has 2 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;transcript_id=NM_001162615.2
+GL349622	BestRefSeq	exon	1594118	1594342	.	+	.	ID=id2425;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NM_001162615.2,APHIDBASE:ACYPI001547;Note=The RefSeq transcript has 2 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;transcript_id=NM_001162615.2
+GL349622	BestRefSeq	exon	1594415	1594493	.	+	.	ID=id2426;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NM_001162615.2,APHIDBASE:ACYPI001547;Note=The RefSeq transcript has 2 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;transcript_id=NM_001162615.2
+GL349622	BestRefSeq	exon	1594673	1594937	.	+	.	ID=id2427;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NM_001162615.2,APHIDBASE:ACYPI001547;Note=The RefSeq transcript has 2 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;transcript_id=NM_001162615.2
+GL349622	BestRefSeq	CDS	1593738	1593812	.	+	0	ID=cds257;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NP_001156087.1,APHIDBASE:ACYPI001547;Name=NP_001156087.1;gbkey=CDS;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;protein_id=NP_001156087.1
+GL349622	BestRefSeq	CDS	1594118	1594342	.	+	0	ID=cds257;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NP_001156087.1,APHIDBASE:ACYPI001547;Name=NP_001156087.1;gbkey=CDS;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;protein_id=NP_001156087.1
+GL349622	BestRefSeq	CDS	1594415	1594493	.	+	0	ID=cds257;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NP_001156087.1,APHIDBASE:ACYPI001547;Name=NP_001156087.1;gbkey=CDS;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;protein_id=NP_001156087.1
+GL349622	BestRefSeq	CDS	1594673	1594758	.	+	2	ID=cds257;Parent=rna278;Dbxref=GeneID:100160233,Genbank:NP_001156087.1,APHIDBASE:ACYPI001547;Name=NP_001156087.1;gbkey=CDS;gene=LOC100160233;product=iron-sulfur cluster assembly enzyme ISCU%2C mitochondrial-like;protein_id=NP_001156087.1
+GL349622	Gnomon	gene	1595638	1600785	.	-	.	ID=gene190;Dbxref=APHIDBASE:ACYPI002098,GeneID:100160828;Name=LOC100160828;gbkey=Gene;gene=LOC100160828;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1595638	1600785	.	-	.	ID=rna279;Parent=gene190;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;Name=XM_008188425.2;gbkey=mRNA;gene=LOC100160828;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	exon	1600125	1600785	.	-	.	ID=id2428;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	exon	1599236	1599407	.	-	.	ID=id2429;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	exon	1598989	1599167	.	-	.	ID=id2430;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	exon	1598263	1598514	.	-	.	ID=id2431;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	exon	1597751	1597788	.	-	.	ID=id2432;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	exon	1595638	1596526	.	-	.	ID=id2433;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XM_008188425.2,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X3;transcript_id=XM_008188425.2
+GL349622	Gnomon	mRNA	1595638	1600785	.	-	.	ID=rna280;Parent=gene190;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;Name=XM_001946503.3;gbkey=mRNA;gene=LOC100160828;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 9 ESTs%2C 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	exon	1600125	1600785	.	-	.	ID=id2434;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	exon	1599236	1599407	.	-	.	ID=id2435;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	exon	1598989	1599167	.	-	.	ID=id2436;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	exon	1598263	1598514	.	-	.	ID=id2437;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	exon	1597711	1597788	.	-	.	ID=id2438;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	exon	1595638	1596526	.	-	.	ID=id2439;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XM_001946503.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X1;transcript_id=XM_001946503.3
+GL349622	Gnomon	mRNA	1595638	1600774	.	-	.	ID=rna281;Parent=gene190;Dbxref=GeneID:100160828,Genbank:XM_003240053.3,APHIDBASE:ACYPI002098;Name=XM_003240053.3;gbkey=mRNA;gene=LOC100160828;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 10 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 34 samples with support for all annotated introns;product=zinc finger C4H2 domain-containing protein%2C transcript variant X2;transcript_id=XM_003240053.3
+GL349622	Gnomon	exon	1600125	1600774	.	-	.	ID=id2440;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XM_003240053.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X2;transcript_id=XM_003240053.3
+GL349622	Gnomon	exon	1599236	1599407	.	-	.	ID=id2441;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XM_003240053.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X2;transcript_id=XM_003240053.3
+GL349622	Gnomon	exon	1598989	1599167	.	-	.	ID=id2442;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XM_003240053.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X2;transcript_id=XM_003240053.3
+GL349622	Gnomon	exon	1598263	1598514	.	-	.	ID=id2443;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XM_003240053.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X2;transcript_id=XM_003240053.3
+GL349622	Gnomon	exon	1595638	1596526	.	-	.	ID=id2444;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XM_003240053.3,APHIDBASE:ACYPI002098;gbkey=mRNA;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein%2C transcript variant X2;transcript_id=XM_003240053.3
+GL349622	Gnomon	CDS	1600125	1600198	.	-	0	ID=cds258;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XP_003240101.1,APHIDBASE:ACYPI002098;Name=XP_003240101.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X2;protein_id=XP_003240101.1
+GL349622	Gnomon	CDS	1599236	1599407	.	-	1	ID=cds258;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XP_003240101.1,APHIDBASE:ACYPI002098;Name=XP_003240101.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X2;protein_id=XP_003240101.1
+GL349622	Gnomon	CDS	1598989	1599167	.	-	0	ID=cds258;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XP_003240101.1,APHIDBASE:ACYPI002098;Name=XP_003240101.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X2;protein_id=XP_003240101.1
+GL349622	Gnomon	CDS	1598263	1598514	.	-	1	ID=cds258;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XP_003240101.1,APHIDBASE:ACYPI002098;Name=XP_003240101.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X2;protein_id=XP_003240101.1
+GL349622	Gnomon	CDS	1596397	1596526	.	-	1	ID=cds258;Parent=rna281;Dbxref=GeneID:100160828,Genbank:XP_003240101.1,APHIDBASE:ACYPI002098;Name=XP_003240101.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X2;protein_id=XP_003240101.1
+GL349622	Gnomon	CDS	1600125	1600198	.	-	0	ID=cds259;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XP_001946538.2,APHIDBASE:ACYPI002098;Name=XP_001946538.2;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X1;protein_id=XP_001946538.2
+GL349622	Gnomon	CDS	1599236	1599407	.	-	1	ID=cds259;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XP_001946538.2,APHIDBASE:ACYPI002098;Name=XP_001946538.2;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X1;protein_id=XP_001946538.2
+GL349622	Gnomon	CDS	1598989	1599167	.	-	0	ID=cds259;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XP_001946538.2,APHIDBASE:ACYPI002098;Name=XP_001946538.2;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X1;protein_id=XP_001946538.2
+GL349622	Gnomon	CDS	1598263	1598514	.	-	1	ID=cds259;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XP_001946538.2,APHIDBASE:ACYPI002098;Name=XP_001946538.2;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X1;protein_id=XP_001946538.2
+GL349622	Gnomon	CDS	1597711	1597788	.	-	1	ID=cds259;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XP_001946538.2,APHIDBASE:ACYPI002098;Name=XP_001946538.2;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X1;protein_id=XP_001946538.2
+GL349622	Gnomon	CDS	1596397	1596526	.	-	1	ID=cds259;Parent=rna280;Dbxref=GeneID:100160828,Genbank:XP_001946538.2,APHIDBASE:ACYPI002098;Name=XP_001946538.2;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X1;protein_id=XP_001946538.2
+GL349622	Gnomon	CDS	1600125	1600198	.	-	0	ID=cds260;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XP_008186647.1,APHIDBASE:ACYPI002098;Name=XP_008186647.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X3;protein_id=XP_008186647.1
+GL349622	Gnomon	CDS	1599236	1599407	.	-	1	ID=cds260;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XP_008186647.1,APHIDBASE:ACYPI002098;Name=XP_008186647.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X3;protein_id=XP_008186647.1
+GL349622	Gnomon	CDS	1598989	1599167	.	-	0	ID=cds260;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XP_008186647.1,APHIDBASE:ACYPI002098;Name=XP_008186647.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X3;protein_id=XP_008186647.1
+GL349622	Gnomon	CDS	1598263	1598514	.	-	1	ID=cds260;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XP_008186647.1,APHIDBASE:ACYPI002098;Name=XP_008186647.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X3;protein_id=XP_008186647.1
+GL349622	Gnomon	CDS	1597751	1597788	.	-	1	ID=cds260;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XP_008186647.1,APHIDBASE:ACYPI002098;Name=XP_008186647.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X3;protein_id=XP_008186647.1
+GL349622	Gnomon	CDS	1596507	1596526	.	-	2	ID=cds260;Parent=rna279;Dbxref=GeneID:100160828,Genbank:XP_008186647.1,APHIDBASE:ACYPI002098;Name=XP_008186647.1;gbkey=CDS;gene=LOC100160828;product=zinc finger C4H2 domain-containing protein isoform X3;protein_id=XP_008186647.1
+GL349622	Gnomon	gene	1600872	1607388	.	+	.	ID=gene191;Dbxref=APHIDBASE:ACYPI009752,GeneID:100169103;Name=LOC100169103;gbkey=Gene;gene=LOC100169103;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1600872	1607388	.	+	.	ID=rna282;Parent=gene191;Dbxref=GeneID:100169103,Genbank:XM_016809382.1,APHIDBASE:ACYPI009752;Name=XM_016809382.1;gbkey=mRNA;gene=LOC100169103;model_evidence=Supporting evidence includes similarity to: 16 mRNAs%2C 365 ESTs%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 45 samples with support for all annotated introns;product=integumentary mucin C.1-like;transcript_id=XM_016809382.1
+GL349622	Gnomon	exon	1600872	1601013	.	+	.	ID=id2445;Parent=rna282;Dbxref=GeneID:100169103,Genbank:XM_016809382.1,APHIDBASE:ACYPI009752;gbkey=mRNA;gene=LOC100169103;product=integumentary mucin C.1-like;transcript_id=XM_016809382.1
+GL349622	Gnomon	exon	1601190	1601536	.	+	.	ID=id2446;Parent=rna282;Dbxref=GeneID:100169103,Genbank:XM_016809382.1,APHIDBASE:ACYPI009752;gbkey=mRNA;gene=LOC100169103;product=integumentary mucin C.1-like;transcript_id=XM_016809382.1
+GL349622	Gnomon	exon	1606407	1606739	.	+	.	ID=id2447;Parent=rna282;Dbxref=GeneID:100169103,Genbank:XM_016809382.1,APHIDBASE:ACYPI009752;gbkey=mRNA;gene=LOC100169103;product=integumentary mucin C.1-like;transcript_id=XM_016809382.1
+GL349622	Gnomon	exon	1606815	1607388	.	+	.	ID=id2448;Parent=rna282;Dbxref=GeneID:100169103,Genbank:XM_016809382.1,APHIDBASE:ACYPI009752;gbkey=mRNA;gene=LOC100169103;product=integumentary mucin C.1-like;transcript_id=XM_016809382.1
+GL349622	Gnomon	CDS	1601404	1601536	.	+	0	ID=cds261;Parent=rna282;Dbxref=GeneID:100169103,Genbank:XP_016664871.1,APHIDBASE:ACYPI009752;Name=XP_016664871.1;gbkey=CDS;gene=LOC100169103;product=integumentary mucin C.1-like;protein_id=XP_016664871.1
+GL349622	Gnomon	CDS	1606407	1606739	.	+	2	ID=cds261;Parent=rna282;Dbxref=GeneID:100169103,Genbank:XP_016664871.1,APHIDBASE:ACYPI009752;Name=XP_016664871.1;gbkey=CDS;gene=LOC100169103;product=integumentary mucin C.1-like;protein_id=XP_016664871.1
+GL349622	Gnomon	CDS	1606815	1606909	.	+	2	ID=cds261;Parent=rna282;Dbxref=GeneID:100169103,Genbank:XP_016664871.1,APHIDBASE:ACYPI009752;Name=XP_016664871.1;gbkey=CDS;gene=LOC100169103;product=integumentary mucin C.1-like;protein_id=XP_016664871.1
+GL349622	Gnomon	gene	1654762	1668183	.	-	.	ID=gene192;Dbxref=APHIDBASE:ACYPI000901,GeneID:100159541;Name=LOC100159541;gbkey=Gene;gene=LOC100159541;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1654762	1668183	.	-	.	ID=rna283;Parent=gene192;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;Name=XM_008188560.2;gbkey=mRNA;gene=LOC100159541;model_evidence=Supporting evidence includes similarity to: 8 ESTs%2C 2 Proteins%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1668160	1668183	.	-	.	ID=id2449;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1667563	1667640	.	-	.	ID=id2450;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1667324	1667468	.	-	.	ID=id2451;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1663270	1663414	.	-	.	ID=id2452;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1663059	1663203	.	-	.	ID=id2453;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1662075	1662171	.	-	.	ID=id2454;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1661790	1662001	.	-	.	ID=id2455;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1659203	1659431	.	-	.	ID=id2456;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1658605	1658715	.	-	.	ID=id2457;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1658471	1658543	.	-	.	ID=id2458;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1657382	1657508	.	-	.	ID=id2459;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1657068	1657213	.	-	.	ID=id2460;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1656782	1657004	.	-	.	ID=id2461;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1656544	1656719	.	-	.	ID=id2462;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	exon	1654762	1655925	.	-	.	ID=id2463;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XM_008188560.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X2;transcript_id=XM_008188560.2
+GL349622	Gnomon	mRNA	1654762	1668115	.	-	.	ID=rna284;Parent=gene192;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;Name=XM_008188530.2;gbkey=mRNA;gene=LOC100159541;model_evidence=Supporting evidence includes similarity to: 10 ESTs%2C 2 Proteins%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 8 samples with support for all annotated introns;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1667766	1668115	.	-	.	ID=id2464;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1667563	1667640	.	-	.	ID=id2465;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1667324	1667468	.	-	.	ID=id2466;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1663270	1663414	.	-	.	ID=id2467;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1663059	1663203	.	-	.	ID=id2468;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1662075	1662171	.	-	.	ID=id2469;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1661790	1662001	.	-	.	ID=id2470;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1659203	1659431	.	-	.	ID=id2471;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1658605	1658715	.	-	.	ID=id2472;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1658471	1658543	.	-	.	ID=id2473;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1657382	1657508	.	-	.	ID=id2474;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1657068	1657213	.	-	.	ID=id2475;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1656782	1657004	.	-	.	ID=id2476;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1656544	1656719	.	-	.	ID=id2477;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	exon	1654762	1655925	.	-	.	ID=id2478;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XM_008188530.2,APHIDBASE:ACYPI000901;gbkey=mRNA;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial%2C transcript variant X1;transcript_id=XM_008188530.2
+GL349622	Gnomon	CDS	1667563	1667605	.	-	0	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1667324	1667468	.	-	2	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1663270	1663414	.	-	1	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1663059	1663203	.	-	0	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1662075	1662171	.	-	2	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1661790	1662001	.	-	1	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1659203	1659431	.	-	2	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1658605	1658715	.	-	1	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1658471	1658543	.	-	1	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1657382	1657508	.	-	0	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1657068	1657213	.	-	2	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1656782	1657004	.	-	0	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1656544	1656719	.	-	2	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1655821	1655925	.	-	0	ID=cds262;Parent=rna284;Dbxref=GeneID:100159541,Genbank:XP_008186752.1,APHIDBASE:ACYPI000901;Name=XP_008186752.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186752.1
+GL349622	Gnomon	CDS	1667563	1667605	.	-	0	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1667324	1667468	.	-	2	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1663270	1663414	.	-	1	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1663059	1663203	.	-	0	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1662075	1662171	.	-	2	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1661790	1662001	.	-	1	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1659203	1659431	.	-	2	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1658605	1658715	.	-	1	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1658471	1658543	.	-	1	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1657382	1657508	.	-	0	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1657068	1657213	.	-	2	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1656782	1657004	.	-	0	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1656544	1656719	.	-	2	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	CDS	1655821	1655925	.	-	0	ID=cds263;Parent=rna283;Dbxref=GeneID:100159541,Genbank:XP_008186782.1,APHIDBASE:ACYPI000901;Name=XP_008186782.1;gbkey=CDS;gene=LOC100159541;product=acyl-CoA synthetase short-chain family member 3%2C mitochondrial;protein_id=XP_008186782.1
+GL349622	Gnomon	gene	1704766	1705477	.	+	.	ID=gene193;Dbxref=GeneID:107884404;Name=LOC107884404;gbkey=Gene;gene=LOC107884404;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1704766	1705477	.	+	.	ID=rna285;Parent=gene193;Dbxref=GeneID:107884404,Genbank:XM_016806384.1;Name=XM_016806384.1;gbkey=mRNA;gene=LOC107884404;model_evidence=Supporting evidence includes similarity to: 93%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=uncharacterized LOC107884404;transcript_id=XM_016806384.1
+GL349622	Gnomon	exon	1704766	1705005	.	+	.	ID=id2479;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XM_016806384.1;gbkey=mRNA;gene=LOC107884404;product=uncharacterized LOC107884404;transcript_id=XM_016806384.1
+GL349622	Gnomon	exon	1705116	1705163	.	+	.	ID=id2480;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XM_016806384.1;gbkey=mRNA;gene=LOC107884404;product=uncharacterized LOC107884404;transcript_id=XM_016806384.1
+GL349622	Gnomon	exon	1705235	1705338	.	+	.	ID=id2481;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XM_016806384.1;gbkey=mRNA;gene=LOC107884404;product=uncharacterized LOC107884404;transcript_id=XM_016806384.1
+GL349622	Gnomon	exon	1705412	1705477	.	+	.	ID=id2482;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XM_016806384.1;gbkey=mRNA;gene=LOC107884404;product=uncharacterized LOC107884404;transcript_id=XM_016806384.1
+GL349622	Gnomon	CDS	1704888	1705005	.	+	0	ID=cds264;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XP_016661873.1;Name=XP_016661873.1;gbkey=CDS;gene=LOC107884404;product=uncharacterized protein LOC107884404;protein_id=XP_016661873.1
+GL349622	Gnomon	CDS	1705116	1705163	.	+	2	ID=cds264;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XP_016661873.1;Name=XP_016661873.1;gbkey=CDS;gene=LOC107884404;product=uncharacterized protein LOC107884404;protein_id=XP_016661873.1
+GL349622	Gnomon	CDS	1705235	1705338	.	+	2	ID=cds264;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XP_016661873.1;Name=XP_016661873.1;gbkey=CDS;gene=LOC107884404;product=uncharacterized protein LOC107884404;protein_id=XP_016661873.1
+GL349622	Gnomon	CDS	1705412	1705477	.	+	0	ID=cds264;Parent=rna285;Dbxref=GeneID:107884404,Genbank:XP_016661873.1;Name=XP_016661873.1;gbkey=CDS;gene=LOC107884404;product=uncharacterized protein LOC107884404;protein_id=XP_016661873.1
+GL349622	Gnomon	gene	1726315	1727286	.	+	.	ID=gene194;Dbxref=GeneID:103311658;Name=LOC103311658;gbkey=Gene;gene=LOC103311658;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1726315	1727286	.	+	.	ID=rna286;Parent=gene194;Dbxref=GeneID:103311658,Genbank:XM_008191355.1;Name=XM_008191355.1;gbkey=mRNA;gene=LOC103311658;model_evidence=Supporting evidence includes similarity to: 5 Proteins;product=uncharacterized LOC103311658;transcript_id=XM_008191355.1
+GL349622	Gnomon	exon	1726315	1727286	.	+	.	ID=id2483;Parent=rna286;Dbxref=GeneID:103311658,Genbank:XM_008191355.1;gbkey=mRNA;gene=LOC103311658;product=uncharacterized LOC103311658;transcript_id=XM_008191355.1
+GL349622	Gnomon	CDS	1726315	1727286	.	+	0	ID=cds265;Parent=rna286;Dbxref=GeneID:103311658,Genbank:XP_008189577.1;Name=XP_008189577.1;gbkey=CDS;gene=LOC103311658;product=uncharacterized protein LOC103311658;protein_id=XP_008189577.1
+GL349622	Gnomon	gene	1736008	1736331	.	+	.	ID=gene195;Dbxref=GeneID:107884428;Name=LOC107884428;gbkey=Gene;gene=LOC107884428;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1736008	1736331	.	+	.	ID=rna287;Parent=gene195;Dbxref=GeneID:107884428,Genbank:XM_016806458.1;Name=XM_016806458.1;gbkey=mRNA;gene=LOC107884428;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized mitochondrial protein AtMg00860-like;transcript_id=XM_016806458.1
+GL349622	Gnomon	exon	1736008	1736331	.	+	.	ID=id2484;Parent=rna287;Dbxref=GeneID:107884428,Genbank:XM_016806458.1;gbkey=mRNA;gene=LOC107884428;product=uncharacterized mitochondrial protein AtMg00860-like;transcript_id=XM_016806458.1
+GL349622	Gnomon	CDS	1736008	1736331	.	+	0	ID=cds266;Parent=rna287;Dbxref=GeneID:107884428,Genbank:XP_016661947.1;Name=XP_016661947.1;gbkey=CDS;gene=LOC107884428;product=uncharacterized mitochondrial protein AtMg00860-like;protein_id=XP_016661947.1
+GL349622	Gnomon	gene	1747701	1777168	.	+	.	ID=gene196;Dbxref=APHIDBASE:ACYPI001900,GeneID:100160616;Name=LOC100160616;gbkey=Gene;gene=LOC100160616;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1747701	1777168	.	+	.	ID=rna288;Parent=gene196;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;Name=XM_008191526.2;gbkey=mRNA;gene=LOC100160616;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 12 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1747701	1747900	.	+	.	ID=id2485;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1751131	1751314	.	+	.	ID=id2486;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1751459	1751736	.	+	.	ID=id2487;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1764952	1765107	.	+	.	ID=id2488;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1765237	1765548	.	+	.	ID=id2489;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1768290	1768473	.	+	.	ID=id2490;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1768551	1768976	.	+	.	ID=id2491;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1769086	1769275	.	+	.	ID=id2492;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1769380	1769660	.	+	.	ID=id2493;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1775956	1776155	.	+	.	ID=id2494;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1776213	1776380	.	+	.	ID=id2495;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1776449	1776589	.	+	.	ID=id2496;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1776705	1776786	.	+	.	ID=id2497;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	exon	1776856	1777168	.	+	.	ID=id2498;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XM_008191526.2,APHIDBASE:ACYPI001900;gbkey=mRNA;gene=LOC100160616;product=aminopeptidase N;transcript_id=XM_008191526.2
+GL349622	Gnomon	CDS	1751132	1751314	.	+	0	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1751459	1751736	.	+	0	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1764952	1765107	.	+	1	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1765237	1765548	.	+	1	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1768290	1768473	.	+	1	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1768551	1768976	.	+	0	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1769086	1769275	.	+	0	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1769380	1769660	.	+	2	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1775956	1776155	.	+	0	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1776213	1776380	.	+	1	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1776449	1776589	.	+	1	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1776705	1776786	.	+	1	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	CDS	1776856	1776990	.	+	0	ID=cds267;Parent=rna288;Dbxref=GeneID:100160616,Genbank:XP_008189748.1,APHIDBASE:ACYPI001900;Name=XP_008189748.1;gbkey=CDS;gene=LOC100160616;product=aminopeptidase N;protein_id=XP_008189748.1
+GL349622	Gnomon	gene	1789286	1848837	.	-	.	ID=gene197;Dbxref=APHIDBASE:ACYPI005769,GeneID:100164781;Name=LOC100164781;gbkey=Gene;gene=LOC100164781;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1789286	1848837	.	-	.	ID=rna289;Parent=gene197;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;Name=XM_001942843.4;gbkey=mRNA;gene=LOC100164781;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 12 ESTs%2C 10 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 25 samples with support for all annotated introns;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1848553	1848837	.	-	.	ID=id2499;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1817202	1817626	.	-	.	ID=id2500;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1808179	1808332	.	-	.	ID=id2501;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1805317	1805554	.	-	.	ID=id2502;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1802697	1802922	.	-	.	ID=id2503;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1800925	1801126	.	-	.	ID=id2504;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1800110	1800302	.	-	.	ID=id2505;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1795473	1795616	.	-	.	ID=id2506;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1793285	1793489	.	-	.	ID=id2507;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1790192	1790282	.	-	.	ID=id2508;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1789968	1790121	.	-	.	ID=id2509;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	exon	1789286	1789909	.	-	.	ID=id2510;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XM_001942843.4,APHIDBASE:ACYPI005769;gbkey=mRNA;gene=LOC100164781;product=long-chain fatty acid transport protein 4;transcript_id=XM_001942843.4
+GL349622	Gnomon	CDS	1848553	1848579	.	-	0	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1817202	1817626	.	-	0	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1808179	1808332	.	-	1	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1805317	1805554	.	-	0	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1802697	1802922	.	-	2	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1800925	1801126	.	-	1	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1800110	1800302	.	-	0	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1795473	1795616	.	-	2	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1793285	1793489	.	-	2	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1790192	1790282	.	-	1	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1789968	1790121	.	-	0	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	CDS	1789755	1789909	.	-	2	ID=cds268;Parent=rna289;Dbxref=GeneID:100164781,Genbank:XP_001942878.2,APHIDBASE:ACYPI005769;Name=XP_001942878.2;gbkey=CDS;gene=LOC100164781;product=long-chain fatty acid transport protein 4;protein_id=XP_001942878.2
+GL349622	Gnomon	gene	1894532	1896717	.	+	.	ID=gene198;Dbxref=APHIDBASE:ACYPI008893,GeneID:100168167;Name=LOC100168167;gbkey=Gene;gene=LOC100168167;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1894532	1896717	.	+	.	ID=rna290;Parent=gene198;Dbxref=GeneID:100168167,Genbank:XM_001942731.4,APHIDBASE:ACYPI008893;Name=XM_001942731.4;gbkey=mRNA;gene=LOC100168167;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 91%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 26 samples with support for all annotated introns;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X1;transcript_id=XM_001942731.4
+GL349622	Gnomon	exon	1894532	1894648	.	+	.	ID=id2511;Parent=rna290;Dbxref=GeneID:100168167,Genbank:XM_001942731.4,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X1;transcript_id=XM_001942731.4
+GL349622	Gnomon	exon	1895079	1896717	.	+	.	ID=id2512;Parent=rna290;Dbxref=GeneID:100168167,Genbank:XM_001942731.4,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X1;transcript_id=XM_001942731.4
+GL349622	Gnomon	mRNA	1894532	1896717	.	+	.	ID=rna291;Parent=gene198;Dbxref=GeneID:100168167,Genbank:XM_008188693.2,APHIDBASE:ACYPI008893;Name=XM_008188693.2;gbkey=mRNA;gene=LOC100168167;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 90%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 16 samples with support for all annotated introns;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X2;transcript_id=XM_008188693.2
+GL349622	Gnomon	exon	1894532	1894648	.	+	.	ID=id2513;Parent=rna291;Dbxref=GeneID:100168167,Genbank:XM_008188693.2,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X2;transcript_id=XM_008188693.2
+GL349622	Gnomon	exon	1895079	1895364	.	+	.	ID=id2514;Parent=rna291;Dbxref=GeneID:100168167,Genbank:XM_008188693.2,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X2;transcript_id=XM_008188693.2
+GL349622	Gnomon	exon	1895584	1896717	.	+	.	ID=id2515;Parent=rna291;Dbxref=GeneID:100168167,Genbank:XM_008188693.2,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X2;transcript_id=XM_008188693.2
+GL349622	Gnomon	mRNA	1894532	1896717	.	+	.	ID=rna292;Parent=gene198;Dbxref=GeneID:100168167,Genbank:XM_008188725.2,APHIDBASE:ACYPI008893;Name=XM_008188725.2;gbkey=mRNA;gene=LOC100168167;model_evidence=Supporting evidence includes similarity to: 4 ESTs%2C and 89%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 20 samples with support for all annotated introns;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X3;transcript_id=XM_008188725.2
+GL349622	Gnomon	exon	1894532	1894648	.	+	.	ID=id2516;Parent=rna292;Dbxref=GeneID:100168167,Genbank:XM_008188725.2,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X3;transcript_id=XM_008188725.2
+GL349622	Gnomon	exon	1895079	1895250	.	+	.	ID=id2517;Parent=rna292;Dbxref=GeneID:100168167,Genbank:XM_008188725.2,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X3;transcript_id=XM_008188725.2
+GL349622	Gnomon	exon	1895584	1896717	.	+	.	ID=id2518;Parent=rna292;Dbxref=GeneID:100168167,Genbank:XM_008188725.2,APHIDBASE:ACYPI008893;gbkey=mRNA;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5%2C transcript variant X3;transcript_id=XM_008188725.2
+GL349622	Gnomon	CDS	1894592	1894648	.	+	0	ID=cds269;Parent=rna290;Dbxref=GeneID:100168167,Genbank:XP_001942766.2,APHIDBASE:ACYPI008893;Name=XP_001942766.2;gbkey=CDS;gene=LOC100168167;product=mucin-2 isoform X1;protein_id=XP_001942766.2
+GL349622	Gnomon	CDS	1895079	1896107	.	+	0	ID=cds269;Parent=rna290;Dbxref=GeneID:100168167,Genbank:XP_001942766.2,APHIDBASE:ACYPI008893;Name=XP_001942766.2;gbkey=CDS;gene=LOC100168167;product=mucin-2 isoform X1;protein_id=XP_001942766.2
+GL349622	Gnomon	CDS	1894592	1894648	.	+	0	ID=cds270;Parent=rna291;Dbxref=GeneID:100168167,Genbank:XP_008186915.1,APHIDBASE:ACYPI008893;Name=XP_008186915.1;gbkey=CDS;gene=LOC100168167;product=mucin-2 isoform X2;protein_id=XP_008186915.1
+GL349622	Gnomon	CDS	1895079	1895364	.	+	0	ID=cds270;Parent=rna291;Dbxref=GeneID:100168167,Genbank:XP_008186915.1,APHIDBASE:ACYPI008893;Name=XP_008186915.1;gbkey=CDS;gene=LOC100168167;product=mucin-2 isoform X2;protein_id=XP_008186915.1
+GL349622	Gnomon	CDS	1895584	1896107	.	+	2	ID=cds270;Parent=rna291;Dbxref=GeneID:100168167,Genbank:XP_008186915.1,APHIDBASE:ACYPI008893;Name=XP_008186915.1;gbkey=CDS;gene=LOC100168167;product=mucin-2 isoform X2;protein_id=XP_008186915.1
+GL349622	Gnomon	CDS	1894592	1894648	.	+	0	ID=cds271;Parent=rna292;Dbxref=GeneID:100168167,Genbank:XP_008186947.1,APHIDBASE:ACYPI008893;Name=XP_008186947.1;gbkey=CDS;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5 isoform X3;protein_id=XP_008186947.1
+GL349622	Gnomon	CDS	1895079	1895250	.	+	0	ID=cds271;Parent=rna292;Dbxref=GeneID:100168167,Genbank:XP_008186947.1,APHIDBASE:ACYPI008893;Name=XP_008186947.1;gbkey=CDS;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5 isoform X3;protein_id=XP_008186947.1
+GL349622	Gnomon	CDS	1895584	1896107	.	+	2	ID=cds271;Parent=rna292;Dbxref=GeneID:100168167,Genbank:XP_008186947.1,APHIDBASE:ACYPI008893;Name=XP_008186947.1;gbkey=CDS;gene=LOC100168167;product=leucine-rich repeat extensin-like protein 5 isoform X3;protein_id=XP_008186947.1
+GL349622	Gnomon	gene	1907096	1909396	.	-	.	ID=gene199;Dbxref=APHIDBASE:ACYPI007026,GeneID:100166127;Name=LOC100166127;gbkey=Gene;gene=LOC100166127;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1907096	1909396	.	-	.	ID=rna293;Parent=gene199;Dbxref=GeneID:100166127,Genbank:XM_001942528.3,APHIDBASE:ACYPI007026;Name=XM_001942528.3;gbkey=mRNA;gene=LOC100166127;model_evidence=Supporting evidence includes similarity to: 6 ESTs%2C 1 Protein%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 15 samples with support for all annotated introns;product=mucin-5AC-like;transcript_id=XM_001942528.3
+GL349622	Gnomon	exon	1909305	1909396	.	-	.	ID=id2519;Parent=rna293;Dbxref=GeneID:100166127,Genbank:XM_001942528.3,APHIDBASE:ACYPI007026;gbkey=mRNA;gene=LOC100166127;product=mucin-5AC-like;transcript_id=XM_001942528.3
+GL349622	Gnomon	exon	1907096	1909224	.	-	.	ID=id2520;Parent=rna293;Dbxref=GeneID:100166127,Genbank:XM_001942528.3,APHIDBASE:ACYPI007026;gbkey=mRNA;gene=LOC100166127;product=mucin-5AC-like;transcript_id=XM_001942528.3
+GL349622	Gnomon	CDS	1909305	1909355	.	-	0	ID=cds272;Parent=rna293;Dbxref=GeneID:100166127,Genbank:XP_001942563.1,APHIDBASE:ACYPI007026;Name=XP_001942563.1;gbkey=CDS;gene=LOC100166127;product=mucin-5AC-like;protein_id=XP_001942563.1
+GL349622	Gnomon	CDS	1907164	1909224	.	-	0	ID=cds272;Parent=rna293;Dbxref=GeneID:100166127,Genbank:XP_001942563.1,APHIDBASE:ACYPI007026;Name=XP_001942563.1;gbkey=CDS;gene=LOC100166127;product=mucin-5AC-like;protein_id=XP_001942563.1
+GL349622	Gnomon	gene	1945604	1946416	.	+	.	ID=gene200;Dbxref=GeneID:100575579;Name=LOC100575579;gbkey=Gene;gene=LOC100575579;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1945604	1946416	.	+	.	ID=rna294;Parent=gene200;Dbxref=GeneID:100575579,Genbank:XM_008191533.1;Name=XM_008191533.1;gbkey=mRNA;gene=LOC100575579;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC100575579;transcript_id=XM_008191533.1
+GL349622	Gnomon	exon	1945604	1946416	.	+	.	ID=id2521;Parent=rna294;Dbxref=GeneID:100575579,Genbank:XM_008191533.1;gbkey=mRNA;gene=LOC100575579;product=uncharacterized LOC100575579;transcript_id=XM_008191533.1
+GL349622	Gnomon	CDS	1945604	1946416	.	+	0	ID=cds273;Parent=rna294;Dbxref=GeneID:100575579,Genbank:XP_008189755.1;Name=XP_008189755.1;gbkey=CDS;gene=LOC100575579;product=uncharacterized protein LOC100575579;protein_id=XP_008189755.1
+GL349622	Gnomon	gene	1951517	1951968	.	-	.	ID=gene201;Dbxref=GeneID:103311811;Name=LOC103311811;gbkey=Gene;gene=LOC103311811;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1951517	1951968	.	-	.	ID=rna295;Parent=gene201;Dbxref=GeneID:103311811,Genbank:XM_008191541.1;Name=XM_008191541.1;gbkey=mRNA;gene=LOC103311811;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103311811;transcript_id=XM_008191541.1
+GL349622	Gnomon	exon	1951841	1951968	.	-	.	ID=id2522;Parent=rna295;Dbxref=GeneID:103311811,Genbank:XM_008191541.1;gbkey=mRNA;gene=LOC103311811;product=uncharacterized LOC103311811;transcript_id=XM_008191541.1
+GL349622	Gnomon	exon	1951517	1951751	.	-	.	ID=id2523;Parent=rna295;Dbxref=GeneID:103311811,Genbank:XM_008191541.1;gbkey=mRNA;gene=LOC103311811;product=uncharacterized LOC103311811;transcript_id=XM_008191541.1
+GL349622	Gnomon	CDS	1951841	1951968	.	-	0	ID=cds274;Parent=rna295;Dbxref=GeneID:103311811,Genbank:XP_008189763.1;Name=XP_008189763.1;gbkey=CDS;gene=LOC103311811;product=uncharacterized protein LOC103311811;protein_id=XP_008189763.1
+GL349622	Gnomon	CDS	1951517	1951751	.	-	1	ID=cds274;Parent=rna295;Dbxref=GeneID:103311811,Genbank:XP_008189763.1;Name=XP_008189763.1;gbkey=CDS;gene=LOC103311811;product=uncharacterized protein LOC103311811;protein_id=XP_008189763.1
+GL349622	Gnomon	gene	1980226	1981442	.	-	.	ID=gene202;Dbxref=GeneID:103311820;Name=LOC103311820;gbkey=Gene;gene=LOC103311820;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1980226	1981442	.	-	.	ID=rna296;Parent=gene202;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;Name=XM_008191556.1;gbkey=mRNA;gene=LOC103311820;model_evidence=Supporting evidence includes similarity to: 1 Protein;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	exon	1981283	1981442	.	-	.	ID=id2524;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;gbkey=mRNA;gene=LOC103311820;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	exon	1980902	1981089	.	-	.	ID=id2525;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;gbkey=mRNA;gene=LOC103311820;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	exon	1980736	1980834	.	-	.	ID=id2526;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;gbkey=mRNA;gene=LOC103311820;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	exon	1980559	1980657	.	-	.	ID=id2527;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;gbkey=mRNA;gene=LOC103311820;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	exon	1980398	1980481	.	-	.	ID=id2528;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;gbkey=mRNA;gene=LOC103311820;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	exon	1980226	1980306	.	-	.	ID=id2529;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XM_008191556.1;gbkey=mRNA;gene=LOC103311820;product=uncharacterized LOC103311820;transcript_id=XM_008191556.1
+GL349622	Gnomon	CDS	1981283	1981442	.	-	0	ID=cds275;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XP_008189778.1;Name=XP_008189778.1;gbkey=CDS;gene=LOC103311820;product=uncharacterized protein LOC103311820;protein_id=XP_008189778.1
+GL349622	Gnomon	CDS	1980902	1981089	.	-	2	ID=cds275;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XP_008189778.1;Name=XP_008189778.1;gbkey=CDS;gene=LOC103311820;product=uncharacterized protein LOC103311820;protein_id=XP_008189778.1
+GL349622	Gnomon	CDS	1980736	1980834	.	-	0	ID=cds275;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XP_008189778.1;Name=XP_008189778.1;gbkey=CDS;gene=LOC103311820;product=uncharacterized protein LOC103311820;protein_id=XP_008189778.1
+GL349622	Gnomon	CDS	1980559	1980657	.	-	0	ID=cds275;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XP_008189778.1;Name=XP_008189778.1;gbkey=CDS;gene=LOC103311820;product=uncharacterized protein LOC103311820;protein_id=XP_008189778.1
+GL349622	Gnomon	CDS	1980398	1980481	.	-	0	ID=cds275;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XP_008189778.1;Name=XP_008189778.1;gbkey=CDS;gene=LOC103311820;product=uncharacterized protein LOC103311820;protein_id=XP_008189778.1
+GL349622	Gnomon	CDS	1980226	1980306	.	-	0	ID=cds275;Parent=rna296;Dbxref=GeneID:103311820,Genbank:XP_008189778.1;Name=XP_008189778.1;gbkey=CDS;gene=LOC103311820;product=uncharacterized protein LOC103311820;protein_id=XP_008189778.1
+GL349622	Gnomon	gene	1986731	1990814	.	+	.	ID=gene203;Dbxref=GeneID:107884489;Name=LOC107884489;gbkey=Gene;gene=LOC107884489;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	1986731	1990814	.	+	.	ID=rna297;Parent=gene203;Dbxref=GeneID:107884489,Genbank:XM_016806708.1;Name=XM_016806708.1;gbkey=mRNA;gene=LOC107884489;model_evidence=Supporting evidence includes similarity to: 2 Proteins;product=uncharacterized LOC107884489;transcript_id=XM_016806708.1
+GL349622	Gnomon	exon	1986731	1987050	.	+	.	ID=id2530;Parent=rna297;Dbxref=GeneID:107884489,Genbank:XM_016806708.1;gbkey=mRNA;gene=LOC107884489;product=uncharacterized LOC107884489;transcript_id=XM_016806708.1
+GL349622	Gnomon	exon	1989929	1990467	.	+	.	ID=id2531;Parent=rna297;Dbxref=GeneID:107884489,Genbank:XM_016806708.1;gbkey=mRNA;gene=LOC107884489;product=uncharacterized LOC107884489;transcript_id=XM_016806708.1
+GL349622	Gnomon	exon	1990576	1990814	.	+	.	ID=id2532;Parent=rna297;Dbxref=GeneID:107884489,Genbank:XM_016806708.1;gbkey=mRNA;gene=LOC107884489;product=uncharacterized LOC107884489;transcript_id=XM_016806708.1
+GL349622	Gnomon	CDS	1986731	1987050	.	+	0	ID=cds276;Parent=rna297;Dbxref=GeneID:107884489,Genbank:XP_016662197.1;Name=XP_016662197.1;gbkey=CDS;gene=LOC107884489;product=uncharacterized protein LOC107884489;protein_id=XP_016662197.1
+GL349622	Gnomon	CDS	1989929	1990467	.	+	1	ID=cds276;Parent=rna297;Dbxref=GeneID:107884489,Genbank:XP_016662197.1;Name=XP_016662197.1;gbkey=CDS;gene=LOC107884489;product=uncharacterized protein LOC107884489;protein_id=XP_016662197.1
+GL349622	Gnomon	CDS	1990576	1990814	.	+	2	ID=cds276;Parent=rna297;Dbxref=GeneID:107884489,Genbank:XP_016662197.1;Name=XP_016662197.1;gbkey=CDS;gene=LOC107884489;product=uncharacterized protein LOC107884489;protein_id=XP_016662197.1
+GL349622	Gnomon	gene	2014149	2019558	.	-	.	ID=gene204;Dbxref=GeneID:107885867;Name=LOC107885867;gbkey=Gene;gene=LOC107885867;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2014149	2019558	.	-	.	ID=rna298;Parent=gene204;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;Name=XM_016809556.1;gbkey=mRNA;gene=LOC107885867;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2019265	2019558	.	-	.	ID=id2533;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2019121	2019179	.	-	.	ID=id2534;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2017791	2018313	.	-	.	ID=id2535;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2017249	2017685	.	-	.	ID=id2536;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2016995	2017126	.	-	.	ID=id2537;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2016714	2016925	.	-	.	ID=id2538;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2016453	2016636	.	-	.	ID=id2539;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2015942	2016274	.	-	.	ID=id2540;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2015519	2015859	.	-	.	ID=id2541;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2015304	2015439	.	-	.	ID=id2542;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	exon	2014149	2014246	.	-	.	ID=id2543;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XM_016809556.1;gbkey=mRNA;gene=LOC107885867;product=uncharacterized LOC107885867;transcript_id=XM_016809556.1
+GL349622	Gnomon	CDS	2019265	2019423	.	-	0	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2019121	2019179	.	-	0	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2017791	2018313	.	-	1	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2017249	2017685	.	-	0	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2016995	2017126	.	-	1	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2016714	2016925	.	-	1	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2016453	2016636	.	-	2	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2015942	2016274	.	-	1	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2015519	2015859	.	-	1	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2015304	2015439	.	-	2	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	CDS	2014219	2014246	.	-	1	ID=cds277;Parent=rna298;Dbxref=GeneID:107885867,Genbank:XP_016665045.1;Name=XP_016665045.1;gbkey=CDS;gene=LOC107885867;product=uncharacterized protein LOC107885867;protein_id=XP_016665045.1
+GL349622	Gnomon	gene	2046631	2047783	.	-	.	ID=gene205;Dbxref=GeneID:103311827;Name=LOC103311827;gbkey=Gene;gene=LOC103311827;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2046631	2047783	.	-	.	ID=rna299;Parent=gene205;Dbxref=GeneID:103311827,Genbank:XM_008191569.1;Name=XM_008191569.1;gbkey=mRNA;gene=LOC103311827;model_evidence=Supporting evidence includes similarity to: 3 Proteins;product=zinc finger MYM-type protein 5-like;transcript_id=XM_008191569.1
+GL349622	Gnomon	exon	2047414	2047783	.	-	.	ID=id2544;Parent=rna299;Dbxref=GeneID:103311827,Genbank:XM_008191569.1;gbkey=mRNA;gene=LOC103311827;product=zinc finger MYM-type protein 5-like;transcript_id=XM_008191569.1
+GL349622	Gnomon	exon	2046631	2047319	.	-	.	ID=id2545;Parent=rna299;Dbxref=GeneID:103311827,Genbank:XM_008191569.1;gbkey=mRNA;gene=LOC103311827;product=zinc finger MYM-type protein 5-like;transcript_id=XM_008191569.1
+GL349622	Gnomon	CDS	2047414	2047783	.	-	0	ID=cds278;Parent=rna299;Dbxref=GeneID:103311827,Genbank:XP_008189791.1;Name=XP_008189791.1;gbkey=CDS;gene=LOC103311827;product=zinc finger MYM-type protein 5-like;protein_id=XP_008189791.1
+GL349622	Gnomon	CDS	2046631	2047319	.	-	2	ID=cds278;Parent=rna299;Dbxref=GeneID:103311827,Genbank:XP_008189791.1;Name=XP_008189791.1;gbkey=CDS;gene=LOC103311827;product=zinc finger MYM-type protein 5-like;protein_id=XP_008189791.1
+GL349622	Gnomon	gene	2058012	2058824	.	-	.	ID=gene206;Dbxref=GeneID:103311829;Name=LOC103311829;gbkey=Gene;gene=LOC103311829;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2058012	2058824	.	-	.	ID=rna300;Parent=gene206;Dbxref=GeneID:103311829,Genbank:XM_008191577.1;Name=XM_008191577.1;gbkey=mRNA;gene=LOC103311829;model_evidence=Supporting evidence includes similarity to: 3 Proteins;product=uncharacterized LOC103311829;transcript_id=XM_008191577.1
+GL349622	Gnomon	exon	2058012	2058824	.	-	.	ID=id2546;Parent=rna300;Dbxref=GeneID:103311829,Genbank:XM_008191577.1;gbkey=mRNA;gene=LOC103311829;product=uncharacterized LOC103311829;transcript_id=XM_008191577.1
+GL349622	Gnomon	CDS	2058012	2058824	.	-	0	ID=cds279;Parent=rna300;Dbxref=GeneID:103311829,Genbank:XP_008189799.1;Name=XP_008189799.1;gbkey=CDS;gene=LOC103311829;product=uncharacterized protein LOC103311829;protein_id=XP_008189799.1
+GL349622	Gnomon	gene	2061472	2082555	.	-	.	ID=gene207;Dbxref=APHIDBASE:ACYPI002213,GeneID:100160948;Name=LOC100160948;gbkey=Gene;gene=LOC100160948;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2061472	2076567	.	-	.	ID=rna301;Parent=gene207;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;Name=XM_016809562.1;gbkey=mRNA;gene=LOC100160948;model_evidence=Supporting evidence includes similarity to: 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2076509	2076567	.	-	.	ID=id2547;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2076248	2076304	.	-	.	ID=id2548;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2066639	2066698	.	-	.	ID=id2549;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2066413	2066506	.	-	.	ID=id2550;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2066113	2066333	.	-	.	ID=id2551;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2065626	2065868	.	-	.	ID=id2552;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2063808	2063964	.	-	.	ID=id2553;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2063599	2063718	.	-	.	ID=id2554;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2063237	2063531	.	-	.	ID=id2555;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2062992	2063165	.	-	.	ID=id2556;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2061939	2062255	.	-	.	ID=id2557;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	exon	2061472	2061859	.	-	.	ID=id2558;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XM_016809562.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X2;transcript_id=XM_016809562.1
+GL349622	Gnomon	mRNA	2061473	2082555	.	-	.	ID=rna302;Parent=gene207;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;Name=XM_016809567.1;gbkey=mRNA;gene=LOC100160948;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 12 samples with support for all annotated introns;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2082110	2082555	.	-	.	ID=id2559;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2076248	2076304	.	-	.	ID=id2560;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2066639	2066698	.	-	.	ID=id2561;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2066413	2066506	.	-	.	ID=id2562;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2066113	2066333	.	-	.	ID=id2563;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2065752	2065868	.	-	.	ID=id2564;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2063808	2063964	.	-	.	ID=id2565;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2063599	2063718	.	-	.	ID=id2566;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2063237	2063531	.	-	.	ID=id2567;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2062992	2063165	.	-	.	ID=id2568;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2061939	2062255	.	-	.	ID=id2569;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	exon	2061473	2061859	.	-	.	ID=id2570;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XM_016809567.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X3;transcript_id=XM_016809567.1
+GL349622	Gnomon	mRNA	2061475	2082554	.	-	.	ID=rna303;Parent=gene207;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;Name=XM_016809560.1;gbkey=mRNA;gene=LOC100160948;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 11 samples with support for all annotated introns;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2082110	2082554	.	-	.	ID=id2571;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2076248	2076304	.	-	.	ID=id2572;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2066639	2066698	.	-	.	ID=id2573;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2066413	2066506	.	-	.	ID=id2574;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2066113	2066333	.	-	.	ID=id2575;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2065626	2065868	.	-	.	ID=id2576;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2063808	2063964	.	-	.	ID=id2577;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2063599	2063718	.	-	.	ID=id2578;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2063237	2063531	.	-	.	ID=id2579;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2062992	2063165	.	-	.	ID=id2580;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2061939	2062255	.	-	.	ID=id2581;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	exon	2061475	2061859	.	-	.	ID=id2582;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XM_016809560.1,APHIDBASE:ACYPI002213;gbkey=mRNA;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS%2C transcript variant X1;transcript_id=XM_016809560.1
+GL349622	Gnomon	CDS	2082110	2082232	.	-	0	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2076248	2076304	.	-	0	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2066639	2066698	.	-	0	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2066413	2066506	.	-	0	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2066113	2066333	.	-	2	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2065752	2065868	.	-	0	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2063808	2063964	.	-	0	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2063599	2063718	.	-	2	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2063237	2063531	.	-	2	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2062992	2063165	.	-	1	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2061939	2062255	.	-	1	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2061528	2061859	.	-	2	ID=cds280;Parent=rna302;Dbxref=GeneID:100160948,Genbank:XP_016665056.1,APHIDBASE:ACYPI002213;Name=XP_016665056.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X3;protein_id=XP_016665056.1
+GL349622	Gnomon	CDS	2082110	2082232	.	-	0	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2076248	2076304	.	-	0	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2066639	2066698	.	-	0	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2066413	2066506	.	-	0	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2066113	2066333	.	-	2	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2065626	2065868	.	-	0	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2063808	2063964	.	-	0	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2063599	2063718	.	-	2	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2063237	2063531	.	-	2	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2062992	2063165	.	-	1	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2061939	2062255	.	-	1	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2061528	2061859	.	-	2	ID=cds281;Parent=rna303;Dbxref=GeneID:100160948,Genbank:XP_016665049.1,APHIDBASE:ACYPI002213;Name=XP_016665049.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X1;protein_id=XP_016665049.1
+GL349622	Gnomon	CDS	2076509	2076529	.	-	0	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2076248	2076304	.	-	0	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2066639	2066698	.	-	0	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2066413	2066506	.	-	0	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2066113	2066333	.	-	2	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2065626	2065868	.	-	0	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2063808	2063964	.	-	0	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2063599	2063718	.	-	2	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2063237	2063531	.	-	2	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2062992	2063165	.	-	1	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2061939	2062255	.	-	1	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	CDS	2061528	2061859	.	-	2	ID=cds282;Parent=rna301;Dbxref=GeneID:100160948,Genbank:XP_016665051.1,APHIDBASE:ACYPI002213;Name=XP_016665051.1;gbkey=CDS;gene=LOC100160948;product=proto-oncogene tyrosine-protein kinase ROS isoform X2;protein_id=XP_016665051.1
+GL349622	Gnomon	gene	2082995	2088052	.	+	.	ID=gene208;Dbxref=APHIDBASE:ACYPI001612,GeneID:100160307;Name=LOC100160307;gbkey=Gene;gene=LOC100160307;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2082995	2088052	.	+	.	ID=rna304;Parent=gene208;Dbxref=GeneID:100160307,Genbank:XM_003240058.3,APHIDBASE:ACYPI001612;Name=XM_003240058.3;gbkey=mRNA;gene=LOC100160307;model_evidence=Supporting evidence includes similarity to: 7 ESTs%2C 7 Proteins%2C and 97%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 22 samples with support for all annotated introns;product=alpha-1%2C3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase;transcript_id=XM_003240058.3
+GL349622	Gnomon	exon	2082995	2083399	.	+	.	ID=id2583;Parent=rna304;Dbxref=GeneID:100160307,Genbank:XM_003240058.3,APHIDBASE:ACYPI001612;gbkey=mRNA;gene=LOC100160307;product=alpha-1%2C3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase;transcript_id=XM_003240058.3
+GL349622	Gnomon	exon	2084663	2084776	.	+	.	ID=id2584;Parent=rna304;Dbxref=GeneID:100160307,Genbank:XM_003240058.3,APHIDBASE:ACYPI001612;gbkey=mRNA;gene=LOC100160307;product=alpha-1%2C3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase;transcript_id=XM_003240058.3
+GL349622	Gnomon	exon	2085344	2088052	.	+	.	ID=id2585;Parent=rna304;Dbxref=GeneID:100160307,Genbank:XM_003240058.3,APHIDBASE:ACYPI001612;gbkey=mRNA;gene=LOC100160307;product=alpha-1%2C3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase;transcript_id=XM_003240058.3
+GL349622	Gnomon	CDS	2085498	2086778	.	+	0	ID=cds283;Parent=rna304;Dbxref=GeneID:100160307,Genbank:XP_003240106.1,APHIDBASE:ACYPI001612;Name=XP_003240106.1;gbkey=CDS;gene=LOC100160307;product=alpha-1%2C3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase;protein_id=XP_003240106.1
+GL349622	Gnomon	gene	2093012	2100933	.	+	.	ID=gene209;Dbxref=GeneID:100570112;Name=LOC100570112;gbkey=Gene;gene=LOC100570112;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2093012	2100933	.	+	.	ID=rna305;Parent=gene209;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;Name=XM_016806904.1;gbkey=mRNA;gene=LOC100570112;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 84%25 coverage of the annotated genomic feature by RNAseq alignments;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	exon	2093012	2093309	.	+	.	ID=id2586;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;gbkey=mRNA;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	exon	2094088	2094129	.	+	.	ID=id2587;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;gbkey=mRNA;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	exon	2095153	2095274	.	+	.	ID=id2588;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;gbkey=mRNA;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	exon	2095349	2095990	.	+	.	ID=id2589;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;gbkey=mRNA;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	exon	2096091	2096245	.	+	.	ID=id2590;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;gbkey=mRNA;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	exon	2100515	2100933	.	+	.	ID=id2591;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XM_016806904.1;gbkey=mRNA;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;transcript_id=XM_016806904.1
+GL349622	Gnomon	CDS	2093012	2093309	.	+	0	ID=cds284;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XP_016662393.1;Name=XP_016662393.1;gbkey=CDS;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;protein_id=XP_016662393.1
+GL349622	Gnomon	CDS	2094088	2094129	.	+	2	ID=cds284;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XP_016662393.1;Name=XP_016662393.1;gbkey=CDS;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;protein_id=XP_016662393.1
+GL349622	Gnomon	CDS	2095153	2095274	.	+	2	ID=cds284;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XP_016662393.1;Name=XP_016662393.1;gbkey=CDS;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;protein_id=XP_016662393.1
+GL349622	Gnomon	CDS	2095349	2095990	.	+	0	ID=cds284;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XP_016662393.1;Name=XP_016662393.1;gbkey=CDS;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;protein_id=XP_016662393.1
+GL349622	Gnomon	CDS	2096091	2096245	.	+	0	ID=cds284;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XP_016662393.1;Name=XP_016662393.1;gbkey=CDS;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;protein_id=XP_016662393.1
+GL349622	Gnomon	CDS	2100515	2100779	.	+	1	ID=cds284;Parent=rna305;Dbxref=GeneID:100570112,Genbank:XP_016662393.1;Name=XP_016662393.1;gbkey=CDS;gene=LOC100570112;product=SET and MYND domain-containing protein 4-like;protein_id=XP_016662393.1
+GL349622	Gnomon	gene	2111756	2113518	.	-	.	ID=gene210;Dbxref=APHIDBASE:ACYPI001262,GeneID:100159923;Name=LOC100159923;gbkey=Gene;gene=LOC100159923;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2111756	2113518	.	-	.	ID=rna306;Parent=gene210;Dbxref=GeneID:100159923,Genbank:XM_001949658.4,APHIDBASE:ACYPI001262;Name=XM_001949658.4;gbkey=mRNA;gene=LOC100159923;model_evidence=Supporting evidence includes similarity to: 1 Protein%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=cuticle protein 1;transcript_id=XM_001949658.4
+GL349622	Gnomon	exon	2113259	2113518	.	-	.	ID=id2592;Parent=rna306;Dbxref=GeneID:100159923,Genbank:XM_001949658.4,APHIDBASE:ACYPI001262;gbkey=mRNA;gene=LOC100159923;product=cuticle protein 1;transcript_id=XM_001949658.4
+GL349622	Gnomon	exon	2111756	2112275	.	-	.	ID=id2593;Parent=rna306;Dbxref=GeneID:100159923,Genbank:XM_001949658.4,APHIDBASE:ACYPI001262;gbkey=mRNA;gene=LOC100159923;product=cuticle protein 1;transcript_id=XM_001949658.4
+GL349622	Gnomon	CDS	2113259	2113273	.	-	0	ID=cds285;Parent=rna306;Dbxref=GeneID:100159923,Genbank:XP_001949693.1,APHIDBASE:ACYPI001262;Name=XP_001949693.1;gbkey=CDS;gene=LOC100159923;product=cuticle protein 1;protein_id=XP_001949693.1
+GL349622	Gnomon	CDS	2111850	2112275	.	-	0	ID=cds285;Parent=rna306;Dbxref=GeneID:100159923,Genbank:XP_001949693.1,APHIDBASE:ACYPI001262;Name=XP_001949693.1;gbkey=CDS;gene=LOC100159923;product=cuticle protein 1;protein_id=XP_001949693.1
+GL349622	Gnomon	gene	2116078	2123137	.	+	.	ID=gene211;Dbxref=APHIDBASE:ACYPI009473,GeneID:100168801;Name=LOC100168801;gbkey=Gene;gene=LOC100168801;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2116078	2123137	.	+	.	ID=rna307;Parent=gene211;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;Name=XM_001949695.4;gbkey=mRNA;gene=LOC100168801;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 5 ESTs%2C 5 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 29 samples with support for all annotated introns;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2116078	2116479	.	+	.	ID=id2594;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2116547	2116666	.	+	.	ID=id2595;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2116732	2116852	.	+	.	ID=id2596;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2116982	2117147	.	+	.	ID=id2597;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2117210	2117331	.	+	.	ID=id2598;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2117390	2117504	.	+	.	ID=id2599;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2117652	2117890	.	+	.	ID=id2600;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2120203	2120911	.	+	.	ID=id2601;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2121181	2121236	.	+	.	ID=id2602;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	exon	2122284	2123137	.	+	.	ID=id2603;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XM_001949695.4,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X1;transcript_id=XM_001949695.4
+GL349622	Gnomon	mRNA	2116078	2123137	.	+	.	ID=rna308;Parent=gene211;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;Name=XM_008189029.2;gbkey=mRNA;gene=LOC100168801;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C 5 Proteins%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 19 samples with support for all annotated introns;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2116078	2116223	.	+	.	ID=id2604;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2116287	2116479	.	+	.	ID=id2605;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2116547	2116666	.	+	.	ID=id2606;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2116732	2116852	.	+	.	ID=id2607;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2116982	2117147	.	+	.	ID=id2608;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2117210	2117331	.	+	.	ID=id2609;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2117390	2117504	.	+	.	ID=id2610;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2117652	2117890	.	+	.	ID=id2611;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2120203	2120911	.	+	.	ID=id2612;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2121181	2121236	.	+	.	ID=id2613;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	exon	2122284	2123137	.	+	.	ID=id2614;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XM_008189029.2,APHIDBASE:ACYPI009473;gbkey=mRNA;gene=LOC100168801;product=src substrate protein p85%2C transcript variant X2;transcript_id=XM_008189029.2
+GL349622	Gnomon	CDS	2116319	2116479	.	+	0	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2116547	2116666	.	+	1	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2116732	2116852	.	+	1	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2116982	2117147	.	+	0	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2117210	2117331	.	+	2	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2117390	2117504	.	+	0	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2117652	2117890	.	+	2	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2120203	2120911	.	+	0	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2121181	2121236	.	+	2	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2122284	2122364	.	+	0	ID=cds286;Parent=rna307;Dbxref=GeneID:100168801,Genbank:XP_001949730.1,APHIDBASE:ACYPI009473;Name=XP_001949730.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_001949730.1
+GL349622	Gnomon	CDS	2116319	2116479	.	+	0	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2116547	2116666	.	+	1	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2116732	2116852	.	+	1	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2116982	2117147	.	+	0	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2117210	2117331	.	+	2	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2117390	2117504	.	+	0	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2117652	2117890	.	+	2	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2120203	2120911	.	+	0	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2121181	2121236	.	+	2	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	Gnomon	CDS	2122284	2122364	.	+	0	ID=cds287;Parent=rna308;Dbxref=GeneID:100168801,Genbank:XP_008187251.1,APHIDBASE:ACYPI009473;Name=XP_008187251.1;gbkey=CDS;gene=LOC100168801;product=src substrate protein p85;protein_id=XP_008187251.1
+GL349622	BestRefSeq	gene	2123429	2124076	.	+	.	ID=gene212;Dbxref=APHIDBASE:ACYPI006967,GeneID:100166063;Name=LOC100166063;description=uncharacterized protein LOC100166063;gbkey=Gene;gene=LOC100166063;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	2123429	2124076	.	+	.	ID=rna309;Parent=gene212;Dbxref=GeneID:100166063,Genbank:NM_001246122.1,APHIDBASE:ACYPI006967;Name=NM_001246122.1;Note=The RefSeq transcript has 3 non-frameshifting indels compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100166063;product=uncharacterized protein LOC100166063;transcript_id=NM_001246122.1
+GL349622	BestRefSeq	exon	2123429	2123504	.	+	.	ID=id2615;Parent=rna309;Dbxref=GeneID:100166063,Genbank:NM_001246122.1,APHIDBASE:ACYPI006967;Note=The RefSeq transcript has 3 non-frameshifting indels compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100166063;product=uncharacterized protein LOC100166063;transcript_id=NM_001246122.1
+GL349622	BestRefSeq	exon	2123585	2123694	.	+	.	ID=id2616;Parent=rna309;Dbxref=GeneID:100166063,Genbank:NM_001246122.1,APHIDBASE:ACYPI006967;Note=The RefSeq transcript has 3 non-frameshifting indels compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100166063;product=uncharacterized protein LOC100166063;transcript_id=NM_001246122.1
+GL349622	BestRefSeq	exon	2123766	2124076	.	+	.	ID=id2617;Parent=rna309;Dbxref=GeneID:100166063,Genbank:NM_001246122.1,APHIDBASE:ACYPI006967;Note=The RefSeq transcript has 3 non-frameshifting indels compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100166063;product=uncharacterized protein LOC100166063;transcript_id=NM_001246122.1
+GL349622	BestRefSeq	CDS	2123484	2123504	.	+	0	ID=cds288;Parent=rna309;Dbxref=GeneID:100166063,Genbank:NP_001233051.1,APHIDBASE:ACYPI006967;Name=NP_001233051.1;gbkey=CDS;gene=LOC100166063;product=uncharacterized protein LOC100166063 precursor;protein_id=NP_001233051.1
+GL349622	BestRefSeq	CDS	2123585	2123694	.	+	0	ID=cds288;Parent=rna309;Dbxref=GeneID:100166063,Genbank:NP_001233051.1,APHIDBASE:ACYPI006967;Name=NP_001233051.1;gbkey=CDS;gene=LOC100166063;product=uncharacterized protein LOC100166063 precursor;protein_id=NP_001233051.1
+GL349622	BestRefSeq	CDS	2123766	2123940	.	+	1	ID=cds288;Parent=rna309;Dbxref=GeneID:100166063,Genbank:NP_001233051.1,APHIDBASE:ACYPI006967;Name=NP_001233051.1;gbkey=CDS;gene=LOC100166063;product=uncharacterized protein LOC100166063 precursor;protein_id=NP_001233051.1
+GL349622	Gnomon	gene	2123959	2129764	.	-	.	ID=gene213;Dbxref=APHIDBASE:ACYPI007577,GeneID:100166726;Name=LOC100166726;gbkey=Gene;gene=LOC100166726;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2123959	2129764	.	-	.	ID=rna310;Parent=gene213;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;Name=XM_001949720.4;gbkey=mRNA;gene=LOC100166726;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 7 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 20 samples with support for all annotated introns;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2129279	2129764	.	-	.	ID=id2618;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2129092	2129214	.	-	.	ID=id2619;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2128873	2129032	.	-	.	ID=id2620;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2128621	2128772	.	-	.	ID=id2621;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2128510	2128559	.	-	.	ID=id2622;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2128133	2128449	.	-	.	ID=id2623;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2127902	2128071	.	-	.	ID=id2624;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2127595	2127831	.	-	.	ID=id2625;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2126907	2127070	.	-	.	ID=id2626;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2126723	2126846	.	-	.	ID=id2627;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2126495	2126655	.	-	.	ID=id2628;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2126288	2126422	.	-	.	ID=id2629;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2125888	2126214	.	-	.	ID=id2630;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2125678	2125820	.	-	.	ID=id2631;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2125419	2125612	.	-	.	ID=id2632;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	exon	2123959	2124244	.	-	.	ID=id2633;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XM_001949720.4,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X1;transcript_id=XM_001949720.4
+GL349622	Gnomon	mRNA	2123959	2128965	.	-	.	ID=rna311;Parent=gene213;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;Name=XM_016809577.1;gbkey=mRNA;gene=LOC100166726;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 2 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 6 samples with support for all annotated introns;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2128873	2128965	.	-	.	ID=id2634;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2128621	2128796	.	-	.	ID=id2635;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2128510	2128559	.	-	.	ID=id2636;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2128133	2128449	.	-	.	ID=id2637;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2127902	2128071	.	-	.	ID=id2638;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2127595	2127831	.	-	.	ID=id2639;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2126907	2127070	.	-	.	ID=id2640;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2126723	2126846	.	-	.	ID=id2641;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2126495	2126655	.	-	.	ID=id2642;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2126288	2126422	.	-	.	ID=id2643;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2125888	2126214	.	-	.	ID=id2644;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2125678	2125820	.	-	.	ID=id2645;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2125419	2125612	.	-	.	ID=id2646;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	exon	2123959	2124244	.	-	.	ID=id2647;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XM_016809577.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X2;transcript_id=XM_016809577.1
+GL349622	Gnomon	CDS	2129279	2129440	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2129092	2129214	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2128873	2129032	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2128621	2128772	.	-	2	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2128510	2128559	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2128133	2128449	.	-	1	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2127902	2128071	.	-	2	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2127595	2127831	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2126907	2127070	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2126723	2126846	.	-	1	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2126495	2126655	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2126288	2126422	.	-	1	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2125888	2126214	.	-	1	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2125678	2125820	.	-	1	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2125419	2125612	.	-	2	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2124032	2124244	.	-	0	ID=cds289;Parent=rna310;Dbxref=GeneID:100166726,Genbank:XP_001949755.1,APHIDBASE:ACYPI007577;Name=XP_001949755.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X1;protein_id=XP_001949755.1
+GL349622	Gnomon	CDS	2128621	2128791	.	-	0	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2128510	2128559	.	-	0	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2128133	2128449	.	-	1	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2127902	2128071	.	-	2	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2127595	2127831	.	-	0	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2126907	2127070	.	-	0	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2126723	2126846	.	-	1	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2126495	2126655	.	-	0	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2126288	2126422	.	-	1	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2125888	2126214	.	-	1	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2125678	2125820	.	-	1	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2125419	2125612	.	-	2	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	CDS	2124032	2124244	.	-	0	ID=cds290;Parent=rna311;Dbxref=GeneID:100166726,Genbank:XP_016665066.1,APHIDBASE:ACYPI007577;Name=XP_016665066.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X2;protein_id=XP_016665066.1
+GL349622	Gnomon	mRNA	2125700	2129764	.	-	.	ID=rna312;Parent=gene213;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;Name=XM_016809581.1;gbkey=mRNA;gene=LOC100166726;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C 7 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 16 samples with support for all annotated introns;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2129279	2129764	.	-	.	ID=id2648;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2129092	2129214	.	-	.	ID=id2649;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2128873	2129032	.	-	.	ID=id2650;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2128621	2128772	.	-	.	ID=id2651;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2128510	2128559	.	-	.	ID=id2652;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2128133	2128449	.	-	.	ID=id2653;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2127902	2128071	.	-	.	ID=id2654;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2127595	2127831	.	-	.	ID=id2655;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2126907	2127070	.	-	.	ID=id2656;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2126723	2126846	.	-	.	ID=id2657;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2126495	2126655	.	-	.	ID=id2658;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2126288	2126422	.	-	.	ID=id2659;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2125888	2126214	.	-	.	ID=id2660;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	exon	2125700	2125800	.	-	.	ID=id2661;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XM_016809581.1,APHIDBASE:ACYPI007577;gbkey=mRNA;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial%2C transcript variant X3;transcript_id=XM_016809581.1
+GL349622	Gnomon	CDS	2129279	2129440	.	-	0	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2129092	2129214	.	-	0	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2128873	2129032	.	-	0	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2128621	2128772	.	-	2	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2128510	2128559	.	-	0	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2128133	2128449	.	-	1	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2127902	2128071	.	-	2	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2127595	2127831	.	-	0	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2126907	2127070	.	-	0	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2126723	2126846	.	-	1	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2126495	2126655	.	-	0	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2126288	2126422	.	-	1	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2125888	2126214	.	-	1	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	Gnomon	CDS	2125791	2125800	.	-	1	ID=cds291;Parent=rna312;Dbxref=GeneID:100166726,Genbank:XP_016665070.1,APHIDBASE:ACYPI007577;Name=XP_016665070.1;gbkey=CDS;gene=LOC100166726;product=isoleucine--tRNA ligase%2C mitochondrial isoform X3;protein_id=XP_016665070.1
+GL349622	BestRefSeq%2CGnomon	gene	2129816	2133448	.	+	.	ID=gene214;Dbxref=APHIDBASE:ACYPI005067,GeneID:100164021;Name=LOC100164021;description=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;gbkey=Gene;gene=LOC100164021;gene_biotype=protein_coding
+GL349622	BestRefSeq	mRNA	2129816	2133442	.	+	.	ID=rna313;Parent=gene214;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Name=NM_001293485.1;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	BestRefSeq	exon	2129816	2129987	.	+	.	ID=id2662;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	BestRefSeq	exon	2130056	2130174	.	+	.	ID=id2663;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	BestRefSeq	exon	2131076	2131219	.	+	.	ID=id2664;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	BestRefSeq	exon	2132916	2133055	.	+	.	ID=id2665;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	BestRefSeq	exon	2133124	2133242	.	+	.	ID=id2666;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	BestRefSeq	exon	2133302	2133442	.	+	.	ID=id2667;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NM_001293485.1,APHIDBASE:ACYPI005067;Note=The RefSeq transcript has 11 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like;transcript_id=NM_001293485.1
+GL349622	Gnomon	mRNA	2129821	2133448	.	+	.	ID=rna314;Parent=gene214;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;Name=XM_016805030.1;gbkey=mRNA;gene=LOC100164021;model_evidence=Supporting evidence includes similarity to: 2 mRNAs%2C 3 ESTs%2C 9 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	exon	2129821	2129987	.	+	.	ID=id2668;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	exon	2130056	2130174	.	+	.	ID=id2669;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	exon	2131076	2131219	.	+	.	ID=id2670;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	exon	2132916	2133055	.	+	.	ID=id2671;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	exon	2133124	2133242	.	+	.	ID=id2672;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	exon	2133302	2133448	.	+	.	ID=id2673;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XM_016805030.1,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X2;transcript_id=XM_016805030.1
+GL349622	Gnomon	mRNA	2129851	2133448	.	+	.	ID=rna315;Parent=gene214;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;Name=XM_008189192.2;gbkey=mRNA;gene=LOC100164021;model_evidence=Supporting evidence includes similarity to: 9 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 29 samples with support for all annotated introns;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	exon	2129851	2129987	.	+	.	ID=id2674;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	exon	2130059	2130174	.	+	.	ID=id2675;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	exon	2131076	2131219	.	+	.	ID=id2676;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	exon	2132916	2133055	.	+	.	ID=id2677;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	exon	2133124	2133242	.	+	.	ID=id2678;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	exon	2133302	2133448	.	+	.	ID=id2679;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XM_008189192.2,APHIDBASE:ACYPI005067;gbkey=mRNA;gene=LOC100164021;product=RNA polymerase II subunit A C-terminal domain phosphatase SSU72-like%2C transcript variant X1;transcript_id=XM_008189192.2
+GL349622	Gnomon	CDS	2130095	2130174	.	+	0	ID=cds292;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XP_016660519.1,APHIDBASE:ACYPI005067;Name=XP_016660519.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_016660519.1
+GL349622	Gnomon	CDS	2131076	2131219	.	+	1	ID=cds292;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XP_016660519.1,APHIDBASE:ACYPI005067;Name=XP_016660519.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_016660519.1
+GL349622	Gnomon	CDS	2132916	2133055	.	+	1	ID=cds292;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XP_016660519.1,APHIDBASE:ACYPI005067;Name=XP_016660519.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_016660519.1
+GL349622	Gnomon	CDS	2133124	2133242	.	+	2	ID=cds292;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XP_016660519.1,APHIDBASE:ACYPI005067;Name=XP_016660519.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_016660519.1
+GL349622	Gnomon	CDS	2133302	2133403	.	+	0	ID=cds292;Parent=rna314;Dbxref=GeneID:100164021,Genbank:XP_016660519.1,APHIDBASE:ACYPI005067;Name=XP_016660519.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_016660519.1
+GL349622	Gnomon	CDS	2130095	2130174	.	+	0	ID=cds293;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XP_008187414.1,APHIDBASE:ACYPI005067;Name=XP_008187414.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_008187414.1
+GL349622	Gnomon	CDS	2131076	2131219	.	+	1	ID=cds293;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XP_008187414.1,APHIDBASE:ACYPI005067;Name=XP_008187414.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_008187414.1
+GL349622	Gnomon	CDS	2132916	2133055	.	+	1	ID=cds293;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XP_008187414.1,APHIDBASE:ACYPI005067;Name=XP_008187414.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_008187414.1
+GL349622	Gnomon	CDS	2133124	2133242	.	+	2	ID=cds293;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XP_008187414.1,APHIDBASE:ACYPI005067;Name=XP_008187414.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_008187414.1
+GL349622	Gnomon	CDS	2133302	2133403	.	+	0	ID=cds293;Parent=rna315;Dbxref=GeneID:100164021,Genbank:XP_008187414.1,APHIDBASE:ACYPI005067;Name=XP_008187414.1;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021 isoform X1;protein_id=XP_008187414.1
+GL349622	BestRefSeq	CDS	2130095	2130174	.	+	0	ID=cds294;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NP_001280414.1,APHIDBASE:ACYPI005067;Name=NP_001280414.1;Note=The RefSeq protein has 4 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021;protein_id=NP_001280414.1;transl_except=(pos:2133353..2133355%2Caa:TERM)
+GL349622	BestRefSeq	CDS	2131076	2131219	.	+	1	ID=cds294;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NP_001280414.1,APHIDBASE:ACYPI005067;Name=NP_001280414.1;Note=The RefSeq protein has 4 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021;protein_id=NP_001280414.1;transl_except=(pos:2133353..2133355%2Caa:TERM)
+GL349622	BestRefSeq	CDS	2132916	2133055	.	+	1	ID=cds294;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NP_001280414.1,APHIDBASE:ACYPI005067;Name=NP_001280414.1;Note=The RefSeq protein has 4 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021;protein_id=NP_001280414.1;transl_except=(pos:2133353..2133355%2Caa:TERM)
+GL349622	BestRefSeq	CDS	2133124	2133242	.	+	2	ID=cds294;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NP_001280414.1,APHIDBASE:ACYPI005067;Name=NP_001280414.1;Note=The RefSeq protein has 4 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021;protein_id=NP_001280414.1;transl_except=(pos:2133353..2133355%2Caa:TERM)
+GL349622	BestRefSeq	CDS	2133302	2133355	.	+	0	ID=cds294;Parent=rna313;Dbxref=GeneID:100164021,Genbank:NP_001280414.1,APHIDBASE:ACYPI005067;Name=NP_001280414.1;Note=The RefSeq protein has 4 substitutions compared to this genomic sequence;exception=annotated by transcript or proteomic data;gbkey=CDS;gene=LOC100164021;product=uncharacterized protein LOC100164021;protein_id=NP_001280414.1;transl_except=(pos:2133353..2133355%2Caa:TERM)
+GL349622	Gnomon	gene	2164845	2207255	.	-	.	ID=gene215;Dbxref=APHIDBASE:ACYPI007300,GeneID:100166428;Name=LOC100166428;gbkey=Gene;gene=LOC100166428;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2164845	2207255	.	-	.	ID=rna316;Parent=gene215;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;Name=XM_008189326.2;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2207237	2207255	.	-	.	ID=id2680;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2204947	2204996	.	-	.	ID=id2681;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2203637	2203785	.	-	.	ID=id2682;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2203386	2203563	.	-	.	ID=id2683;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2200854	2200979	.	-	.	ID=id2684;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2194876	2195048	.	-	.	ID=id2685;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2194595	2194817	.	-	.	ID=id2686;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2194206	2194538	.	-	.	ID=id2687;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2193963	2194090	.	-	.	ID=id2688;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2193639	2193876	.	-	.	ID=id2689;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2193445	2193563	.	-	.	ID=id2690;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2191474	2191606	.	-	.	ID=id2691;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2191165	2191398	.	-	.	ID=id2692;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2190887	2191060	.	-	.	ID=id2693;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2186266	2186479	.	-	.	ID=id2694;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2185602	2185759	.	-	.	ID=id2695;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2182070	2182251	.	-	.	ID=id2696;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2181798	2182009	.	-	.	ID=id2697;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2181495	2181739	.	-	.	ID=id2698;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2181377	2181412	.	-	.	ID=id2699;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2180322	2180375	.	-	.	ID=id2700;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2178887	2179015	.	-	.	ID=id2701;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2175778	2175921	.	-	.	ID=id2702;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2172838	2173050	.	-	.	ID=id2703;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2172642	2172783	.	-	.	ID=id2704;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2171264	2171472	.	-	.	ID=id2705;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2170929	2171202	.	-	.	ID=id2706;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2170539	2170759	.	-	.	ID=id2707;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2170290	2170458	.	-	.	ID=id2708;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2169910	2169982	.	-	.	ID=id2709;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	exon	2164845	2165704	.	-	.	ID=id2710;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XM_008189326.2,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X2;transcript_id=XM_008189326.2
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna317;Parent=gene215;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;Name=XM_016809604.1;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 7 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2206841	2207194	.	-	.	ID=id2711;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2204947	2204996	.	-	.	ID=id2712;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2203637	2203785	.	-	.	ID=id2713;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2203386	2203563	.	-	.	ID=id2714;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2200854	2200979	.	-	.	ID=id2715;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2194876	2195048	.	-	.	ID=id2716;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2194595	2194817	.	-	.	ID=id2717;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2194206	2194538	.	-	.	ID=id2718;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2193963	2194090	.	-	.	ID=id2719;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2193645	2193876	.	-	.	ID=id2720;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2193445	2193563	.	-	.	ID=id2721;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2191474	2191606	.	-	.	ID=id2722;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2191165	2191398	.	-	.	ID=id2723;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2190887	2191060	.	-	.	ID=id2724;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2186266	2186479	.	-	.	ID=id2725;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2185602	2185759	.	-	.	ID=id2726;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2182070	2182251	.	-	.	ID=id2727;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2181798	2182009	.	-	.	ID=id2728;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2181495	2181739	.	-	.	ID=id2729;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2181377	2181412	.	-	.	ID=id2730;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2180322	2180375	.	-	.	ID=id2731;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2178887	2179015	.	-	.	ID=id2732;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2175778	2175921	.	-	.	ID=id2733;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2172838	2173050	.	-	.	ID=id2734;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2172642	2172783	.	-	.	ID=id2735;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2171264	2171472	.	-	.	ID=id2736;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2170929	2171202	.	-	.	ID=id2737;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2170539	2170759	.	-	.	ID=id2738;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2170290	2170458	.	-	.	ID=id2739;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2169910	2169982	.	-	.	ID=id2740;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	exon	2164845	2165704	.	-	.	ID=id2741;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XM_016809604.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X3;transcript_id=XM_016809604.1
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna318;Parent=gene215;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;Name=XM_016809610.1;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 5 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2206841	2207194	.	-	.	ID=id2742;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2204947	2204996	.	-	.	ID=id2743;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2203637	2203785	.	-	.	ID=id2744;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2203386	2203563	.	-	.	ID=id2745;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2200854	2200979	.	-	.	ID=id2746;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2194876	2195048	.	-	.	ID=id2747;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2194595	2194817	.	-	.	ID=id2748;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2194206	2194538	.	-	.	ID=id2749;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2193963	2194090	.	-	.	ID=id2750;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2193639	2193876	.	-	.	ID=id2751;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2193445	2193563	.	-	.	ID=id2752;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2191474	2191606	.	-	.	ID=id2753;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2191165	2191398	.	-	.	ID=id2754;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2190887	2191060	.	-	.	ID=id2755;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2186266	2186479	.	-	.	ID=id2756;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2185602	2185759	.	-	.	ID=id2757;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2182070	2182251	.	-	.	ID=id2758;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2181798	2182009	.	-	.	ID=id2759;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2181495	2181739	.	-	.	ID=id2760;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2181377	2181412	.	-	.	ID=id2761;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2178887	2179015	.	-	.	ID=id2762;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2175778	2175921	.	-	.	ID=id2763;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2172838	2173050	.	-	.	ID=id2764;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2172642	2172783	.	-	.	ID=id2765;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2171264	2171472	.	-	.	ID=id2766;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2170929	2171202	.	-	.	ID=id2767;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2170539	2170759	.	-	.	ID=id2768;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2170290	2170458	.	-	.	ID=id2769;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2169910	2169982	.	-	.	ID=id2770;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	exon	2164845	2165704	.	-	.	ID=id2771;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XM_016809610.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X4;transcript_id=XM_016809610.1
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna319;Parent=gene215;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;Name=XM_003240061.3;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 7 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2206841	2207194	.	-	.	ID=id2772;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2204947	2204996	.	-	.	ID=id2773;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2203637	2203785	.	-	.	ID=id2774;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2203386	2203563	.	-	.	ID=id2775;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2200854	2200979	.	-	.	ID=id2776;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2194876	2195048	.	-	.	ID=id2777;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2194595	2194817	.	-	.	ID=id2778;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2194206	2194538	.	-	.	ID=id2779;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2193963	2194090	.	-	.	ID=id2780;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2193639	2193876	.	-	.	ID=id2781;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2193445	2193563	.	-	.	ID=id2782;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2191474	2191606	.	-	.	ID=id2783;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2191165	2191398	.	-	.	ID=id2784;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2190887	2191060	.	-	.	ID=id2785;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2186266	2186479	.	-	.	ID=id2786;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2185602	2185759	.	-	.	ID=id2787;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2182070	2182251	.	-	.	ID=id2788;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2181798	2182009	.	-	.	ID=id2789;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2181495	2181739	.	-	.	ID=id2790;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2181377	2181412	.	-	.	ID=id2791;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2180322	2180375	.	-	.	ID=id2792;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2175778	2175921	.	-	.	ID=id2793;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2172838	2173050	.	-	.	ID=id2794;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2172642	2172783	.	-	.	ID=id2795;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2171264	2171472	.	-	.	ID=id2796;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2170929	2171202	.	-	.	ID=id2797;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2170539	2170759	.	-	.	ID=id2798;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2170290	2170458	.	-	.	ID=id2799;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2169910	2169982	.	-	.	ID=id2800;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	exon	2164845	2165704	.	-	.	ID=id2801;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XM_003240061.3,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X5;transcript_id=XM_003240061.3
+GL349622	Gnomon	mRNA	2164845	2207194	.	-	.	ID=rna320;Parent=gene215;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;Name=XM_001945855.4;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 4 ESTs%2C 14 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 10 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2206841	2207194	.	-	.	ID=id2802;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2204947	2204996	.	-	.	ID=id2803;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2203637	2203785	.	-	.	ID=id2804;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2203386	2203563	.	-	.	ID=id2805;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2200854	2200979	.	-	.	ID=id2806;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2194876	2195048	.	-	.	ID=id2807;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2194595	2194817	.	-	.	ID=id2808;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2194206	2194538	.	-	.	ID=id2809;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2193963	2194090	.	-	.	ID=id2810;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2193639	2193876	.	-	.	ID=id2811;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2193445	2193563	.	-	.	ID=id2812;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2191474	2191606	.	-	.	ID=id2813;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2191165	2191398	.	-	.	ID=id2814;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2190887	2191060	.	-	.	ID=id2815;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2186266	2186479	.	-	.	ID=id2816;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2185602	2185759	.	-	.	ID=id2817;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2182070	2182251	.	-	.	ID=id2818;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2181798	2182009	.	-	.	ID=id2819;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2181495	2181739	.	-	.	ID=id2820;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2181377	2181412	.	-	.	ID=id2821;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2180322	2180375	.	-	.	ID=id2822;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2178887	2179015	.	-	.	ID=id2823;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2175778	2175921	.	-	.	ID=id2824;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2172838	2173050	.	-	.	ID=id2825;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2172642	2172783	.	-	.	ID=id2826;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2171264	2171472	.	-	.	ID=id2827;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2170929	2171202	.	-	.	ID=id2828;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2170539	2170759	.	-	.	ID=id2829;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2170290	2170458	.	-	.	ID=id2830;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2169910	2169982	.	-	.	ID=id2831;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	exon	2164845	2165704	.	-	.	ID=id2832;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XM_001945855.4,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X1;transcript_id=XM_001945855.4
+GL349622	Gnomon	mRNA	2165530	2207194	.	-	.	ID=rna321;Parent=gene215;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;Name=XM_016809614.1;gbkey=mRNA;gene=LOC100166428;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 2 ESTs%2C 15 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 3 samples with support for all annotated introns;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2206841	2207194	.	-	.	ID=id2833;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2204947	2204996	.	-	.	ID=id2834;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2203637	2203785	.	-	.	ID=id2835;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2203386	2203563	.	-	.	ID=id2836;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2200854	2200979	.	-	.	ID=id2837;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2194876	2195048	.	-	.	ID=id2838;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2194595	2194817	.	-	.	ID=id2839;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2194206	2194538	.	-	.	ID=id2840;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2193963	2194090	.	-	.	ID=id2841;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2193639	2193876	.	-	.	ID=id2842;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2193445	2193563	.	-	.	ID=id2843;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2191474	2191606	.	-	.	ID=id2844;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2191165	2191398	.	-	.	ID=id2845;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2190887	2191060	.	-	.	ID=id2846;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2186266	2186479	.	-	.	ID=id2847;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2185602	2185759	.	-	.	ID=id2848;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2182070	2182251	.	-	.	ID=id2849;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2181798	2182009	.	-	.	ID=id2850;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2181495	2181739	.	-	.	ID=id2851;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2181377	2181412	.	-	.	ID=id2852;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2175778	2175921	.	-	.	ID=id2853;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2172838	2173050	.	-	.	ID=id2854;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2172642	2172783	.	-	.	ID=id2855;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2171264	2171472	.	-	.	ID=id2856;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2170929	2171202	.	-	.	ID=id2857;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2170539	2170759	.	-	.	ID=id2858;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2170290	2170458	.	-	.	ID=id2859;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2169910	2169982	.	-	.	ID=id2860;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	exon	2165530	2165704	.	-	.	ID=id2861;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XM_016809614.1,APHIDBASE:ACYPI007300;gbkey=mRNA;gene=LOC100166428;product=endoribonuclease dcr-1%2C transcript variant X6;transcript_id=XM_016809614.1
+GL349622	Gnomon	CDS	2204947	2204964	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2203637	2203785	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2203386	2203563	.	-	1	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2200854	2200979	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2194876	2195048	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2194595	2194817	.	-	1	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2194206	2194538	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2193963	2194090	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2193645	2193876	.	-	1	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2193445	2193563	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2191474	2191606	.	-	1	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2191165	2191398	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2190887	2191060	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2186266	2186479	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2185602	2185759	.	-	2	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2182070	2182251	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2181798	2182009	.	-	1	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2181495	2181739	.	-	2	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2181377	2181412	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2180322	2180375	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2178887	2179015	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2175778	2175921	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2172838	2173050	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2172642	2172783	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2171264	2171472	.	-	2	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2170929	2171202	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2170539	2170759	.	-	2	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2170290	2170458	.	-	0	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2169910	2169982	.	-	2	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2165530	2165704	.	-	1	ID=cds295;Parent=rna317;Dbxref=GeneID:100166428,Genbank:XP_016665093.1,APHIDBASE:ACYPI007300;Name=XP_016665093.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X2;protein_id=XP_016665093.1
+GL349622	Gnomon	CDS	2204947	2204964	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2203637	2203785	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2203386	2203563	.	-	1	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2200854	2200979	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2194876	2195048	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2194595	2194817	.	-	1	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2194206	2194538	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2193963	2194090	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2193639	2193876	.	-	1	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2193445	2193563	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2191474	2191606	.	-	1	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2191165	2191398	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2190887	2191060	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2186266	2186479	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2185602	2185759	.	-	2	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2182070	2182251	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2181798	2182009	.	-	1	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2181495	2181739	.	-	2	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2181377	2181412	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2175778	2175921	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2172838	2173050	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2172642	2172783	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2171264	2171472	.	-	2	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2170929	2171202	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2170539	2170759	.	-	2	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2170290	2170458	.	-	0	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2169910	2169982	.	-	2	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2165530	2165704	.	-	1	ID=cds296;Parent=rna321;Dbxref=GeneID:100166428,Genbank:XP_016665103.1,APHIDBASE:ACYPI007300;Name=XP_016665103.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X5;protein_id=XP_016665103.1
+GL349622	Gnomon	CDS	2204947	2204964	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2203637	2203785	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2203386	2203563	.	-	1	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2200854	2200979	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2194876	2195048	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2194595	2194817	.	-	1	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2194206	2194538	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2193963	2194090	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2193639	2193876	.	-	1	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2193445	2193563	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2191474	2191606	.	-	1	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2191165	2191398	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2190887	2191060	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2186266	2186479	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2185602	2185759	.	-	2	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2182070	2182251	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2181798	2182009	.	-	1	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2181495	2181739	.	-	2	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2181377	2181412	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2178887	2179015	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2175778	2175921	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2172838	2173050	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2172642	2172783	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2171264	2171472	.	-	2	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2170929	2171202	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2170539	2170759	.	-	2	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2170290	2170458	.	-	0	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2169910	2169982	.	-	2	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2165530	2165704	.	-	1	ID=cds297;Parent=rna318;Dbxref=GeneID:100166428,Genbank:XP_016665099.1,APHIDBASE:ACYPI007300;Name=XP_016665099.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X3;protein_id=XP_016665099.1
+GL349622	Gnomon	CDS	2204947	2204964	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2203637	2203785	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2203386	2203563	.	-	1	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2200854	2200979	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2194876	2195048	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2194595	2194817	.	-	1	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2194206	2194538	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2193963	2194090	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2193639	2193876	.	-	1	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2193445	2193563	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2191474	2191606	.	-	1	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2191165	2191398	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2190887	2191060	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2186266	2186479	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2185602	2185759	.	-	2	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2182070	2182251	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2181798	2182009	.	-	1	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2181495	2181739	.	-	2	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2181377	2181412	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2180322	2180375	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2175778	2175921	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2172838	2173050	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2172642	2172783	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2171264	2171472	.	-	2	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2170929	2171202	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2170539	2170759	.	-	2	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2170290	2170458	.	-	0	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2169910	2169982	.	-	2	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2165530	2165704	.	-	1	ID=cds298;Parent=rna319;Dbxref=GeneID:100166428,Genbank:XP_003240109.1,APHIDBASE:ACYPI007300;Name=XP_003240109.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease dcr-1 isoform X4;protein_id=XP_003240109.1
+GL349622	Gnomon	CDS	2204947	2204964	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2203637	2203785	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2203386	2203563	.	-	1	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2200854	2200979	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2194876	2195048	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2194595	2194817	.	-	1	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2194206	2194538	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2193963	2194090	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2193639	2193876	.	-	1	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2193445	2193563	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2191474	2191606	.	-	1	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2191165	2191398	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2190887	2191060	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2186266	2186479	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2185602	2185759	.	-	2	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2182070	2182251	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2181798	2182009	.	-	1	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2181495	2181739	.	-	2	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2181377	2181412	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2180322	2180375	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2178887	2179015	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2175778	2175921	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2172838	2173050	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2172642	2172783	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2171264	2171472	.	-	2	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2170929	2171202	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2170539	2170759	.	-	2	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2170290	2170458	.	-	0	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2169910	2169982	.	-	2	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2165530	2165704	.	-	1	ID=cds299;Parent=rna320;Dbxref=GeneID:100166428,Genbank:XP_001945890.2,APHIDBASE:ACYPI007300;Name=XP_001945890.2;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_001945890.2
+GL349622	Gnomon	CDS	2204947	2204964	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2203637	2203785	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2203386	2203563	.	-	1	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2200854	2200979	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2194876	2195048	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2194595	2194817	.	-	1	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2194206	2194538	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2193963	2194090	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2193639	2193876	.	-	1	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2193445	2193563	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2191474	2191606	.	-	1	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2191165	2191398	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2190887	2191060	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2186266	2186479	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2185602	2185759	.	-	2	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2182070	2182251	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2181798	2182009	.	-	1	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2181495	2181739	.	-	2	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2181377	2181412	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2180322	2180375	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2178887	2179015	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2175778	2175921	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2172838	2173050	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2172642	2172783	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2171264	2171472	.	-	2	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2170929	2171202	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2170539	2170759	.	-	2	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2170290	2170458	.	-	0	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2169910	2169982	.	-	2	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	CDS	2165530	2165704	.	-	1	ID=cds300;Parent=rna316;Dbxref=GeneID:100166428,Genbank:XP_008187548.1,APHIDBASE:ACYPI007300;Name=XP_008187548.1;gbkey=CDS;gene=LOC100166428;product=endoribonuclease Dicer isoform X1;protein_id=XP_008187548.1
+GL349622	Gnomon	gene	2207743	2212284	.	+	.	ID=gene216;Dbxref=APHIDBASE:ACYPI004089,GeneID:100162971;Name=LOC100162971;gbkey=Gene;gene=LOC100162971;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2207743	2212284	.	+	.	ID=rna322;Parent=gene216;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;Name=XM_016809619.1;gbkey=mRNA;gene=LOC100162971;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 9 ESTs%2C 4 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 32 samples with support for all annotated introns;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2207743	2207872	.	+	.	ID=id2862;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2207953	2208404	.	+	.	ID=id2863;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2209481	2209571	.	+	.	ID=id2864;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2209631	2209788	.	+	.	ID=id2865;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2211021	2211193	.	+	.	ID=id2866;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2211344	2211503	.	+	.	ID=id2867;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2211603	2211692	.	+	.	ID=id2868;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	exon	2211768	2212284	.	+	.	ID=id2869;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XM_016809619.1,APHIDBASE:ACYPI004089;gbkey=mRNA;gene=LOC100162971;product=microfibrillar-associated protein 1;transcript_id=XM_016809619.1
+GL349622	Gnomon	CDS	2207821	2207872	.	+	0	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	Gnomon	CDS	2207953	2208404	.	+	2	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	Gnomon	CDS	2209481	2209571	.	+	0	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	Gnomon	CDS	2209631	2209788	.	+	2	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	Gnomon	CDS	2211021	2211193	.	+	0	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	Gnomon	CDS	2211344	2211503	.	+	1	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	Gnomon	CDS	2211603	2211692	.	+	0	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	Gnomon	CDS	2211768	2211950	.	+	0	ID=cds301;Parent=rna322;Dbxref=GeneID:100162971,Genbank:XP_016665108.1,APHIDBASE:ACYPI004089;Name=XP_016665108.1;gbkey=CDS;gene=LOC100162971;product=microfibrillar-associated protein 1;protein_id=XP_016665108.1
+GL349622	BestRefSeq%2CGnomon	gene	2215041	2221640	.	+	.	ID=gene217;Dbxref=APHIDBASE:ACYPI005441,GeneID:100164422;Name=Intu;description=inturned planar cell polarity effector homolog;gbkey=Gene;gene=Intu;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2215041	2221640	.	+	.	ID=rna323;Parent=gene217;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;Name=XM_016805099.1;gbkey=mRNA;gene=Intu;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 12 samples with support for all annotated introns;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2215041	2215235	.	+	.	ID=id2870;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2216048	2216193	.	+	.	ID=id2871;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2216259	2216505	.	+	.	ID=id2872;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2216581	2216767	.	+	.	ID=id2873;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2216847	2216932	.	+	.	ID=id2874;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2217003	2217277	.	+	.	ID=id2875;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2217344	2217433	.	+	.	ID=id2876;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2217493	2217570	.	+	.	ID=id2877;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2217637	2217799	.	+	.	ID=id2878;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2217856	2217900	.	+	.	ID=id2879;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2217976	2218035	.	+	.	ID=id2880;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2218092	2218360	.	+	.	ID=id2881;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2218426	2218527	.	+	.	ID=id2882;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2219237	2219325	.	+	.	ID=id2883;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2219380	2219460	.	+	.	ID=id2884;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2219532	2219704	.	+	.	ID=id2885;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2219778	2219839	.	+	.	ID=id2886;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2219905	2220094	.	+	.	ID=id2887;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2221066	2221166	.	+	.	ID=id2888;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	Gnomon	exon	2221229	2221640	.	+	.	ID=id2889;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XM_016805099.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog%2C transcript variant X1;transcript_id=XM_016805099.1
+GL349622	BestRefSeq	mRNA	2215042	2221640	.	+	.	ID=rna324;Parent=gene217;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;Name=NM_001205174.1;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2215042	2215235	.	+	.	ID=id2890;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2216048	2216193	.	+	.	ID=id2891;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2216259	2216505	.	+	.	ID=id2892;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2216581	2216767	.	+	.	ID=id2893;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2216847	2216932	.	+	.	ID=id2894;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2217003	2217277	.	+	.	ID=id2895;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2217344	2217433	.	+	.	ID=id2896;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2217493	2217570	.	+	.	ID=id2897;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2217637	2217799	.	+	.	ID=id2898;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2217856	2217900	.	+	.	ID=id2899;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2217976	2218035	.	+	.	ID=id2900;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2218092	2218360	.	+	.	ID=id2901;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2218426	2218527	.	+	.	ID=id2902;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2219237	2219322	.	+	.	ID=id2903;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2219380	2219460	.	+	.	ID=id2904;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2219532	2219704	.	+	.	ID=id2905;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2219778	2219839	.	+	.	ID=id2906;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2219905	2220094	.	+	.	ID=id2907;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2221066	2221166	.	+	.	ID=id2908;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	BestRefSeq	exon	2221229	2221640	.	+	.	ID=id2909;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NM_001205174.1,APHIDBASE:ACYPI005441;gbkey=mRNA;gene=Intu;product=inturned planar cell polarity effector homolog;transcript_id=NM_001205174.1
+GL349622	Gnomon	CDS	2216087	2216193	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2216259	2216505	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2216581	2216767	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2216847	2216932	.	+	2	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2217003	2217277	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2217344	2217433	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2217493	2217570	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2217637	2217799	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2217856	2217900	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2217976	2218035	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2218092	2218360	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2218426	2218527	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2219237	2219325	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2219380	2219460	.	+	2	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2219532	2219704	.	+	2	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2219778	2219839	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2219905	2220094	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2221066	2221166	.	+	0	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	Gnomon	CDS	2221229	2221343	.	+	1	ID=cds302;Parent=rna323;Dbxref=GeneID:100164422,Genbank:XP_016660588.1,APHIDBASE:ACYPI005441;Name=XP_016660588.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6 isoform X1;protein_id=XP_016660588.1
+GL349622	BestRefSeq	CDS	2216087	2216193	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2216259	2216505	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2216581	2216767	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2216847	2216932	.	+	2	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2217003	2217277	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2217344	2217433	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2217493	2217570	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2217637	2217799	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2217856	2217900	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2217976	2218035	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2218092	2218360	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2218426	2218527	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2219237	2219322	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2219380	2219460	.	+	2	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2219532	2219704	.	+	2	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2219778	2219839	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2219905	2220094	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2221066	2221166	.	+	0	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	BestRefSeq	CDS	2221229	2221343	.	+	1	ID=cds303;Parent=rna324;Dbxref=GeneID:100164422,Genbank:NP_001192103.1,APHIDBASE:ACYPI005441;Name=NP_001192103.1;gbkey=CDS;gene=Intu;product=PDZ domain-containing protein 6;protein_id=NP_001192103.1
+GL349622	Gnomon	gene	2222019	2231511	.	-	.	ID=gene218;Dbxref=APHIDBASE:ACYPI003496,GeneID:100162339;Name=LOC100162339;gbkey=Gene;gene=LOC100162339;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2222019	2231511	.	-	.	ID=rna325;Parent=gene218;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;Name=XM_001945962.4;gbkey=mRNA;gene=LOC100162339;model_evidence=Supporting evidence includes similarity to: 1 EST%2C 4 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2231506	2231511	.	-	.	ID=id2910;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2230098	2230298	.	-	.	ID=id2911;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2229847	2230036	.	-	.	ID=id2912;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2229610	2229765	.	-	.	ID=id2913;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2229382	2229546	.	-	.	ID=id2914;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2228260	2228435	.	-	.	ID=id2915;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2227654	2227992	.	-	.	ID=id2916;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2227317	2227592	.	-	.	ID=id2917;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2227020	2227213	.	-	.	ID=id2918;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2226489	2226937	.	-	.	ID=id2919;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2225127	2225318	.	-	.	ID=id2920;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2224839	2225060	.	-	.	ID=id2921;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2224301	2224770	.	-	.	ID=id2922;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2224001	2224227	.	-	.	ID=id2923;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2223754	2223945	.	-	.	ID=id2924;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2222632	2222756	.	-	.	ID=id2925;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	exon	2222019	2222562	.	-	.	ID=id2926;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XM_001945962.4,APHIDBASE:ACYPI003496;gbkey=mRNA;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;transcript_id=XM_001945962.4
+GL349622	Gnomon	CDS	2231506	2231511	.	-	0	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2230098	2230298	.	-	0	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2229847	2230036	.	-	0	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2229610	2229765	.	-	2	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2229382	2229546	.	-	2	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2228260	2228435	.	-	2	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2227654	2227992	.	-	0	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2227317	2227592	.	-	0	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2227020	2227213	.	-	0	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2226489	2226937	.	-	1	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2225127	2225318	.	-	2	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2224839	2225060	.	-	2	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2224301	2224770	.	-	2	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2224001	2224227	.	-	0	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2223754	2223945	.	-	1	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2222632	2222756	.	-	1	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	CDS	2222300	2222562	.	-	2	ID=cds304;Parent=rna325;Dbxref=GeneID:100162339,Genbank:XP_001945997.2,APHIDBASE:ACYPI003496;Name=XP_001945997.2;gbkey=CDS;gene=LOC100162339;product=proto-oncogene tyrosine-protein kinase ROS;protein_id=XP_001945997.2
+GL349622	Gnomon	gene	2236137	2244519	.	-	.	ID=gene219;Dbxref=APHIDBASE:ACYPI007905,GeneID:100167084;Name=LOC100167084;gbkey=Gene;gene=LOC100167084;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2236137	2244519	.	-	.	ID=rna326;Parent=gene219;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;Name=XM_003240065.3;gbkey=mRNA;gene=LOC100167084;model_evidence=Supporting evidence includes similarity to: 2 mRNAs%2C 106 ESTs%2C 17 Proteins%2C and 90%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 43 samples with support for all annotated introns;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2244400	2244519	.	-	.	ID=id2927;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2244175	2244312	.	-	.	ID=id2928;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2243646	2243831	.	-	.	ID=id2929;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2240230	2240401	.	-	.	ID=id2930;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2239927	2240087	.	-	.	ID=id2931;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2237708	2237965	.	-	.	ID=id2932;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2236692	2236793	.	-	.	ID=id2933;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	exon	2236137	2236579	.	-	.	ID=id2934;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XM_003240065.3,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X2;transcript_id=XM_003240065.3
+GL349622	Gnomon	mRNA	2236137	2244514	.	-	.	ID=rna327;Parent=gene219;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;Name=XM_016809623.1;gbkey=mRNA;gene=LOC100167084;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 19 ESTs%2C 15 Proteins%2C and 90%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 30 samples with support for all annotated introns;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2244400	2244514	.	-	.	ID=id2935;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2244175	2244312	.	-	.	ID=id2936;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2243646	2243831	.	-	.	ID=id2937;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2240230	2240401	.	-	.	ID=id2938;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2239927	2240141	.	-	.	ID=id2939;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2237708	2237965	.	-	.	ID=id2940;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2236692	2236793	.	-	.	ID=id2941;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	exon	2236137	2236579	.	-	.	ID=id2942;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XM_016809623.1,APHIDBASE:ACYPI007905;gbkey=mRNA;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1%2C transcript variant X1;transcript_id=XM_016809623.1
+GL349622	Gnomon	CDS	2244175	2244291	.	-	0	ID=cds305;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XP_003240113.3,APHIDBASE:ACYPI007905;Name=XP_003240113.3;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X2;protein_id=XP_003240113.3
+GL349622	Gnomon	CDS	2243646	2243831	.	-	0	ID=cds305;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XP_003240113.3,APHIDBASE:ACYPI007905;Name=XP_003240113.3;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X2;protein_id=XP_003240113.3
+GL349622	Gnomon	CDS	2240230	2240401	.	-	0	ID=cds305;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XP_003240113.3,APHIDBASE:ACYPI007905;Name=XP_003240113.3;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X2;protein_id=XP_003240113.3
+GL349622	Gnomon	CDS	2239927	2240087	.	-	2	ID=cds305;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XP_003240113.3,APHIDBASE:ACYPI007905;Name=XP_003240113.3;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X2;protein_id=XP_003240113.3
+GL349622	Gnomon	CDS	2237708	2237965	.	-	0	ID=cds305;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XP_003240113.3,APHIDBASE:ACYPI007905;Name=XP_003240113.3;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X2;protein_id=XP_003240113.3
+GL349622	Gnomon	CDS	2236692	2236793	.	-	0	ID=cds305;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XP_003240113.3,APHIDBASE:ACYPI007905;Name=XP_003240113.3;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X2;protein_id=XP_003240113.3
+GL349622	Gnomon	CDS	2236418	2236579	.	-	0	ID=cds305;Parent=rna326;Dbxref=GeneID:100167084,Genbank:XP_003240113.3,APHIDBASE:ACYPI007905;Name=XP_003240113.3;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X2;protein_id=XP_003240113.3
+GL349622	Gnomon	CDS	2244175	2244291	.	-	0	ID=cds306;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XP_016665112.1,APHIDBASE:ACYPI007905;Name=XP_016665112.1;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X1;protein_id=XP_016665112.1
+GL349622	Gnomon	CDS	2243646	2243831	.	-	0	ID=cds306;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XP_016665112.1,APHIDBASE:ACYPI007905;Name=XP_016665112.1;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X1;protein_id=XP_016665112.1
+GL349622	Gnomon	CDS	2240230	2240401	.	-	0	ID=cds306;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XP_016665112.1,APHIDBASE:ACYPI007905;Name=XP_016665112.1;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X1;protein_id=XP_016665112.1
+GL349622	Gnomon	CDS	2239927	2240141	.	-	2	ID=cds306;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XP_016665112.1,APHIDBASE:ACYPI007905;Name=XP_016665112.1;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X1;protein_id=XP_016665112.1
+GL349622	Gnomon	CDS	2237708	2237965	.	-	0	ID=cds306;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XP_016665112.1,APHIDBASE:ACYPI007905;Name=XP_016665112.1;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X1;protein_id=XP_016665112.1
+GL349622	Gnomon	CDS	2236692	2236793	.	-	0	ID=cds306;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XP_016665112.1,APHIDBASE:ACYPI007905;Name=XP_016665112.1;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X1;protein_id=XP_016665112.1
+GL349622	Gnomon	CDS	2236418	2236579	.	-	0	ID=cds306;Parent=rna327;Dbxref=GeneID:100167084,Genbank:XP_016665112.1,APHIDBASE:ACYPI007905;Name=XP_016665112.1;gbkey=CDS;gene=LOC100167084;product=lipid storage droplets surface-binding protein 1 isoform X1;protein_id=XP_016665112.1
+GL349622	Gnomon	gene	2258090	2264185	.	+	.	ID=gene220;Dbxref=APHIDBASE:ACYPI004782,GeneID:100163719;Name=LOC100163719;gbkey=Gene;gene=LOC100163719;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2258090	2264185	.	+	.	ID=rna328;Parent=gene220;Dbxref=GeneID:100163719,Genbank:XM_001945644.3,APHIDBASE:ACYPI004782;Name=XM_001945644.3;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 3 ESTs%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 5 samples with support for all annotated introns;product=protein FAM133-like%2C transcript variant X1;transcript_id=XM_001945644.3
+GL349622	Gnomon	exon	2258090	2258728	.	+	.	ID=id2943;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XM_001945644.3,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X1;transcript_id=XM_001945644.3
+GL349622	Gnomon	exon	2260021	2260153	.	+	.	ID=id2944;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XM_001945644.3,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X1;transcript_id=XM_001945644.3
+GL349622	Gnomon	exon	2263302	2263564	.	+	.	ID=id2945;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XM_001945644.3,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X1;transcript_id=XM_001945644.3
+GL349622	Gnomon	exon	2263632	2263784	.	+	.	ID=id2946;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XM_001945644.3,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X1;transcript_id=XM_001945644.3
+GL349622	Gnomon	exon	2263855	2264185	.	+	.	ID=id2947;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XM_001945644.3,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X1;transcript_id=XM_001945644.3
+GL349622	Gnomon	mRNA	2258090	2264185	.	+	.	ID=rna329;Parent=gene220;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;Name=XM_016809651.1;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 2 ESTs%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	exon	2258090	2258303	.	+	.	ID=id2948;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	exon	2258402	2258728	.	+	.	ID=id2949;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	exon	2260021	2260153	.	+	.	ID=id2950;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	exon	2263302	2263564	.	+	.	ID=id2951;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	exon	2263632	2263784	.	+	.	ID=id2952;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	exon	2263855	2264185	.	+	.	ID=id2953;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XM_016809651.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X2;transcript_id=XM_016809651.1
+GL349622	Gnomon	mRNA	2258353	2264185	.	+	.	ID=rna330;Parent=gene220;Dbxref=GeneID:100163719,Genbank:XM_016809657.1,APHIDBASE:ACYPI004782;Name=XM_016809657.1;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 1 sample with support for all annotated introns;product=protein FAM133-like%2C transcript variant X4;transcript_id=XM_016809657.1
+GL349622	Gnomon	exon	2258353	2258728	.	+	.	ID=id2954;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XM_016809657.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X4;transcript_id=XM_016809657.1
+GL349622	Gnomon	exon	2263302	2263564	.	+	.	ID=id2955;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XM_016809657.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X4;transcript_id=XM_016809657.1
+GL349622	Gnomon	exon	2263632	2263784	.	+	.	ID=id2956;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XM_016809657.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X4;transcript_id=XM_016809657.1
+GL349622	Gnomon	exon	2263855	2264185	.	+	.	ID=id2957;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XM_016809657.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X4;transcript_id=XM_016809657.1
+GL349622	Gnomon	CDS	2258663	2258728	.	+	0	ID=cds307;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XP_016665140.1,APHIDBASE:ACYPI004782;Name=XP_016665140.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_016665140.1
+GL349622	Gnomon	CDS	2260021	2260153	.	+	0	ID=cds307;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XP_016665140.1,APHIDBASE:ACYPI004782;Name=XP_016665140.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_016665140.1
+GL349622	Gnomon	CDS	2263302	2263564	.	+	2	ID=cds307;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XP_016665140.1,APHIDBASE:ACYPI004782;Name=XP_016665140.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_016665140.1
+GL349622	Gnomon	CDS	2263632	2263784	.	+	0	ID=cds307;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XP_016665140.1,APHIDBASE:ACYPI004782;Name=XP_016665140.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_016665140.1
+GL349622	Gnomon	CDS	2263855	2264025	.	+	0	ID=cds307;Parent=rna329;Dbxref=GeneID:100163719,Genbank:XP_016665140.1,APHIDBASE:ACYPI004782;Name=XP_016665140.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_016665140.1
+GL349622	Gnomon	CDS	2258663	2258728	.	+	0	ID=cds308;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XP_001945679.2,APHIDBASE:ACYPI004782;Name=XP_001945679.2;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_001945679.2
+GL349622	Gnomon	CDS	2260021	2260153	.	+	0	ID=cds308;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XP_001945679.2,APHIDBASE:ACYPI004782;Name=XP_001945679.2;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_001945679.2
+GL349622	Gnomon	CDS	2263302	2263564	.	+	2	ID=cds308;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XP_001945679.2,APHIDBASE:ACYPI004782;Name=XP_001945679.2;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_001945679.2
+GL349622	Gnomon	CDS	2263632	2263784	.	+	0	ID=cds308;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XP_001945679.2,APHIDBASE:ACYPI004782;Name=XP_001945679.2;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_001945679.2
+GL349622	Gnomon	CDS	2263855	2264025	.	+	0	ID=cds308;Parent=rna328;Dbxref=GeneID:100163719,Genbank:XP_001945679.2,APHIDBASE:ACYPI004782;Name=XP_001945679.2;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X1;protein_id=XP_001945679.2
+GL349622	Gnomon	mRNA	2258695	2264185	.	+	.	ID=rna331;Parent=gene220;Dbxref=GeneID:100163719,Genbank:XM_016809655.1,APHIDBASE:ACYPI004782;Name=XM_016809655.1;gbkey=mRNA;gene=LOC100163719;model_evidence=Supporting evidence includes similarity to: 1 EST%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 2 samples with support for all annotated introns;product=protein FAM133-like%2C transcript variant X3;transcript_id=XM_016809655.1
+GL349622	Gnomon	exon	2258695	2258728	.	+	.	ID=id2958;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XM_016809655.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X3;transcript_id=XM_016809655.1
+GL349622	Gnomon	exon	2260034	2260153	.	+	.	ID=id2959;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XM_016809655.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X3;transcript_id=XM_016809655.1
+GL349622	Gnomon	exon	2263302	2263564	.	+	.	ID=id2960;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XM_016809655.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X3;transcript_id=XM_016809655.1
+GL349622	Gnomon	exon	2263632	2263784	.	+	.	ID=id2961;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XM_016809655.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X3;transcript_id=XM_016809655.1
+GL349622	Gnomon	exon	2263855	2264185	.	+	.	ID=id2962;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XM_016809655.1,APHIDBASE:ACYPI004782;gbkey=mRNA;gene=LOC100163719;product=protein FAM133-like%2C transcript variant X3;transcript_id=XM_016809655.1
+GL349622	Gnomon	CDS	2258725	2258728	.	+	0	ID=cds309;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XP_016665144.1,APHIDBASE:ACYPI004782;Name=XP_016665144.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X2;protein_id=XP_016665144.1
+GL349622	Gnomon	CDS	2260034	2260153	.	+	2	ID=cds309;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XP_016665144.1,APHIDBASE:ACYPI004782;Name=XP_016665144.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X2;protein_id=XP_016665144.1
+GL349622	Gnomon	CDS	2263302	2263564	.	+	2	ID=cds309;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XP_016665144.1,APHIDBASE:ACYPI004782;Name=XP_016665144.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X2;protein_id=XP_016665144.1
+GL349622	Gnomon	CDS	2263632	2263784	.	+	0	ID=cds309;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XP_016665144.1,APHIDBASE:ACYPI004782;Name=XP_016665144.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X2;protein_id=XP_016665144.1
+GL349622	Gnomon	CDS	2263855	2264025	.	+	0	ID=cds309;Parent=rna331;Dbxref=GeneID:100163719,Genbank:XP_016665144.1,APHIDBASE:ACYPI004782;Name=XP_016665144.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X2;protein_id=XP_016665144.1
+GL349622	Gnomon	CDS	2258725	2258728	.	+	0	ID=cds310;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XP_016665146.1,APHIDBASE:ACYPI004782;Name=XP_016665146.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X3;protein_id=XP_016665146.1
+GL349622	Gnomon	CDS	2263302	2263564	.	+	2	ID=cds310;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XP_016665146.1,APHIDBASE:ACYPI004782;Name=XP_016665146.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X3;protein_id=XP_016665146.1
+GL349622	Gnomon	CDS	2263632	2263784	.	+	0	ID=cds310;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XP_016665146.1,APHIDBASE:ACYPI004782;Name=XP_016665146.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X3;protein_id=XP_016665146.1
+GL349622	Gnomon	CDS	2263855	2264025	.	+	0	ID=cds310;Parent=rna330;Dbxref=GeneID:100163719,Genbank:XP_016665146.1,APHIDBASE:ACYPI004782;Name=XP_016665146.1;gbkey=CDS;gene=LOC100163719;product=protein FAM133-like isoform X3;protein_id=XP_016665146.1
+GL349622	Gnomon	gene	2264010	2275205	.	-	.	ID=gene221;Dbxref=APHIDBASE:ACYPI000962,GeneID:100159605;Name=LOC100159605;gbkey=Gene;gene=LOC100159605;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2264010	2275205	.	-	.	ID=rna332;Parent=gene221;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;Name=XM_016809633.1;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 13 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 18 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2274577	2275205	.	-	.	ID=id2963;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2274384	2274500	.	-	.	ID=id2964;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2268914	2269020	.	-	.	ID=id2965;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2268696	2268826	.	-	.	ID=id2966;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2268561	2268629	.	-	.	ID=id2967;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2267581	2267684	.	-	.	ID=id2968;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2266730	2266837	.	-	.	ID=id2969;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2266395	2266653	.	-	.	ID=id2970;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2266060	2266339	.	-	.	ID=id2971;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2265858	2265982	.	-	.	ID=id2972;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2264712	2264895	.	-	.	ID=id2973;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	exon	2264010	2264648	.	-	.	ID=id2974;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XM_016809633.1,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X4;transcript_id=XM_016809633.1
+GL349622	Gnomon	mRNA	2264010	2275205	.	-	.	ID=rna333;Parent=gene221;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;Name=XM_008189652.2;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 19 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 21 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2274577	2275205	.	-	.	ID=id2975;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2274384	2274500	.	-	.	ID=id2976;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2269253	2269368	.	-	.	ID=id2977;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2268914	2269020	.	-	.	ID=id2978;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2268696	2268826	.	-	.	ID=id2979;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2268561	2268620	.	-	.	ID=id2980;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2267581	2267684	.	-	.	ID=id2981;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2266730	2266837	.	-	.	ID=id2982;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2266395	2266653	.	-	.	ID=id2983;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2266060	2266339	.	-	.	ID=id2984;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2265858	2265982	.	-	.	ID=id2985;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2264712	2264895	.	-	.	ID=id2986;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	exon	2264010	2264648	.	-	.	ID=id2987;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XM_008189652.2,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X2;transcript_id=XM_008189652.2
+GL349622	Gnomon	mRNA	2264010	2275205	.	-	.	ID=rna334;Parent=gene221;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;Name=XM_003240066.3;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 19 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 27 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2274577	2275205	.	-	.	ID=id2988;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2274384	2274500	.	-	.	ID=id2989;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2269253	2269368	.	-	.	ID=id2990;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2268914	2269020	.	-	.	ID=id2991;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2268696	2268826	.	-	.	ID=id2992;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2268561	2268629	.	-	.	ID=id2993;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2267581	2267684	.	-	.	ID=id2994;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2266730	2266837	.	-	.	ID=id2995;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2266395	2266653	.	-	.	ID=id2996;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2266060	2266339	.	-	.	ID=id2997;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2265858	2265982	.	-	.	ID=id2998;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2264712	2264895	.	-	.	ID=id2999;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	exon	2264010	2264648	.	-	.	ID=id3000;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XM_003240066.3,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X1;transcript_id=XM_003240066.3
+GL349622	Gnomon	mRNA	2264010	2275204	.	-	.	ID=rna335;Parent=gene221;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;Name=XM_001945754.4;gbkey=mRNA;gene=LOC100159605;model_evidence=Supporting evidence includes similarity to: 19 ESTs%2C 1 Protein%2C and 98%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 33 samples with support for all annotated introns;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2274577	2275204	.	-	.	ID=id3001;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2274384	2274500	.	-	.	ID=id3002;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2269253	2269368	.	-	.	ID=id3003;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2268914	2269020	.	-	.	ID=id3004;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2268696	2268826	.	-	.	ID=id3005;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2267581	2267684	.	-	.	ID=id3006;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2266730	2266837	.	-	.	ID=id3007;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2266395	2266653	.	-	.	ID=id3008;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2266060	2266339	.	-	.	ID=id3009;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2265858	2265982	.	-	.	ID=id3010;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2264712	2264895	.	-	.	ID=id3011;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	exon	2264010	2264648	.	-	.	ID=id3012;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XM_001945754.4,APHIDBASE:ACYPI000962;gbkey=mRNA;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase%2C transcript variant X3;transcript_id=XM_001945754.4
+GL349622	Gnomon	CDS	2274384	2274494	.	-	0	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2269253	2269368	.	-	0	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2268914	2269020	.	-	1	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2268696	2268826	.	-	2	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2267581	2267684	.	-	0	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2266730	2266837	.	-	1	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2266395	2266653	.	-	1	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2266060	2266339	.	-	0	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2265858	2265982	.	-	2	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2264712	2264895	.	-	0	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2264467	2264648	.	-	2	ID=cds311;Parent=rna335;Dbxref=GeneID:100159605,Genbank:XP_001945789.1,APHIDBASE:ACYPI000962;Name=XP_001945789.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X3;protein_id=XP_001945789.1
+GL349622	Gnomon	CDS	2274384	2274494	.	-	0	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2269253	2269368	.	-	0	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2268914	2269020	.	-	1	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2268696	2268826	.	-	2	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2268561	2268620	.	-	0	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2267581	2267684	.	-	0	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2266730	2266837	.	-	1	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2266395	2266653	.	-	1	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2266060	2266339	.	-	0	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2265858	2265982	.	-	2	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2264712	2264895	.	-	0	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2264467	2264648	.	-	2	ID=cds312;Parent=rna333;Dbxref=GeneID:100159605,Genbank:XP_008187874.1,APHIDBASE:ACYPI000962;Name=XP_008187874.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X2;protein_id=XP_008187874.1
+GL349622	Gnomon	CDS	2274384	2274494	.	-	0	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2269253	2269368	.	-	0	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2268914	2269020	.	-	1	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2268696	2268826	.	-	2	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2268561	2268629	.	-	0	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2267581	2267684	.	-	0	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2266730	2266837	.	-	1	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2266395	2266653	.	-	1	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2266060	2266339	.	-	0	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2265858	2265982	.	-	2	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2264712	2264895	.	-	0	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2264467	2264648	.	-	2	ID=cds313;Parent=rna334;Dbxref=GeneID:100159605,Genbank:XP_003240114.1,APHIDBASE:ACYPI000962;Name=XP_003240114.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X1;protein_id=XP_003240114.1
+GL349622	Gnomon	CDS	2274384	2274463	.	-	0	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2268914	2269020	.	-	1	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2268696	2268826	.	-	2	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2268561	2268629	.	-	0	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2267581	2267684	.	-	0	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2266730	2266837	.	-	1	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2266395	2266653	.	-	1	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2266060	2266339	.	-	0	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2265858	2265982	.	-	2	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2264712	2264895	.	-	0	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	CDS	2264467	2264648	.	-	2	ID=cds314;Parent=rna332;Dbxref=GeneID:100159605,Genbank:XP_016665122.1,APHIDBASE:ACYPI000962;Name=XP_016665122.1;gbkey=CDS;gene=LOC100159605;product=heparan-alpha-glucosaminide N-acetyltransferase isoform X4;protein_id=XP_016665122.1
+GL349622	Gnomon	gene	2270755	2281456	.	+	.	ID=gene222;Dbxref=GeneID:100168508;Name=LOC100168508;gbkey=Gene;gene=LOC100168508;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2270755	2281456	.	+	.	ID=rna336;Parent=gene222;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;Name=XM_008189547.2;gbkey=mRNA;gene=LOC100168508;model_evidence=Supporting evidence includes similarity to: 11 ESTs%2C 6 Proteins%2C and 100%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 7 samples with support for all annotated introns;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2270755	2270858	.	+	.	ID=id3013;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2275832	2276024	.	+	.	ID=id3014;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2276104	2276317	.	+	.	ID=id3015;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2277056	2277150	.	+	.	ID=id3016;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2277210	2277375	.	+	.	ID=id3017;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2277440	2277597	.	+	.	ID=id3018;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2277752	2277899	.	+	.	ID=id3019;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2278680	2278782	.	+	.	ID=id3020;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2279387	2279634	.	+	.	ID=id3021;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2280679	2280846	.	+	.	ID=id3022;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2280911	2281109	.	+	.	ID=id3023;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	exon	2281171	2281456	.	+	.	ID=id3024;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XM_008189547.2;gbkey=mRNA;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;transcript_id=XM_008189547.2
+GL349622	Gnomon	CDS	2275844	2276024	.	+	0	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2276104	2276317	.	+	2	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2277056	2277150	.	+	1	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2277210	2277375	.	+	2	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2277440	2277597	.	+	1	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2277752	2277899	.	+	2	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2278680	2278782	.	+	1	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2279387	2279634	.	+	0	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2280679	2280846	.	+	1	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2280911	2281109	.	+	1	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	CDS	2281171	2281236	.	+	0	ID=cds315;Parent=rna336;Dbxref=GeneID:100168508,Genbank:XP_008187769.1;Name=XP_008187769.1;gbkey=CDS;gene=LOC100168508;product=ATPase family AAA domain-containing protein 3;protein_id=XP_008187769.1
+GL349622	Gnomon	gene	2282156	2284359	.	-	.	ID=gene223;Dbxref=APHIDBASE:ACYPI006028,GeneID:100165058;Name=LOC100165058;gbkey=Gene;gene=LOC100165058;gene_biotype=protein_coding
+GL349622	Gnomon	mRNA	2282156	2284359	.	-	.	ID=rna337;Parent=gene223;Dbxref=GeneID:100165058,Genbank:XM_001950091.4,APHIDBASE:ACYPI006028;Name=XM_001950091.4;gbkey=mRNA;gene=LOC100165058;model_evidence=Supporting evidence includes similarity to: 1 mRNA%2C 25 ESTs%2C 5 Proteins%2C and 99%25 coverage of the annotated genomic feature by RNAseq alignments%2C including 44 samples with support for all annotated introns;product=solute carrier family 35 member B1;transcript_id=XM_001950091.4
+GL349622	Gnomon	exon	2283842	2284359	.	-	.	ID=id3025;Parent=rna337;Dbxref=GeneID:100165058,Genbank:XM_001950091.4,APHIDBASE:ACYPI006028;gbkey=mRNA;gene=LOC100165058;product=solute carrier family 35 member B1;transcript_id=XM_001950091.4
+GL349622	Gnomon	exon	2283136	2283304	.	-	.	ID=id3026;Parent=rna337;Dbxref=GeneID:100165058,Genbank:XM_001950091.4,APHIDBASE:ACYPI006028;gbkey=mRNA;gene=LOC100165058;product=solute carrier family 35 member B1;transcript_id=XM_001950091.4
+GL349622	Gnomon	exon	2282156	2283037	.	-	.	ID=id3027;Parent=rna337;Dbxref=GeneID:100165058,Genbank:XM_001950091.4,APHIDBASE:ACYPI006028;gbkey=mRNA;gene=LOC100165058;product=solute carrier family 35 member B1;transcript_id=XM_001950091.4
+GL349622	Gnomon	CDS	2283842	2284153	.	-	0	ID=cds316;Parent=rna337;Dbxref=GeneID:100165058,Genbank:XP_001950126.1,APHIDBASE:ACYPI006028;Name=XP_001950126.1;gbkey=CDS;gene=LOC100165058;product=solute carrier family 35 member B1;protein_id=XP_001950126.1
+GL349622	Gnomon	CDS	2283136	2283304	.	-	0	ID=cds316;Parent=rna337;Dbxref=GeneID:100165058,Genbank:XP_001950126.1,APHIDBASE:ACYPI006028;Name=XP_001950126.1;gbkey=CDS;gene=LOC100165058;product=solute carrier family 35 member B1;protein_id=XP_001950126.1
+GL349622	Gnomon	CDS	2282574	2283037	.	-	2	ID=cds316;Parent=rna337;Dbxref=GeneID:100165058,Genbank:XP_001950126.1,APHIDBASE:ACYPI006028;Name=XP_001950126.1;gbkey=CDS;gene=LOC100165058;product=solute carrier family 35 member B1;protein_id=XP_001950126.1
+GL349622	RefSeq	cDNA_match	1398106	1398413	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 1 308 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1397384	1397583	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 458 657 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1396521	1396667	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 658 804 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1396235	1396450	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 805 1020 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1395198	1395401	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 1021 1224 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1394967	1395141	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 1225 1399 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1394737	1394892	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 1400 1555 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1392808	1392927	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 1556 1675 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1392655	1392741	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 1676 1762 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1392068	1392569	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 1763 2264 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1389062	1389156	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 2265 2359 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	1388356	1388994	.	-	.	ID=e3be8e62-36cf-44c9-ab71-fafcb9323c9a;Target=XM_001942814.4 2360 2998 +;for_remapping=2;gap_count=0;num_ident=2849;num_mismatch=0;pct_coverage=95.03;pct_coverage_hiqual=95.03;pct_identity_gap=100;pct_identity_ungap=100;rank=1
+GL349622	RefSeq	cDNA_match	2123429	2123504	76	+	.	ID=1ddd2e4d-692f-4692-bdb2-fa470cb8e6c5;Target=NM_001246122.1 3 78 +;consensus_splices=4;exon_identity=0.995992;for_remapping=2;gap_count=2;identity=0.992016;idty=1;matches=497;num_ident=497;num_mismatch=0;pct_coverage=99.2016;pct_coverage_hiqual=99.2016;pct_identity_gap=99.5992;pct_identity_ungap=100;product_coverage=0.996008;rank=1;score=76;splices=4;weighted_identity=0.992481
+GL349622	RefSeq	cDNA_match	2123585	2123694	110	+	.	ID=1ddd2e4d-692f-4692-bdb2-fa470cb8e6c5;Target=NM_001246122.1 79 188 +;consensus_splices=4;exon_identity=0.995992;for_remapping=2;gap_count=2;identity=0.992016;idty=1;matches=497;num_ident=497;num_mismatch=0;pct_coverage=99.2016;pct_coverage_hiqual=99.2016;pct_identity_gap=99.5992;pct_identity_ungap=100;product_coverage=0.996008;rank=1;score=110;splices=4;weighted_identity=0.992481
+GL349622	RefSeq	cDNA_match	2123766	2124076	304.514	+	.	ID=1ddd2e4d-692f-4692-bdb2-fa470cb8e6c5;Target=NM_001246122.1 189 501 +;consensus_splices=4;exon_identity=0.995992;for_remapping=2;gap_count=2;identity=0.992016;idty=0.99361;matches=497;num_ident=497;num_mismatch=0;pct_coverage=99.2016;pct_coverage_hiqual=99.2016;pct_identity_gap=99.5992;pct_identity_ungap=100;product_coverage=0.996008;rank=1;score=304.514;splices=4;weighted_identity=0.992481;Gap=M238 I1 M60 I1 M13