# Test data in notation3 http://www.w3.org/DesignIssues/Notation3.html
#    
@prefix affx: <http://www.affymetrix.com/community/publications/affymetrix/tmsplice#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

@prefix : <#> .

affx:Gene a owl:Class ;
    	owl:hasProperty affx:onStrand ;
    	owl:hasProperty affx:onChr ;
    	owl:hasProperty affx:hasVariant .

affx:onStrand a owl:ObjectProperty ;
	owl:domain affx:Gene ; 
    	owl:range rdfs:Literal ;
	owl:cardinality "1" ;
    	rdfs:comment "The strand on which the gene exists" .

affx:onChr a owl:ObjectProperty ;
	owl:domain affx:Gene ;
	owl:range rdfs:Literal ;
	owl:cardinality "1" ;
	rdfs:comment "The chromosome on which the gene exists" .

affx:hasVariant a owl:ObjectProperty ;
	owl:domain affx:Gene ;
	owl:range affx:SpliceVariant ;
	owl:minCardinality "1" ;
	rdfs:comment "For associating variants to genes" .

affx:SpliceVariant a owl:Class ;
        owl:hasProperty affx:representedBy .

affx:representedBy a owl:ObjectProperty ;
	owl:domain affx:SpliceVariant ;
	owl:range affx:Transcript ;
	owl:minCardinality "1" ;
	rdfs:comment 
	 "In this data, each splice variant is represented by one transcript" .

affx:Transcript a owl:Class ;
	owl:hasProperty affx:unigene ;
	owl:hasProperty affx:translatesTo ;
	owl:hasProperty affx:fullCds ;
	owl:hasProperty affx:hasExon ;
	owl:hasProperty affx:signalPHit ;
	owl:hasProperty affx:tmHMMHit ;
	rdfs:comment 
	   "A transcript has a CDS region, a protein translation, and exons" ;
	rdfs:comment
	   "Additionally the transcript might have one or more annotations" . 

affx:unigene a owl:ObjectProperty ;
	owl:domain affx:Transcript ;
	owl:range rdfs:Literal ;
	owl:cardinality "1" ;
	rdfs:comment "The Unigene ID of the transcript - and splice variant" .

affx:translatesTo a owl:ObjectProperty ;
	owl:domain affx:Transcript ;
	owl:range rdfs:Literal ;
	owl:cardinality "1" ;
	rdfs:comment "The amino acid sequence derived from the transcript" .

affx:fullCds a owl:ObjectProperty ;
	owl:domain affx:Transcript ;
	owl:range affx:GenomicCoordinates ;
	owl:cardinality "1" ;
	rdfs:comment "Start and stop coordinates of the full CDS region" .

affx:hasExon a owl:ObjectProperty ;
	owl:domain affx:Transcript ;
	owl:range affx:ExonPlusCds ;
	owl:minCardinality "1" ;
	rdfs:comment "Here, exons are defined only by their coordinates " .

affx:ExonPlusCds a owl:Class ;
	owl:hasProperty affx:relatesToExon ;
	owl:hasProperty affx:cdsType ;	
	owl:hasProperty affx:cdsStart ;
	owl:hasProperty affx:cdsStop ;
	owl:hasProperty affx:frame .
	
affx:relatesToExon a owl:ObjectProperty ;
	owl:domain affx:ExonWithCds ; 
	owl:range affx:Exon ;
	owl:cardinality "1" ;
	rdfs:comment "For associating exons with properties such as frame" .

affx:Exon a owl:Class ;
	rdfs:subClassOf affx:GenomicSpan ;
	owl:hasProperty affx:commonToAll ;
	rdfs:comment "Defines the coordinates of an exon on the genome" .

affx:GenomicSpan a owl:Class ;
	rdfs:subClassOf affx:GenomicCoordinates ;
	rdfs:comment "This defines a region of _ungapped_ genomic alignment" .

affx:GenomicCoordinates a owl:Class ;
	rdfs:subClassOf affx:Coordinates ;
	rdfs:comment "Start and stop, possibly with intervening gaps " ;
	rdfs:comment "Strand and chr will be specified at the gene level " .

affx:Coordinates a owl:Class ;
	owl:hasProperty affx:startsAt ;
	owl:hasProperty affx:stopsAt .

affx:startsAt a owl:ObjectProperty ;
	owl:cardinality "1" ;
	owl:range rdfs:Literal .

affx:stopsAt a owl:ObjectProperty ;
	owl:cardinality "1" ;
	owl:range rdfs:Literal .

affx:cdsType a owl:ObjectProperty ;
	owl:domain affx:ExonPlusCds ;
	owl:range rdfs:Literal ;
	rdfs:comment "Expected CDS types are Full, Partial, and None" .

affx:commonToAll a owl:ObjectProperty ;
	owl:range rdfs:Literal ;
	owl:cardinality "1" ;
	rdfs:comment "Shows if all the gene's variants share this object" .

affx:CdsOccupancy a owl:Class ;
	rdfs:subClassOf rdfs:Literal .

affx:cdsStart a owl:ObjectProperty ;
	rdfs:subClassOf affx:startsAt ;
	rdfs:comment "For indicating where a specific CDS region starts" .

affx:cdsStop a owl:ObjectProperty ;
	rdfs:subClassOf affx:stopsAt ;
	rdfs:comment "For indicating where a specific CDS region stops" .

affx:frame a owl:ObjectProperty ;
	owl:range rdfs:Literal ;
	owl:cardinality "1" .

affx:signalPHit a owl:ObjectProperty ;
	rdfs:domain affx:Transcript ;
	rdfs:range affx:SignalPeptide ;
	owl:cardinality "1" .

affx:SignalPeptide a owl:Class ;
	rdfs:subClassOf affx:Annotation ;
	rdfs:comment "Represents a SIGNALP hit" .

affx:tmHMMHit a owl:ObjectProperty ;
	rdfs:domain affx:Transcript ;
	rdfs:range affx:Transmembrane ;
	owl:cardinality "1" .

affx:Transmembrane a owl:Class ;
	rdfs:subClassOf affx:Annotation ;
	owl:hasProperty affx:helixCount ;
	rdfs:comment "Represents a TMHMM hit" .

affx:Annotation a owl:Class ;
	owl:hasProperty affx:containsMotif;
	owl:hasProperty affx:commonToAll ;
	owl:hasProperty affx:motifCount .

affx:containsMotif a owl:ObjectProperty ;
	owl:domain affx:Annotation ;
	owl:range affx:Motif ;
	owl:minCardinality "1" .

affx:motifCount a owl:ObjectProperty ;
	owl:domain affx:Annotation ;
	owl:range rdfs:Literal ;
	owl:cardinality "1" ;
	rdfs:comment "Number of motifs (eg. TM passes) in this annotation" .

affx:Motif a owl:Class ;
	owl:hasProperty affx:hasProteinSpan .

affx:hasProteinSpan a owl:ObjectProperty ;
	owl:domain affx:Motif ;
	owl:range affx:ProteinSpan .

affx:ProteinCoordinates a owl:Class ;
	rdfs:subClassOf affx:Coordinates ;
	rdfs:comment "Coordinates onto the protein sequence, possibly gapped ".

affx:spannedBy a owl:ObjectProperty ;
	owl:domain affx:ProteinSpan ;
	owl:range affx:CdsSpan ;
	owl:minCardinality "1" .

affx:ProteinSpan a owl:Class ;
	rdfs:subClassOf affx:ProteinCoordinates ;
	owl:hasProperty affx:spannedBy ;
	rdfs:comment "An ungapped region of the protein sequence " ;
	rdfs:comment "Each ProteinSpan as one or more corresponding CDS span" .

affx:CdsSpan a owl:Class ;
	rdfs:subClassOf affx:GenomicSpan ;
	owl:hasProperty affx:inFrame ;
	rdfs:comment "A CDS span is a genomic span with a translation frame" ;
	rdfs:comment "Each CDS span describes a part of the full CDS region" .

:2010106G01Rik_e1 a affx:Exon ; 
	affx:startsAt "127874660" ; 
	affx:stopsAt "127874815" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e2 a affx:Exon ; 
	affx:startsAt "127885438" ; 
	affx:stopsAt "127885599" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e3 a affx:Exon ; 
	affx:startsAt "127888634" ; 
	affx:stopsAt "127888709" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e4 a affx:Exon ; 
	affx:startsAt "127893173" ; 
	affx:stopsAt "127893276" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e5 a affx:Exon ; 
	affx:startsAt "127894062" ; 
	affx:stopsAt "127894119" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e6 a affx:Exon ; 
	affx:startsAt "127897742" ; 
	affx:stopsAt "127897817" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e7 a affx:Exon ; 
	affx:startsAt "127898331" ; 
	affx:stopsAt "127898413" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e8 a affx:Exon ; 
	affx:startsAt "127900170" ; 
	affx:stopsAt "127900272" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e9 a affx:Exon ; 
	affx:startsAt "127900849" ; 
	affx:stopsAt "127900946" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e10 a affx:Exon ; 
	affx:startsAt "127903987" ; 
	affx:stopsAt "127904139" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e11 a affx:Exon ; 
	affx:startsAt "127906277" ; 
	affx:stopsAt "127906411" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e12 a affx:Exon ; 
	affx:startsAt "127906819" ; 
	affx:stopsAt "127906909" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e13 a affx:Exon ; 
	affx:startsAt "127907348" ; 
	affx:stopsAt "127907531" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e14 a affx:Exon ; 
	affx:startsAt "127908280" ; 
	affx:stopsAt "127908400" ; 
	affx:commonToAll "1" .

:2010106G01Rik_e15 a affx:Exon ; 
	affx:startsAt "127913478" ; 
	affx:stopsAt "127913767" ; 
	affx:commonToAll "1" .

:Gene3464 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi13905053] ;
	affx:hasVariant [affx:representedBy :gi193419] ;
	affx:hasVariant [affx:representedBy :gi6753981] .

:gi13905053 a affx:Transcript ;
	affx:unigene "iMm.1548" ;
	affx:translatesTo "MITMLQDLHVNKISMSRSKSETSLPSSRSGSQEKIMNVKGKVILLMLIVSTVVVVFWEYVNRTHSYQEDNVEGRREKGRNGDRIEEPQLWDWFNPKNRPDVLTVTPWKAPIVWEGTYDTALLEKYYATQKLTVGLTVFAVGKYIEHYLEDFLESADMYFMVGHRVIFYVMIDDTSRMPVVHLNPLHSLQVFEIRSEKRWQDISMMRMKTIGEHILAHIQHEVDFLFCMDVDQVFQDNFGVETLGQLVAQLQAWWYKASPEKFTYERRELSAAYIPFGEGDFYYHAAIFGGTPTHILNLTRECFKGILQDKKHDIEAQWHDESHLNKYFLFNKPTKILSPEYCWDYQIGLPSDIKSVKVAWQTKEYNLVRNNV" ;
	affx:hasCds [affx:startsAt "35823878" ;
			affx:stopsAt "35844780" ];
	affx:hasExon [ affx:relatesToExon :Gene3464_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "35823878" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e4;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e9;
		affx:cdsType "Partial" ;
		affx:cdsStop "35844780" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e10;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e11;
		affx:cdsType "None" ] ;
	affx:tmHMMHit [  affx:commonToAll "0" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "42" ;
				affx:stopsAt "60" ;
				affx:spannedBy [ affx:startsAt "35843637" ;
					affx:stopsAt "35843691" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	.

:gi193419 a affx:Transcript ;
	affx:unigene "iMm.1548" ;
	affx:translatesTo "MITMLQDLHVNKISMSRSKSETSLPSSRSGSQEKIMNVKGKVILLMLIVSTVVVVFWEYVNRIPEVGENRWQKDWWFPSWFKNGTHSYQEDNVEGRREKGRNGDRIEEPQLWDWFNPKNRPDVLTVTPWKAPIVWEGTYDTALLEKYYATQKLTVGLTVFAVGKYIEHYLEDFLESADMYFMVGHRVIFYVMIDDTSRMPVVHLNPLHSLQVFEIRSEKRWQDISMMRMKTIGEHILAHIQHEVDFLFCMDVDQVFQDNFGVETLGQLVAQLQAWWYKASPEKFTYERRELSAAYIPFGEGDFYYHAAIFGGTPTHILNLTRECFKGILQDKKHDIEAQWHDESHLNKYFLFNKPTKILSPEYCWDYQIGLPSDIKSVKVAWQTKEYNLVRNNV" ;
	affx:hasCds [affx:startsAt "35823878" ;
			affx:stopsAt "35844780" ];
	affx:hasExon [ affx:relatesToExon :Gene3464_e3;
		affx:cdsType "Partial" ;
		affx:cdsStart "35823878" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e5;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e9;
		affx:cdsType "Partial" ;
		affx:cdsStop "35844780" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e10;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e12;
		affx:cdsType "None" ] ;
	affx:tmHMMHit [  affx:commonToAll "0" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "42" ;
				affx:stopsAt "60" ;
				affx:spannedBy [ affx:startsAt "35843637" ;
					affx:stopsAt "35843691" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	.

:gi6753981 a affx:Transcript ;
	affx:unigene "iMm.1548" ;
	affx:translatesTo "MNVKGKVILLMLIVSTVVVVFWEYVNSPEGSFLWIYHTKIPEVGENRWQKDWWFPSWFKNGTHSYQEDNVEGRREKGRNGDRIEEPQLWDWFNPKNRPDVLTVTPWKAPIVWEGTYDTALLEKYYATQKLTVGLTVFAVGKYIEHYLEDFLESADMYFMVGHRVIFYVMIDDTSRMPVVHLNPLHSLQVFEIRSEKRWQDISMMRMKTIGEHILAHIQHEVDFLFCMDVDQVFQDNFGVETLGQLVAQLQAWWYKASPEKFTYERRELSAAYIPFGEGDFYYHAAIFGGTPTHILNLTRECFKGILQDKKHDIEAQWHDESHLNKYFLFNKPTKILSPEYCWDYQIGLPSDIKSVKVAWQTKEYNLVRNNV" ;
	affx:hasCds [affx:startsAt "35823878" ;
			affx:stopsAt "35843712" ];
	affx:hasExon [ affx:relatesToExon :Gene3464_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "35823878" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e5;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e8;
		affx:cdsType "Partial" ;
		affx:cdsStop "35843712" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e9;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e10;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3464_e13;
		affx:cdsType "None" ] ;
	affx:tmHMMHit [  affx:commonToAll "0" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "27" ;
				affx:spannedBy [ affx:startsAt "35843632" ;
					affx:stopsAt "35843712" ;
					affx:inFrame "1" ] ;
				affx:spannedBy [ affx:startsAt "35837960" ;
					affx:stopsAt "35837961" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	.

:Gene3464_e1 a affx:Exon ; 
	affx:startsAt "35821948" ; 
	affx:stopsAt "35824572" ; 
	affx:commonToAll "0" .

:Gene3464_e2 a affx:Exon ; 
	affx:startsAt "35821983" ; 
	affx:stopsAt "35824572" ; 
	affx:commonToAll "0" .

:Gene3464_e3 a affx:Exon ; 
	affx:startsAt "35823847" ; 
	affx:stopsAt "35824572" ; 
	affx:commonToAll "0" .

:Gene3464_e4 a affx:Exon ; 
	affx:startsAt "35829398" ; 
	affx:stopsAt "35829536" ; 
	affx:commonToAll "1" .

:Gene3464_e5 a affx:Exon ; 
	affx:startsAt "35834779" ; 
	affx:stopsAt "35834881" ; 
	affx:commonToAll "1" .

:Gene3464_e6 a affx:Exon ; 
	affx:startsAt "35835672" ; 
	affx:stopsAt "35835738" ; 
	affx:commonToAll "0" .

:Gene3464_e7 a affx:Exon ; 
	affx:startsAt "35837925" ; 
	affx:stopsAt "35837961" ; 
	affx:commonToAll "0" .

:Gene3464_e8 a affx:Exon ; 
	affx:startsAt "35843632" ; 
	affx:stopsAt "35843721" ; 
	affx:commonToAll "1" .

:Gene3464_e9 a affx:Exon ; 
	affx:startsAt "35844684" ; 
	affx:stopsAt "35844865" ; 
	affx:commonToAll "1" .

:Gene3464_e10 a affx:Exon ; 
	affx:startsAt "35853984" ; 
	affx:stopsAt "35854103" ; 
	affx:commonToAll "1" .

:Gene3464_e11 a affx:Exon ; 
	affx:startsAt "35888190" ; 
	affx:stopsAt "35888237" ; 
	affx:commonToAll "0" .

:Gene3464_e12 a affx:Exon ; 
	affx:startsAt "35888190" ; 
	affx:stopsAt "35888262" ; 
	affx:commonToAll "0" .

:Gene3464_e13 a affx:Exon ; 
	affx:startsAt "35888190" ; 
	affx:stopsAt "35888324" ; 
	affx:commonToAll "0" .

:Gene3465 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi13096983] ;
	affx:hasVariant [affx:representedBy :gi200396] .

:gi13096983 a affx:Transcript ;
	affx:unigene "iMm.709" ;
	affx:translatesTo "MRFSCLALLPGVALLLASARLAAASDVLELTDENFESRVSDTGSAGLMLVEFFAPWCGHCKRLAPEYEAAATRLKGIVPLAKVDCTANTNTCNKYGVSGYPTLKIFRDGEEAGAYDGPRTADGIVSHLKKQAGPASVPLRTEEEFKKFISDKDASVVGFFRDLFSDGHSEFLKAASNLRDNYRFAHTNIESLVKEYDDNGEGITIFRPLHLANKFEDKTVAYTEKKMTSGKIKKFIQDSIFGLCPHMTEDNKDLIQGKDLLTAYYDVDYEKNAKGSNYWRNRVMMVAKKFLDAGHKLNFAVASRKTFSHELSDFGLESTTGEVPVVAIRTAKGEKFVMQEEFSRDGKALEQFLQEYFDGNLKRYLKSEPIPESNEGPVKVVVAENFDDIVNEEDKDVLIEFYAPWCGHCKNLEPKYKELGEKLSKDPNIVIAKMDATANDVPSPYEVKGFPTIYFSPANKKLTPKKYEGGRELNDFISYLQREATNPPIIQEEKPKKKKKAQEDL" ;
	affx:hasCds [affx:startsAt "122380236" ;
			affx:stopsAt "122403896" ];
	affx:hasExon [ affx:relatesToExon :Gene3465_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "122380236" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e6;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e8;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e9;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e10;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e11;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e12;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e13;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e14;
		affx:cdsType "Partial" ;
		affx:cdsStop "122403896" ;
		affx:frame "0"] ;
	.

:gi200396 a affx:Transcript ;
	affx:unigene "iMm.709" ;
	affx:translatesTo "MRFSCLALLPGVALLLASARLAAASDVLELTDENFESRVSDTGSAGLMLVEFFAPWCGHCKRLAPEYEAAATRLKIVPLAKVDCTANTNTCNKYGVSGYPTLKIFRDGEEAGAYDGPRTADGIVSHLKKQAGPASVPLRTEEEFKKFISDKDASVVGFFRDLFSDGHSEFLKAASNLRDNYRFAHTNIESLVKEYDDNGEGITIFRPLHLANKFEDKTVAYTEKKMTSGKIKKFIQDSIFGLCPHMTEDNKDLIQGKDLLTAYYDVDYEKNAKGSNYWRNRVMMVAKKFLDAGHKLNFAVASRKTFSHELSDFGLESTTGEVPVVAIRTAKGEKFVMQEEFSRDGKALEQFLQEYFDGNLKRYLKSEPIPESNEGPVKVVVAENFDDIVNEEDKDVLIEFYAPWCGHCKNLEPKYKELGEKLSKDPNIVIAKMDATANDVPSPYEVKGFPTIYFSPANKKLTPKKYEGGRELNDFISYLQREATNPPIIQEEKPKKKKKAQEDL" ;
	affx:hasCds [affx:startsAt "122380236" ;
			affx:stopsAt "122403896" ];
	affx:hasExon [ affx:relatesToExon :Gene3465_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "122380236" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e3;
		affx:cdsType "Partial" ;
		affx:cdsStop "122388703" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e8;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e9;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e10;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e12;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e13;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3465_e14;
		affx:cdsType "Partial" ;
		affx:cdsStop "122403896" ;
		affx:frame "1"] ;
	.

:Gene3465_e1 a affx:Exon ; 
	affx:startsAt "122380157" ; 
	affx:stopsAt "122380403" ; 
	affx:commonToAll "0" .

:Gene3465_e2 a affx:Exon ; 
	affx:startsAt "122380180" ; 
	affx:stopsAt "122380403" ; 
	affx:commonToAll "0" .

:Gene3465_e3 a affx:Exon ; 
	affx:startsAt "122388645" ; 
	affx:stopsAt "122388724" ; 
	affx:commonToAll "1" .

:Gene3465_e4 a affx:Exon ; 
	affx:startsAt "122390721" ; 
	affx:stopsAt "122390839" ; 
	affx:commonToAll "1" .

:Gene3465_e5 a affx:Exon ; 
	affx:startsAt "122392792" ; 
	affx:stopsAt "122392900" ; 
	affx:commonToAll "1" .

:Gene3465_e6 a affx:Exon ; 
	affx:startsAt "122395651" ; 
	affx:stopsAt "122395781" ; 
	affx:commonToAll "1" .

:Gene3465_e7 a affx:Exon ; 
	affx:startsAt "122397849" ; 
	affx:stopsAt "122397966" ; 
	affx:commonToAll "1" .

:Gene3465_e8 a affx:Exon ; 
	affx:startsAt "122398471" ; 
	affx:stopsAt "122398597" ; 
	affx:commonToAll "1" .

:Gene3465_e9 a affx:Exon ; 
	affx:startsAt "122399713" ; 
	affx:stopsAt "122399896" ; 
	affx:commonToAll "1" .

:Gene3465_e10 a affx:Exon ; 
	affx:startsAt "122400181" ; 
	affx:stopsAt "122400290" ; 
	affx:commonToAll "1" .

:Gene3465_e11 a affx:Exon ; 
	affx:startsAt "122400985" ; 
	affx:stopsAt "122401114" ; 
	affx:commonToAll "1" .

:Gene3465_e12 a affx:Exon ; 
	affx:startsAt "122402117" ; 
	affx:stopsAt "122402197" ; 
	affx:commonToAll "1" .

:Gene3465_e13 a affx:Exon ; 
	affx:startsAt "122402553" ; 
	affx:stopsAt "122402611" ; 
	affx:commonToAll "1" .

:Gene3465_e14 a affx:Exon ; 
	affx:startsAt "122403782" ; 
	affx:stopsAt "122404177" ; 
	affx:commonToAll "1" .

:Gja9 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi6753993] .

:gi6753993 a affx:Transcript ;
	affx:unigene "iMm.138256" ;
	affx:translatesTo "MGEWTILERLLEAAVQQHSTMIGRILLTVVVIFRILIVAIVGETVYDDEQTMFVCNTLQPGCNQACYDRAFPISHIRYWVFQIIMVCTPSLCFITYSVHQSAKQRERRYSTVFLALDRDPAESIGGPGGTGGGGSGGSKREDKKLQNAIVNGVLQNTETTSKETEPDCLEVKELTPHPSGLRTAARSKLRRQEGISRFYIIQVVFRNALEIGFLVGQYFLYGFSVPGLYECNRYPCIKEVECYVSRPTEKTVFLVFMFAVSGICVVLNLAELNHLGWRKIKLAVRGAQAKRKSVYEIRNKDLPRVSVPNFGRTQSSDSAYV" ;
	affx:hasCds [affx:startsAt "114942595" ;
			affx:stopsAt "114944701" ];
	affx:hasExon [ affx:relatesToExon :Gja9_e1;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gja9_e2;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "42" ;
				affx:spannedBy [ affx:startsAt "114944630" ;
					affx:stopsAt "114944701" ;
					affx:inFrame "1" ] ;
				affx:spannedBy [ affx:startsAt "114943435" ;
					affx:stopsAt "114943490" ;
					affx:inFrame "1" ] ;
			] ;
		] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "3" ;
		affx:containsMotif [ affx:startsAt "76" ;
				affx:stopsAt "98" ;
				affx:spannedBy [ affx:startsAt "114943267" ;
					affx:stopsAt "114943333" ;
					affx:inFrame "1" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "198" ;
				affx:stopsAt "220" ;
				affx:spannedBy [ affx:startsAt "114942901" ;
					affx:stopsAt "114942967" ;
					affx:inFrame "1" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "253" ;
				affx:stopsAt "275" ;
				affx:spannedBy [ affx:startsAt "114942736" ;
					affx:stopsAt "114942802" ;
					affx:inFrame "1" ] ;
			] ;
		] ;
	.

:Gja9_e1 a affx:Exon ; 
	affx:startsAt "114942595" ; 
	affx:stopsAt "114943490" ; 
	affx:commonToAll "1" .

:Gja9_e2 a affx:Exon ; 
	affx:startsAt "114944630" ; 
	affx:stopsAt "114944701" ; 
	affx:commonToAll "1" .

:Gene3467 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi15079235] ;
	affx:hasVariant [affx:representedBy :gi459889] .

:gi15079235 a affx:Transcript ;
	affx:unigene "iMm.4962" ;
	affx:translatesTo "MGAVLGVFSLASWVPCLCSGASCLLCSCCPISKNSTVTRLIYAFILFLGTIVSCIMMTEGIQTQLKKIPGFCEGGFQIKMVDTKAEKDCDVLVGFKAVYRINFAVAIFFFAFFLLMLKVKTSKDPRAAVHNGFWFFKIAAIIGIMIGSFYIPGGSFTEVWFVAGMLGASFFIIIQLVLLVDMAHSWNELWVNRMEEGNPRLWYAALLSFTSLFYILSIVFAALLYVFYTKPDDCTENKVFISLNLIFCVAVSIVSILPKVQEHQPRSGLLQSSIITLYTLYLTWSAMTNEPERSCNPSLMSIITHLTSPTVSPANSTTLAPAYAPPSQSGHFMNLDDIWGLIIFVFCLIYSSFRTSSNSQVNKLTLSGSDSVILGDTTNGANDEEDGQPRRAVDNEKEGVQYSYSFFHLMLCCASLYIMMTITSWYSPDAKFQKVSSKWLAVWFKMGSSWLCLLLYLWTLVAPLVLTGRDFS" ;
	affx:hasCds [affx:startsAt "164557423" ;
			affx:stopsAt "164577047" ];
	affx:hasExon [ affx:relatesToExon :Gene3467_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "164557423" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e6;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e9;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e12;
		affx:cdsType "Partial" ;
		affx:cdsStop "164577047" ;
		affx:frame "2"] ;
	affx:tmHMMHit [  affx:commonToAll "0" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "60" ;
				affx:spannedBy [ affx:startsAt "164577008" ;
					affx:stopsAt "164577047" ;
					affx:inFrame "2" ] ;
				affx:spannedBy [ affx:startsAt "164571169" ;
					affx:stopsAt "164571310" ;
					affx:inFrame "1" ] ;
			] ;
		] ;
	affx:tmHMMHit [  affx:commonToAll "0" ;
		affx:motifCount "9" ;
		affx:containsMotif [ affx:startsAt "97" ;
				affx:stopsAt "119" ;
				affx:spannedBy [ affx:startsAt "164568831" ;
					affx:stopsAt "164568897" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "132" ;
				affx:stopsAt "154" ;
				affx:spannedBy [ affx:startsAt "164566430" ;
					affx:stopsAt "164566496" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "159" ;
				affx:stopsAt "181" ;
				affx:spannedBy [ affx:startsAt "164564158" ;
					affx:stopsAt "164564224" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "202" ;
				affx:stopsAt "224" ;
				affx:spannedBy [ affx:startsAt "164564088" ;
					affx:stopsAt "164564095" ;
					affx:inFrame "2" ] ;
				affx:spannedBy [ affx:startsAt "164563019" ;
					affx:stopsAt "164563078" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "239" ;
				affx:stopsAt "257" ;
				affx:spannedBy [ affx:startsAt "164562920" ;
					affx:stopsAt "164562974" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "269" ;
				affx:stopsAt "288" ;
				affx:spannedBy [ affx:startsAt "164561119" ;
					affx:stopsAt "164561176" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "338" ;
				affx:stopsAt "355" ;
				affx:spannedBy [ affx:startsAt "164559854" ;
					affx:stopsAt "164559895" ;
					affx:inFrame "0" ] ;
				affx:spannedBy [ affx:startsAt "164558450" ;
					affx:stopsAt "164558460" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "404" ;
				affx:stopsAt "426" ;
				affx:spannedBy [ affx:startsAt "164558237" ;
					affx:stopsAt "164558303" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "446" ;
				affx:stopsAt "468" ;
				affx:spannedBy [ affx:startsAt "164557438" ;
					affx:stopsAt "164557504" ;
					affx:inFrame "2" ] ;
			] ;
		] ;
	.

:gi459889 a affx:Transcript ;
	affx:unigene "iMm.4962" ;
	affx:translatesTo "MVDTKAEKDCDVLVGFKAVYRINFAVAIFFFAFFLLMLKVKTSKDPRAAVHNGFWFFKIAAIIGIMIGSFYIPGGSFTEVWFVAGMLGASFFIIIQLVLLVDMAHSWNELWVNRMEEGNPRLWYAALLSFTSLFYILSIVFAALLYVFYTKPDDCTENKVFISLNLIFCVAVSIVSILPKVQEHQPRSGLLQSSIITLYTLYLTWSAMTNEPERSCNPSLMSIITHLTSPTVSPANSTTLAPAYAPPSQSGHFMNLDDIWGLIIFVFCLIYSSFRTSSNSQVNKLTLSGSDSVILGDTTNGANDEEDGQPRRAVDNEKEGVQYSYSFFHLMLCCASLYIMMTITSWYSPDAKFQKVSSKWLAVWFKMGSSWLCLLLYLWTLVAPLVLTGRDFS" ;
	affx:hasCds [affx:startsAt "164557423" ;
			affx:stopsAt "164568951" ];
	affx:hasExon [ affx:relatesToExon :Gene3467_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "164557423" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e3;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e8;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3467_e10;
		affx:cdsType "Partial" ;
		affx:cdsStop "164568951" ;
		affx:frame "1"] ;
	affx:tmHMMHit [  affx:commonToAll "0" ;
		affx:motifCount "6" ;
		affx:containsMotif [ affx:startsAt "53" ;
				affx:stopsAt "75" ;
				affx:spannedBy [ affx:startsAt "164566430" ;
					affx:stopsAt "164566496" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "123" ;
				affx:stopsAt "145" ;
				affx:spannedBy [ affx:startsAt "164564088" ;
					affx:stopsAt "164564095" ;
					affx:inFrame "1" ] ;
				affx:spannedBy [ affx:startsAt "164563019" ;
					affx:stopsAt "164563078" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "160" ;
				affx:stopsAt "178" ;
				affx:spannedBy [ affx:startsAt "164562920" ;
					affx:stopsAt "164562974" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "259" ;
				affx:stopsAt "276" ;
				affx:spannedBy [ affx:startsAt "164559854" ;
					affx:stopsAt "164559895" ;
					affx:inFrame "2" ] ;
				affx:spannedBy [ affx:startsAt "164558450" ;
					affx:stopsAt "164558460" ;
					affx:inFrame "1" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "325" ;
				affx:stopsAt "347" ;
				affx:spannedBy [ affx:startsAt "164558237" ;
					affx:stopsAt "164558303" ;
					affx:inFrame "1" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "367" ;
				affx:stopsAt "389" ;
				affx:spannedBy [ affx:startsAt "164557438" ;
					affx:stopsAt "164557504" ;
					affx:inFrame "1" ] ;
			] ;
		] ;
	.

:Gene3467_e1 a affx:Exon ; 
	affx:startsAt "164556644" ; 
	affx:stopsAt "164557562" ; 
	affx:commonToAll "0" .

:Gene3467_e2 a affx:Exon ; 
	affx:startsAt "164556653" ; 
	affx:stopsAt "164557562" ; 
	affx:commonToAll "0" .

:Gene3467_e3 a affx:Exon ; 
	affx:startsAt "164558235" ; 
	affx:stopsAt "164558460" ; 
	affx:commonToAll "1" .

:Gene3467_e4 a affx:Exon ; 
	affx:startsAt "164559854" ; 
	affx:stopsAt "164560035" ; 
	affx:commonToAll "1" .

:Gene3467_e5 a affx:Exon ; 
	affx:startsAt "164561109" ; 
	affx:stopsAt "164561200" ; 
	affx:commonToAll "1" .

:Gene3467_e6 a affx:Exon ; 
	affx:startsAt "164562908" ; 
	affx:stopsAt "164563078" ; 
	affx:commonToAll "1" .

:Gene3467_e7 a affx:Exon ; 
	affx:startsAt "164564088" ; 
	affx:stopsAt "164564226" ; 
	affx:commonToAll "1" .

:Gene3467_e8 a affx:Exon ; 
	affx:startsAt "164566417" ; 
	affx:stopsAt "164566497" ; 
	affx:commonToAll "1" .

:Gene3467_e9 a affx:Exon ; 
	affx:startsAt "164568793" ; 
	affx:stopsAt "164568987" ; 
	affx:commonToAll "0" .

:Gene3467_e10 a affx:Exon ; 
	affx:startsAt "164568793" ; 
	affx:stopsAt "164568989" ; 
	affx:commonToAll "0" .

:Gene3467_e11 a affx:Exon ; 
	affx:startsAt "164571148" ; 
	affx:stopsAt "164571310" ; 
	affx:commonToAll "0" .

:Gene3467_e12 a affx:Exon ; 
	affx:startsAt "164577008" ; 
	affx:stopsAt "164577110" ; 
	affx:commonToAll "0" .

:Gnas a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi11527391] ;
	affx:hasVariant [affx:representedBy :gi4262550] ;
	affx:hasVariant [affx:representedBy :gi6754013] ;
	affx:hasVariant [affx:representedBy :gi6754015] .

:gi11527391 a affx:Transcript ;
	affx:unigene "iMm.197522" ;
	affx:translatesTo "MDRRSRAQQWRRARHNYNDLCPPIGRRAATALLWLSCSIALLRALASSNARAQQRAAQRRSFLNAHHRSAAAAAAAQVLPESSESESDHEHEEVEPELARPECLEYDQDDYETETDSETEPESDIESETEIETEPETEPETEPETEPEDERGPRGATFNQSLTQRLHALKLQSADASPRRAQPTTQEPESASEGEEPQRGPLDQDPRDPEEEPEERKEENRQPRRCKTRRPARRRDQSPESPPRKGPIPIRRH" ;
	affx:hasCds [affx:startsAt "175526944" ;
			affx:stopsAt "175527706" ];
	affx:hasExon [ affx:relatesToExon :Gnas_e2;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e3;
		affx:cdsType "Partial" ;
		affx:cdsStart "175526944" ;
		affx:cdsStop "175527706" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e6;
		affx:cdsType "None" ] ;
	.

:gi4262550 a affx:Transcript ;
	affx:unigene "iMm.197522" ;
	affx:translatesTo "MEGSPTTATAVEGKVPSPERGDGSSTQPEAMDAKPAPAAQAVSTGSDAGAPTDSAMLTDSQSDAGEDGTAPGTPSDLQSDPEELEEAPAVRADPDGGAAPVAPATPAESESEGSRDPAAEPASEAVPATTAESASGAAPVTQVEPAAAAVSATLAEPAARAAPITPKEPTTRAVPSARAHPAAGAVPGAPAMSASARAAAARAAYAGPLVWGARSLSATPAARASLPARAAAAARAASAARAVAAGRSASAAPSRAHLRPPSPEIQVADPPTPRPPPRPTAWPDKYERGRSCCRYEASSGICEIESSSDESEEGATGCFQWLLRRNRRPGLPRSHTVGSNPVRNFFTRAFGSCFGLSECTRSRSLSPGKAKDPMEERRKQMRKEAIEMREQKRADKKRSKLIDKQLEEEKMDYMCTHRLLLLGAGESGKSTIVKQMRILHVNGFNGDSEKATKVQDIKNNLKEAIETIVAAMSNLVPPVELANPENQFRVDYILSVMNVPNFDFPPEFYEHAKALWEDEGVRACYERSNEYQLIDCAQYFLDKIDVIKQADYVPSDQDLLRCRVLTSGIFETKFQVDKVNFHMFDVGGQRDERRKWIQCFNDVTAIIFVVASSSYNMVIREDNQTNRLQEALNLFKSIWNNRWLRTISVILFLNKQDLLAEKVLAGKSKIEDYFPEFARYTTPEDATPEPGEDPRVTRAKYFIRDEFLRISTASGDGRHYCYPHFTCAVDTENIRRVFNDCRDIIQRMHLRQYELL" ;
	affx:hasCds [affx:startsAt "175541221" ;
			affx:stopsAt "175588659" ];
	affx:hasExon [ affx:relatesToExon :Gnas_e4;
		affx:cdsType "Partial" ;
		affx:cdsStart "175541221" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e9;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e11;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e12;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e13;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e14;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e15;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e16;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e17;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e19;
		affx:cdsType "Partial" ;
		affx:cdsStop "175588659" ;
		affx:frame "1"] ;
	.

:gi6754013 a affx:Transcript ;
	affx:unigene "iMm.197522" ;
	affx:translatesTo "MGCLGNSKTEDQRNEEKAQREANKKIEKQLQKDKQVYRATHRLLLLGAGESGKSTIVKQMRILHVNGFNGEGGEEDPQAARSNSDGEKATKVQDIKNNLKEAIETIVAAMSNLVPPVELANPENQFRVDYILSVMNVPNFDFPPEFYEHAKALWEDEGVRACYERSNEYQLIDCAQYFLDKIDVIKQADYVPSDQDLLRCRVLTSGIFETKFQVDKVNFHMFDVGGQRDERRKWIQCFNDVTAIIFVVASSSYNMVIREDNQTNRLQEALNLFKSIWNNRWLRTISVILFLNKQDLLAEKVLAGKSKIEDYFPEFARYTTPEDATPEPGEDPRVTRAKYFIRDEFLRISTASGDGRHYCYPHFTCAVDTENIRRVFNDCRDIIQRMHLRQYELL" ;
	affx:hasCds [affx:startsAt "175572566" ;
			affx:stopsAt "175588659" ];
	affx:hasExon [ affx:relatesToExon :Gnas_e5;
		affx:cdsType "Partial" ;
		affx:cdsStart "175572566" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e10;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e12;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e13;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e14;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e15;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e16;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e17;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e18;
		affx:cdsType "Partial" ;
		affx:cdsStop "175588659" ;
		affx:frame "2"] ;
	.

:gi6754015 a affx:Transcript ;
	affx:unigene "iMm.197522" ;
	affx:translatesTo "MGDSVQILLVFMDKGAGESGKSTIVKQMRILHVNGFNGEGGEEDPQAARSNSDGEKATKVQDIKNNLKEAIETIVAAMSNLVPPVELANPENQFRVDYILSVMNVPNFDFPPEFYEHAKALWEDEGVRACYERSNEYQLIDCAQYFLDKIDVIKQADYVPSDQDLLRCRVLTSGIFETKFQVDKVNFHMFDVGGQRDERRKWIQCFNDVTAIIFVVASSSYNMVIREDNQTNRLQEALNLFKSIWNNRWLRTISVILFLNKQDLLAEKVLAGKSKIEDYFPEFARYTTPEDATPEPGEDPRVTRAKYFIRDEFLRISTASGDGRHYCYPHFTCAVDTENIRRVFNDCRDIIQRMHLRQYELL" ;
	affx:hasCds [affx:startsAt "175527705" ;
			affx:stopsAt "175588659" ];
	affx:hasExon [ affx:relatesToExon :Gnas_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e3;
		affx:cdsType "Partial" ;
		affx:cdsStart "175527705" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e10;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e12;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e13;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e14;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e15;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e16;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e17;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gnas_e19;
		affx:cdsType "Partial" ;
		affx:cdsStop "175588659" ;
		affx:frame "2"] ;
	.

:Gnas_e1 a affx:Exon ; 
	affx:startsAt "175526605" ; 
	affx:stopsAt "175526779" ; 
	affx:commonToAll "0" .

:Gnas_e2 a affx:Exon ; 
	affx:startsAt "175526614" ; 
	affx:stopsAt "175526779" ; 
	affx:commonToAll "0" .

:Gnas_e3 a affx:Exon ; 
	affx:startsAt "175526874" ; 
	affx:stopsAt "175527748" ; 
	affx:commonToAll "0" .

:Gnas_e4 a affx:Exon ; 
	affx:startsAt "175541200" ; 
	affx:stopsAt "175542488" ; 
	affx:commonToAll "0" .

:Gnas_e5 a affx:Exon ; 
	affx:startsAt "175572548" ; 
	affx:stopsAt "175572705" ; 
	affx:commonToAll "0" .

:Gnas_e6 a affx:Exon ; 
	affx:startsAt "175576482" ; 
	affx:stopsAt "175576554" ; 
	affx:commonToAll "0" .

:Gnas_e7 a affx:Exon ; 
	affx:startsAt "175576482" ; 
	affx:stopsAt "175576555" ; 
	affx:commonToAll "0" .

:Gnas_e8 a affx:Exon ; 
	affx:startsAt "175579017" ; 
	affx:stopsAt "175579062" ; 
	affx:commonToAll "0" .

:Gnas_e9 a affx:Exon ; 
	affx:startsAt "175583920" ; 
	affx:stopsAt "175583978" ; 
	affx:commonToAll "0" .

:Gnas_e10 a affx:Exon ; 
	affx:startsAt "175583923" ; 
	affx:stopsAt "175583978" ; 
	affx:commonToAll "0" .

:Gnas_e11 a affx:Exon ; 
	affx:startsAt "175584080" ; 
	affx:stopsAt "175584200" ; 
	affx:commonToAll "0" .

:Gnas_e12 a affx:Exon ; 
	affx:startsAt "175585470" ; 
	affx:stopsAt "175585568" ; 
	affx:commonToAll "0" .

:Gnas_e13 a affx:Exon ; 
	affx:startsAt "175587345" ; 
	affx:stopsAt "175587400" ; 
	affx:commonToAll "0" .

:Gnas_e14 a affx:Exon ; 
	affx:startsAt "175587498" ; 
	affx:stopsAt "175587572" ; 
	affx:commonToAll "0" .

:Gnas_e15 a affx:Exon ; 
	affx:startsAt "175587653" ; 
	affx:stopsAt "175587833" ; 
	affx:commonToAll "0" .

:Gnas_e16 a affx:Exon ; 
	affx:startsAt "175587919" ; 
	affx:stopsAt "175588050" ; 
	affx:commonToAll "0" .

:Gnas_e17 a affx:Exon ; 
	affx:startsAt "175588260" ; 
	affx:stopsAt "175588328" ; 
	affx:commonToAll "0" .

:Gnas_e18 a affx:Exon ; 
	affx:startsAt "175588512" ; 
	affx:stopsAt "175588845" ; 
	affx:commonToAll "0" .

:Gnas_e19 a affx:Exon ; 
	affx:startsAt "175588512" ; 
	affx:stopsAt "175589015" ; 
	affx:commonToAll "0" .

:Gad1 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi17225420] ;
	affx:hasVariant [affx:representedBy :gi6679922] .

:gi17225420 a affx:Transcript ;
	affx:unigene "iMm.16620" ;
	affx:translatesTo "MASSTPSPATSSNAGADPNTTNLRPTTYDTWCGVAHGCTRKLGLKICGFLQRTNSLEEKSRLVSAFRERQSSKNLLSCENSDQGARFRRTETDFSNLFAQDLLPAKNGEEQTAQFLLEVVDILLNYVRKTFDRSTKVLDFHHPHQLLEGMEGFNLELSDHPESLEQILVDCRDTLKYGVRTGHPRFFNQLSTGLDIIGLAGEWLTSTANTNMFTYEIAPVFVLMEQITLKKMREIVGWSNKDGDGIFSPGGAISNMYSIMAARYKYFPEVKTKGMAAVPKLVLFTSEHSHYSIKKAGAALGFGTDNVILIKCNERGKIIPADLEAKILDAKQKGYVPLYVNATAGTTVYGAFDPIQEIADICEKYNLWLHVDAAWGGGLLMSRKHRHKLSGIERANSVTWNPHKMMGVLLQCSAILVKEKGILQGCNQMCAGYLFQPDKQYDVSYDTGDKAIQCGRHVDIFKFWLMWKAKGTVGFENQINKCLELADYLYAKIKNREEFEMVFDGEPEHTNVCFWYIPQSLRGVPDSPERREKLHRVAPKIKALMMESGTTMVGYQPQGDKANFFRMVISNPAATQSDIDFLIEEIERLGQDL" ;
	affx:hasCds [affx:startsAt "71350268" ;
			affx:stopsAt "71387212" ];
	affx:hasExon [ affx:relatesToExon :Gad1_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e4;
		affx:cdsType "Partial" ;
		affx:cdsStart "71350268" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e9;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e10;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e12;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e13;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e14;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e15;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e16;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e17;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e18;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e19;
		affx:cdsType "Partial" ;
		affx:cdsStop "71387212" ;
		affx:frame "0"] ;
	.

:gi6679922 a affx:Transcript ;
	affx:unigene "iMm.16620" ;
	affx:translatesTo "MASSTPSPATSSNAGADPNTTNLRPTTYDTWCGVAHGCTRKLGLKICGFLQRTNSLEEKSRLVSAFRERQSSKNLLSCENSDQGARFRRTETDFSNLFAQDLLPAKNGEEQTAQFLLEVVDILLNYVRKTFDRSTKVLDFHHPHQLLEGMEGFNLELSDHPESLEQILVDCRDTLKYGVRTGHPRFFNQLSTGLDIIGLAGEWLTSTANTNMFTYEIAPVFVLMEQITLKKMREIVGWSNKDGDGIFSPGGAISNMYSIMAARYKYFPEVKTKGMAAVPKLVLFTSEHSHYSIKKAGAALGFGTDNVILIKCNERGKIIPADLEAKILDAKQKGYVPLYVNATAGTTVYGAFDPIQEIADICEKYNLWLHVDAAWGGGLLMSRKHRHKLSGIERANSVTWNPHKMMGVLLQCSAILVKEKGILQGCNQMCAGYLFQPDKQYDVSYDTGDKAIQCGRHVDIFKFWLMWKAKGTVGFENQINKCLELADYLYAKIKNREEFEMVFDGEPEHTNVCFWYIPQSLRGVPDSPERREKLHRVAPKIKALMMESGTTMVGYQPQGDKANFFRMVISNPAATQSDIDFLIEEIERLGQDL" ;
	affx:hasCds [affx:startsAt "71350268" ;
			affx:stopsAt "71387212" ];
	affx:hasExon [ affx:relatesToExon :Gad1_e2;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e3;
		affx:cdsType "Partial" ;
		affx:cdsStart "71350268" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e9;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e10;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e12;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e13;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e14;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e15;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e16;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e17;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e18;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gad1_e20;
		affx:cdsType "Partial" ;
		affx:cdsStop "71387212" ;
		affx:frame "0"] ;
	.

:Gad1_e1 a affx:Exon ; 
	affx:startsAt "71348650" ; 
	affx:stopsAt "71348769" ; 
	affx:commonToAll "0" .

:Gad1_e2 a affx:Exon ; 
	affx:startsAt "71350102" ; 
	affx:stopsAt "71350113" ; 
	affx:commonToAll "0" .

:Gad1_e3 a affx:Exon ; 
	affx:startsAt "71350202" ; 
	affx:stopsAt "71350347" ; 
	affx:commonToAll "0" .

:Gad1_e4 a affx:Exon ; 
	affx:startsAt "71350204" ; 
	affx:stopsAt "71350347" ; 
	affx:commonToAll "0" .

:Gad1_e5 a affx:Exon ; 
	affx:startsAt "71353622" ; 
	affx:stopsAt "71353685" ; 
	affx:commonToAll "1" .

:Gad1_e6 a affx:Exon ; 
	affx:startsAt "71359143" ; 
	affx:stopsAt "71359302" ; 
	affx:commonToAll "1" .

:Gad1_e7 a affx:Exon ; 
	affx:startsAt "71360506" ; 
	affx:stopsAt "71360749" ; 
	affx:commonToAll "1" .

:Gad1_e8 a affx:Exon ; 
	affx:startsAt "71365548" ; 
	affx:stopsAt "71365639" ; 
	affx:commonToAll "1" .

:Gad1_e9 a affx:Exon ; 
	affx:startsAt "71372271" ; 
	affx:stopsAt "71372384" ; 
	affx:commonToAll "1" .

:Gad1_e10 a affx:Exon ; 
	affx:startsAt "71373560" ; 
	affx:stopsAt "71373676" ; 
	affx:commonToAll "1" .

:Gad1_e11 a affx:Exon ; 
	affx:startsAt "71373760" ; 
	affx:stopsAt "71373840" ; 
	affx:commonToAll "1" .

:Gad1_e12 a affx:Exon ; 
	affx:startsAt "71374071" ; 
	affx:stopsAt "71374126" ; 
	affx:commonToAll "1" .

:Gad1_e13 a affx:Exon ; 
	affx:startsAt "71376211" ; 
	affx:stopsAt "71376328" ; 
	affx:commonToAll "1" .

:Gad1_e14 a affx:Exon ; 
	affx:startsAt "71377545" ; 
	affx:stopsAt "71377610" ; 
	affx:commonToAll "1" .

:Gad1_e15 a affx:Exon ; 
	affx:startsAt "71379871" ; 
	affx:stopsAt "71379950" ; 
	affx:commonToAll "1" .

:Gad1_e16 a affx:Exon ; 
	affx:startsAt "71381063" ; 
	affx:stopsAt "71381213" ; 
	affx:commonToAll "1" .

:Gad1_e17 a affx:Exon ; 
	affx:startsAt "71383601" ; 
	affx:stopsAt "71383709" ; 
	affx:commonToAll "1" .

:Gad1_e18 a affx:Exon ; 
	affx:startsAt "71386048" ; 
	affx:stopsAt "71386138" ; 
	affx:commonToAll "1" .

:Gad1_e19 a affx:Exon ; 
	affx:startsAt "71387038" ; 
	affx:stopsAt "71387297" ; 
	affx:commonToAll "0" .

:Gad1_e20 a affx:Exon ; 
	affx:startsAt "71387038" ; 
	affx:stopsAt "71388430" ; 
	affx:commonToAll "0" .

:GAD65 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi413867] .

:gi413867 a affx:Transcript ;
	affx:unigene "iMm.4784" ;
	affx:translatesTo "MASPGSGFWSFGSEDGSADPENPGTARAWCQVAQKFTGGIGNKLCALLYGDSGKPAEGGGSVTSRAATGKVACTCDQKPCNCPKGDVNYAFLHATDLLPACDGERPTLAFLQDVMNILLQYVVKSFDRSTKVIDFHYPNELLQEYNWELADQPQNLEEILTHCQTTLKYAIKTGHPRYFNQLSTGLDMVGLAADWLTSTANTNMFTYEIAPVFVLLEYVTLKKMREIIGWPGGSGDGIFSPGGAISNMYAMLIARYKMFPEVKEKGMAAVPRLIAFTSEHSHFSLKKGAAALGIGTDSVILIKCDERGKMIPSDLERRILEVKQKGFVPFLVSATAGTTVYGAFDPLLAVADICKKYKIWMHVDAAWGGGLLMSRKHKWKLSGVERANSVTWNPHKMMGVPLQCSALLVREEGLMQSCNQMHASYLFQQDKHYDLSYDTGDKALQCGRHVDVFKLWLMWRAKGTTGFEAHIDKCLELAEYLYTIIKNREGYEMVFDGKPQHTNVCFWFVPPSLRTLEDNEERMSRLSKVAPVIKARMMEYGTTMVSYQPLGDKVNFFRMVISNPAATHQDIDFLIEEIERLGQDL" ;
	affx:hasCds [affx:startsAt "22888548" ;
			affx:stopsAt "22957037" ];
	affx:hasExon [ affx:relatesToExon :GAD65_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "22888548" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e2;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e3;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e6;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e8;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e9;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e10;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e12;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e13;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e14;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e15;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :GAD65_e16;
		affx:cdsType "Partial" ;
		affx:cdsStop "22957037" ;
		affx:frame "0"] ;
	.

:GAD65_e1 a affx:Exon ; 
	affx:startsAt "22888476" ; 
	affx:stopsAt "22888624" ; 
	affx:commonToAll "1" .

:GAD65_e2 a affx:Exon ; 
	affx:startsAt "22889322" ; 
	affx:stopsAt "22889382" ; 
	affx:commonToAll "1" .

:GAD65_e3 a affx:Exon ; 
	affx:startsAt "22889575" ; 
	affx:stopsAt "22889725" ; 
	affx:commonToAll "1" .

:GAD65_e4 a affx:Exon ; 
	affx:startsAt "22890684" ; 
	affx:stopsAt "22890918" ; 
	affx:commonToAll "1" .

:GAD65_e5 a affx:Exon ; 
	affx:startsAt "22895277" ; 
	affx:stopsAt "22895368" ; 
	affx:commonToAll "1" .

:GAD65_e6 a affx:Exon ; 
	affx:startsAt "22895834" ; 
	affx:stopsAt "22895947" ; 
	affx:commonToAll "1" .

:GAD65_e7 a affx:Exon ; 
	affx:startsAt "22900816" ; 
	affx:stopsAt "22900932" ; 
	affx:commonToAll "1" .

:GAD65_e8 a affx:Exon ; 
	affx:startsAt "22916843" ; 
	affx:stopsAt "22916923" ; 
	affx:commonToAll "1" .

:GAD65_e9 a affx:Exon ; 
	affx:startsAt "22932892" ; 
	affx:stopsAt "22932947" ; 
	affx:commonToAll "1" .

:GAD65_e10 a affx:Exon ; 
	affx:startsAt "22934904" ; 
	affx:stopsAt "22935021" ; 
	affx:commonToAll "1" .

:GAD65_e11 a affx:Exon ; 
	affx:startsAt "22936358" ; 
	affx:stopsAt "22936423" ; 
	affx:commonToAll "1" .

:GAD65_e12 a affx:Exon ; 
	affx:startsAt "22940629" ; 
	affx:stopsAt "22940708" ; 
	affx:commonToAll "1" .

:GAD65_e13 a affx:Exon ; 
	affx:startsAt "22947978" ; 
	affx:stopsAt "22948128" ; 
	affx:commonToAll "1" .

:GAD65_e14 a affx:Exon ; 
	affx:startsAt "22951649" ; 
	affx:stopsAt "22951757" ; 
	affx:commonToAll "1" .

:GAD65_e15 a affx:Exon ; 
	affx:startsAt "22952070" ; 
	affx:stopsAt "22952160" ; 
	affx:commonToAll "1" .

:GAD65_e16 a affx:Exon ; 
	affx:startsAt "22956863" ; 
	affx:stopsAt "22957210" ; 
	affx:commonToAll "1" .

:Gata3 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi6679950] .

:gi6679950 a affx:Transcript ;
	affx:unigene "iMm.606" ;
	affx:translatesTo "MEVTADQPRWVSHHHPAVLNGQHPDTHHPGLGHSYMEAQYPLTEEVDVLFNIDGQGNHVPSYYGNSVRATVQRYPPTHHGSQVCRPPLLHGSLPWLDGGKALSSHHTASPWNLSPFSKTSIHHGSPGPLSVYPPASSSSLAAGHSSPHLFTFPPTPPKDVSPDPSLSTPGSAGSARQDEKECLKYQVQLPDSMKLETSHSRGSMTTLGGASSSAHHPITTYPPYVPEYSSGLFPPSSLLGGSPTGFGCKSRPKARSSTEGRECVNCGATSTPLWRRDGTGHYLCNACGLYHKMNGQNRPLIKPKRRLSAARRAGTSCANCQTTTTTLWRRNANGDPVCNACGLYYKLHNINRPLTMKKEGIQTRNRKMSSKSKKCKKVHDALEDFPKSSSFNPAALSRHMSSLSHISPFSHSSHMLTTPTPMHPPSGLSFGPHHPSSMVTAMG" ;
	affx:hasCds [affx:startsAt "9893919" ;
			affx:stopsAt "9913139" ];
	affx:hasExon [ affx:relatesToExon :Gata3_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gata3_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "9893919" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gata3_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gata3_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gata3_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gata3_e6;
		affx:cdsType "Partial" ;
		affx:cdsStop "9913139" ;
		affx:frame "0"] ;
	.

:Gata3_e1 a affx:Exon ; 
	affx:startsAt "9893319" ; 
	affx:stopsAt "9893583" ; 
	affx:commonToAll "1" .

:Gata3_e2 a affx:Exon ; 
	affx:startsAt "9893691" ; 
	affx:stopsAt "9894204" ; 
	affx:commonToAll "1" .

:Gata3_e3 a affx:Exon ; 
	affx:startsAt "9898644" ; 
	affx:stopsAt "9898770" ; 
	affx:commonToAll "1" .

:Gata3_e4 a affx:Exon ; 
	affx:startsAt "9904310" ; 
	affx:stopsAt "9904456" ; 
	affx:commonToAll "1" .

:Gata3_e5 a affx:Exon ; 
	affx:startsAt "9909938" ; 
	affx:stopsAt "9910475" ; 
	affx:commonToAll "1" .

:Gata3_e6 a affx:Exon ; 
	affx:startsAt "9912901" ; 
	affx:stopsAt "9913347" ; 
	affx:commonToAll "1" .

:Gfra4 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi9910239] .

:gi9910239 a affx:Transcript ;
	affx:unigene "iMm.35572" ;
	affx:translatesTo "MLRRAHLMDERPGQAIFLGLGSQRGSASFTDGNRCVDAAEACTADERCQQLRSEYVARCLGRAAPGGRPGPGGCVRSRCRRALRRFFARGPPALTHALLFCGCEGSACAERRRQTFAPACAFSGPGLVPPSCLEPLERCERSRLCRPRLLAFQASCAPAPGSRDRCPEEGGPRCLRVYAGLIGTVVTPNYLDNVSARVAPWCGCAASGNRREECEAFRKLFTRNPCLDGAIQAFDSLQPSVLQDQTAGCCFPRARHEWPEKSWRQKQSLFCPNAQGVLAVCTHCPGSPGPALIRNMNRGRHS" ;
	affx:hasCds [affx:startsAt "132037969" ;
			affx:stopsAt "132040476" ];
	affx:hasExon [ affx:relatesToExon :Gfra4_e1;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gfra4_e2;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gfra4_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gfra4_e4;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gfra4_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gfra4_e6;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	.

:Gfra4_e1 a affx:Exon ; 
	affx:startsAt "132037969" ; 
	affx:stopsAt "132038119" ; 
	affx:commonToAll "1" .

:Gfra4_e2 a affx:Exon ; 
	affx:startsAt "132038192" ; 
	affx:stopsAt "132038269" ; 
	affx:commonToAll "1" .

:Gfra4_e3 a affx:Exon ; 
	affx:startsAt "132038809" ; 
	affx:stopsAt "132038944" ; 
	affx:commonToAll "1" .

:Gfra4_e4 a affx:Exon ; 
	affx:startsAt "132039025" ; 
	affx:stopsAt "132039135" ; 
	affx:commonToAll "1" .

:Gfra4_e5 a affx:Exon ; 
	affx:startsAt "132039188" ; 
	affx:stopsAt "132039552" ; 
	affx:commonToAll "1" .

:Gfra4_e6 a affx:Exon ; 
	affx:startsAt "132040403" ; 
	affx:stopsAt "132040476" ; 
	affx:commonToAll "1" .

:SII-T1 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi5381258] .

:gi5381258 a affx:Transcript ;
	affx:unigene "iMm.24245" ;
	affx:translatesTo "MGKEEEIARIARRLDKMVTRKNAEGAMDLLRELKNMPITLHLLQSTRVGMSVNALRKQSSDEELIALAKSLIKSWKKLLDVSDGKSRNQGRGTPLPTSSSKDASRTTDLSCKKPDPPRTPSTPRITTFPQVPITCDAVRNKCREMLTLALQTDHDHVAVGVNCEHLSSQIEECIFLDVGNTDMKYKNRVRSRISNLKDAKNPGLRRNVLCGAITPQQIAVMTSEEMASDELKEIRKAMTKEAIREHQMARTGGTQTDLFTCNKCRKKNCTYTQVQTRSSDEPMTTYVVCNECGNRWKFC" ;
	affx:hasCds [affx:startsAt "180012838" ;
			affx:stopsAt "180020317" ];
	affx:hasExon [ affx:relatesToExon :SII-T1_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "180012838" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e2;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e8;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e9;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :SII-T1_e10;
		affx:cdsType "Partial" ;
		affx:cdsStop "180020317" ;
		affx:frame "0"] ;
	.

:SII-T1_e1 a affx:Exon ; 
	affx:startsAt "180012803" ; 
	affx:stopsAt "180012907" ; 
	affx:commonToAll "1" .

:SII-T1_e2 a affx:Exon ; 
	affx:startsAt "180015644" ; 
	affx:stopsAt "180015707" ; 
	affx:commonToAll "1" .

:SII-T1_e3 a affx:Exon ; 
	affx:startsAt "180015979" ; 
	affx:stopsAt "180016085" ; 
	affx:commonToAll "1" .

:SII-T1_e4 a affx:Exon ; 
	affx:startsAt "180016874" ; 
	affx:stopsAt "180016965" ; 
	affx:commonToAll "1" .

:SII-T1_e5 a affx:Exon ; 
	affx:startsAt "180018223" ; 
	affx:stopsAt "180018354" ; 
	affx:commonToAll "1" .

:SII-T1_e6 a affx:Exon ; 
	affx:startsAt "180018621" ; 
	affx:stopsAt "180018678" ; 
	affx:commonToAll "1" .

:SII-T1_e7 a affx:Exon ; 
	affx:startsAt "180019029" ; 
	affx:stopsAt "180019184" ; 
	affx:commonToAll "1" .

:SII-T1_e8 a affx:Exon ; 
	affx:startsAt "180019259" ; 
	affx:stopsAt "180019406" ; 
	affx:commonToAll "1" .

:SII-T1_e9 a affx:Exon ; 
	affx:startsAt "180020045" ; 
	affx:stopsAt "180020117" ; 
	affx:commonToAll "1" .

:SII-T1_e10 a affx:Exon ; 
	affx:startsAt "180020308" ; 
	affx:stopsAt "180020495" ; 
	affx:commonToAll "1" .

:Gene3474 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi18606237] .

:gi18606237 a affx:Transcript ;
	affx:unigene "iMm.21109" ;
	affx:translatesTo "MVVEHPEFLKAGKEPGLQIWRVEKFDLVPVPPNLYGDFFTGDAYVILKTVQLRNGNLQYDLHYWLGNECSQDESGAAAIFTVQLDDYLNGRAVQHREVQGFESSTFSGYFKSGLKYKKGGVASGFKHVVPNEVVVQRLFQVKGRRVVRATEVPVSWDSFNNGDCFILDLGNNIYQWCGSGSNKFERLKATQVSKGIRDNERSGRAQVHVSEEGGEPEAMLQVLGPKPALPEGTEDTAKEDAANRRLAKLYKVSNGAGSMSVSLVADENPFAQGALRSEDCFILDHGRDGKIFVWKGKQANMEERKAALKTASDFISKMQYPRQTQVSVLPEGGETPLFKQFFKNWRDPDQTDGPGLGYLSSHIANVERVPFDAATLHTSTAMAAQHGMDDDGTGQKQIWRIEGSNKVPVDPATYGQFYGGDSYIILYNYRHGGRQGQIIYNWQGAQSTQDEVAASAILTAQLDEELGGTPVQSRVVQGKEPAHLMSLFGGKPMIIYKGGTSRDGGQTAPASIRLFQVRASSSGATRAVEVMPKSGALNSNDAFVLKTPSAAYLWVGAGASEAEKTGAQELLKVLRSQHVQVEEGSEPDAFWEALGGKTAYRTSPRLKDKKMDAHPPRLFACSNRIGRFVIEEVPGELMQEDLATDDVMLLDTWDQVFVWVGKDSQEEEKTEALTSAKRYIETDPANRDRRTPITVVRQGFEPPSFVGWFLGWDDNYWSVDPLDRALAELAA" ;
	affx:hasCds [affx:startsAt "35705342" ;
			affx:stopsAt "35729139" ];
	affx:hasExon [ affx:relatesToExon :Gene3474_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "35705342" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e8;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e9;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e10;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e12;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e13;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e14;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e15;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e16;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3474_e17;
		affx:cdsType "Partial" ;
		affx:cdsStop "35729139" ;
		affx:frame "2"] ;
	.

:Gene3474_e1 a affx:Exon ; 
	affx:startsAt "35703870" ; 
	affx:stopsAt "35704030" ; 
	affx:commonToAll "1" .

:Gene3474_e2 a affx:Exon ; 
	affx:startsAt "35705333" ; 
	affx:stopsAt "35705538" ; 
	affx:commonToAll "1" .

:Gene3474_e3 a affx:Exon ; 
	affx:startsAt "35706102" ; 
	affx:stopsAt "35706257" ; 
	affx:commonToAll "1" .

:Gene3474_e4 a affx:Exon ; 
	affx:startsAt "35711762" ; 
	affx:stopsAt "35711924" ; 
	affx:commonToAll "1" .

:Gene3474_e5 a affx:Exon ; 
	affx:startsAt "35714059" ; 
	affx:stopsAt "35714209" ; 
	affx:commonToAll "1" .

:Gene3474_e6 a affx:Exon ; 
	affx:startsAt "35714950" ; 
	affx:stopsAt "35715040" ; 
	affx:commonToAll "1" .

:Gene3474_e7 a affx:Exon ; 
	affx:startsAt "35716407" ; 
	affx:stopsAt "35716540" ; 
	affx:commonToAll "1" .

:Gene3474_e8 a affx:Exon ; 
	affx:startsAt "35717597" ; 
	affx:stopsAt "35717686" ; 
	affx:commonToAll "1" .

:Gene3474_e9 a affx:Exon ; 
	affx:startsAt "35717838" ; 
	affx:stopsAt "35718054" ; 
	affx:commonToAll "1" .

:Gene3474_e10 a affx:Exon ; 
	affx:startsAt "35720267" ; 
	affx:stopsAt "35720401" ; 
	affx:commonToAll "1" .

:Gene3474_e11 a affx:Exon ; 
	affx:startsAt "35722938" ; 
	affx:stopsAt "35723029" ; 
	affx:commonToAll "1" .

:Gene3474_e12 a affx:Exon ; 
	affx:startsAt "35723963" ; 
	affx:stopsAt "35724134" ; 
	affx:commonToAll "1" .

:Gene3474_e13 a affx:Exon ; 
	affx:startsAt "35724640" ; 
	affx:stopsAt "35724815" ; 
	affx:commonToAll "1" .

:Gene3474_e14 a affx:Exon ; 
	affx:startsAt "35725736" ; 
	affx:stopsAt "35725861" ; 
	affx:commonToAll "1" .

:Gene3474_e15 a affx:Exon ; 
	affx:startsAt "35726053" ; 
	affx:stopsAt "35726131" ; 
	affx:commonToAll "1" .

:Gene3474_e16 a affx:Exon ; 
	affx:startsAt "35728018" ; 
	affx:stopsAt "35728079" ; 
	affx:commonToAll "1" .

:Gene3474_e17 a affx:Exon ; 
	affx:startsAt "35728969" ; 
	affx:stopsAt "35729365" ; 
	affx:commonToAll "1" .

:Gdf5 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi6679980] .

:gi6679980 a affx:Transcript ;
	affx:unigene "iMm.4744" ;
	affx:translatesTo "MRLPKLLTLLLWHLAWLDLELICTVLGAPDLGQRTPGAKPGLTKAEAKERPPLARNVFRPGGHIYGVGATNARAKGSSGQTQAKKDEPRKMPPRSGGPETKPGPSSQTRQAAARTVTPKGQLPGGKASSKAGSAPSSFLLKKTREPGTPREPKEPFRPPPITPHEYMLSLYRTLSDADRKGGNSSVKLEAGLANTITSFIDKGQDDRGPAVRKQRYVFDISALEKDGLLGAELRILRKKPLDVAKPAVPSSGRVAQLKLSSCPSGRQPAALLDVRSVPGLDGSGWEVFDIWKLFRNFKNSAQLCLELEAWERGRAVDLRGLGFERTARQVHEKALFLVFGRTKKRDLFFNEIKARSGQDDKTVYEYLFSQRRKRRAPLANRQGKRPSKNLKARCSRKALHVNFKDMGWDDWIIAPLEYEAFHCEGLCEFPLRSHLEPTNHAVIQTLMNSMDPESTPPTCCVPTRLSPISILFIDSANNVVYKQYEDMVVESCGCR" ;
	affx:hasCds [affx:startsAt "156772813" ;
			affx:stopsAt "156776327" ];
	affx:hasExon [ affx:relatesToExon :Gdf5_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "156772813" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gdf5_e2;
		affx:cdsType "Partial" ;
		affx:cdsStop "156776327" ;
		affx:frame "0"] ;
	.

:Gdf5_e1 a affx:Exon ; 
	affx:startsAt "156772297" ; 
	affx:stopsAt "156773688" ; 
	affx:commonToAll "1" .

:Gdf5_e2 a affx:Exon ; 
	affx:startsAt "156775714" ; 
	affx:stopsAt "156776631" ; 
	affx:commonToAll "1" .

:Gene3476 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi13277770] .

:gi13277770 a affx:Transcript ;
	affx:unigene "iMm.3629" ;
	affx:translatesTo "MLWKITDNVKYEEDCEDRHDSSSNGNPRIPHLSSPGQHLYSPAPPLSHTGVAEYQPPPYFPPPYQQLAYSQSADHYSHLGEAYAAAMNPLHQPAATGSQQQAWPGRQSQEGSSLASHHSRSASLIPHISGLEGGSVSARREVYRRSDLLLPHAHALEAGLAENLGLHEMAHPIEEVQNVDDAHLLLHDQTVIRKGPISMTKNPLGLPCQKDLVGVVMNPSEVFCSVPGRLSLLSSTSKYKVTVAEVQRRLSPPECLNASLLGGVLRRAKSKNGGRSLREKLDKIGLNLPAGRRKAAHVTLLTSLVEGEAVHLARDFAYVCEAEFPSKAVADYLTRPHLGGRNEMATRKSMLLAAQQVCKEFTDLLHQDRTPNGNNRPAQVLEPNIQNCLSHFSLITHGFGSQAICAAVSAVQNYIKEALIAIDKSYMNPGDQSPADSSKTMEKMEKHRK" ;
	affx:hasCds [affx:startsAt "173766171" ;
			affx:stopsAt "173773767" ];
	affx:hasExon [ affx:relatesToExon :Gene3476_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "173766171" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3476_e2;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3476_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3476_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3476_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3476_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3476_e7;
		affx:cdsType "Partial" ;
		affx:cdsStop "173773767" ;
		affx:frame "1"] ;
	.

:Gene3476_e1 a affx:Exon ; 
	affx:startsAt "173766091" ; 
	affx:stopsAt "173766219" ; 
	affx:commonToAll "1" .

:Gene3476_e2 a affx:Exon ; 
	affx:startsAt "173767743" ; 
	affx:stopsAt "173768226" ; 
	affx:commonToAll "1" .

:Gene3476_e3 a affx:Exon ; 
	affx:startsAt "173768332" ; 
	affx:stopsAt "173768384" ; 
	affx:commonToAll "1" .

:Gene3476_e4 a affx:Exon ; 
	affx:startsAt "173769752" ; 
	affx:stopsAt "173769969" ; 
	affx:commonToAll "1" .

:Gene3476_e5 a affx:Exon ; 
	affx:startsAt "173770377" ; 
	affx:stopsAt "173770496" ; 
	affx:commonToAll "1" .

:Gene3476_e6 a affx:Exon ; 
	affx:startsAt "173772400" ; 
	affx:stopsAt "173772545" ; 
	affx:commonToAll "1" .

:Gene3476_e7 a affx:Exon ; 
	affx:startsAt "173773481" ; 
	affx:stopsAt "173774226" ; 
	affx:commonToAll "1" .

:Gfi1b a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi6679990] .

:gi6679990 a affx:Transcript ;
	affx:unigene "iMm.10804" ;
	affx:translatesTo "MPRSFLVKSKKAHTYHQPRAQGDELVWPPAVIPVAKEHSQSASPLLSTPLPSQTLDWNTIKQEREMLLNQSLPKMASAPEGPLVTPQPQDGESPLSESPPFYKPSFSWDTLASSYSHSYTQTPSTMQSAFLERSVRLYGSPLVPSTESPLDFRLRYSPGMDTYHCVKCNKVFSTPHGLEVHVRRSHSGTRPFACDVCGKTFGHAVSLEQHTHVHSQERSFECRMCGKAFKRSSTLSTHLLIHSDTRPYPCQFCGKRFHQKSDMKKHTYIHTGEKPHKCQVCGKAFSQSSNLITHSRKHTGFKPFSCELCTKGFQRKVDLRRHRESQHNLK" ;
	affx:hasCds [affx:startsAt "28946101" ;
			affx:stopsAt "28951554" ];
	affx:hasExon [ affx:relatesToExon :Gfi1b_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "28946101" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gfi1b_e2;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gfi1b_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gfi1b_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gfi1b_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gfi1b_e6;
		affx:cdsType "Partial" ;
		affx:cdsStop "28951554" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gfi1b_e7;
		affx:cdsType "None" ] ;
	.

:Gfi1b_e1 a affx:Exon ; 
	affx:startsAt "28945533" ; 
	affx:stopsAt "28946280" ; 
	affx:commonToAll "1" .

:Gfi1b_e2 a affx:Exon ; 
	affx:startsAt "28947495" ; 
	affx:stopsAt "28947661" ; 
	affx:commonToAll "1" .

:Gfi1b_e3 a affx:Exon ; 
	affx:startsAt "28948857" ; 
	affx:stopsAt "28948995" ; 
	affx:commonToAll "1" .

:Gfi1b_e4 a affx:Exon ; 
	affx:startsAt "28949753" ; 
	affx:stopsAt "28950025" ; 
	affx:commonToAll "1" .

:Gfi1b_e5 a affx:Exon ; 
	affx:startsAt "28950932" ; 
	affx:stopsAt "28951070" ; 
	affx:commonToAll "1" .

:Gfi1b_e6 a affx:Exon ; 
	affx:startsAt "28951454" ; 
	affx:stopsAt "28951571" ; 
	affx:commonToAll "1" .

:Gfi1b_e7 a affx:Exon ; 
	affx:startsAt "28958028" ; 
	affx:stopsAt "28958122" ; 
	affx:commonToAll "1" .

:Gene3478 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi1098568] .

:gi1098568 a affx:Transcript ;
	affx:unigene "iMm.1098" ;
	affx:translatesTo "MKQILGVIDKKLRNLEKKKGKLDDYQERMNKGERLNQDQLDAVSKYQEVTNNLEFAKELQRSFMALSQDIQKTIKKTARREQLMREEAEQKRLKTVLELQYVLDKLGDDDVRTDLKQGLSGVPILSEEELSLLDEFYKLVDPERDMSLRLNEQYEHASIHLWDLLEGKEKPVCGTTYKALKEIVERVFQSNYFDSTHNHQNGLCEEEEAASAPTVEDQVAEAEPEPAEEYTEQSEVESTEYVNRQFMAETQFSSGEKEQVDEWTVETVEVVNSLQQQPQAASPSVPEPHSLTPVAQSDPLVRRQRVQDLMAQMQGPYNFIQDSMLDFENQTLDPAIVSAQPMNPTQNMDMPQLVCPQVHSESRLAQSNQVPVQPEATQVPLVSSTSEGYTASQPLYQPSHATEQRPQKEPMDQIQATISLNTDQTTASSSLPAASQPQVFQAGTSKPLHSSGINVNAAPFQSMQTVFNMNAPVPPANEPETLKQQSQYQATYNQSFSSQPHQVEQTELQQDQLQTVVGTYHGSQDQPHQVPGNHQQPPQQNTGFPRSSQPYYNSRGVSRGGSRGARGLMNGYRGPANGFRGGYDGYRPSFSNTPNSGYSQSQFTAPRDYSGYQRDGYQQNFKRGSGQSGPRGAPRGRGGPPRPNRGMPQMNTQQVN" ;
	affx:hasCds [affx:startsAt "104647365" ;
			affx:stopsAt "104677426" ];
	affx:hasExon [ affx:relatesToExon :Gene3478_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "104647365" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e2;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e4;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e8;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e9;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e10;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e12;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e13;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e14;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e15;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e16;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e17;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3478_e18;
		affx:cdsType "Partial" ;
		affx:cdsStop "104677426" ;
		affx:frame "2"] ;
	.

:Gene3478_e1 a affx:Exon ; 
	affx:startsAt "104645591" ; 
	affx:stopsAt "104647430" ; 
	affx:commonToAll "1" .

:Gene3478_e2 a affx:Exon ; 
	affx:startsAt "104648972" ; 
	affx:stopsAt "104649036" ; 
	affx:commonToAll "1" .

:Gene3478_e3 a affx:Exon ; 
	affx:startsAt "104649369" ; 
	affx:stopsAt "104649470" ; 
	affx:commonToAll "1" .

:Gene3478_e4 a affx:Exon ; 
	affx:startsAt "104650001" ; 
	affx:stopsAt "104650196" ; 
	affx:commonToAll "1" .

:Gene3478_e5 a affx:Exon ; 
	affx:startsAt "104652263" ; 
	affx:stopsAt "104652414" ; 
	affx:commonToAll "1" .

:Gene3478_e6 a affx:Exon ; 
	affx:startsAt "104653235" ; 
	affx:stopsAt "104653385" ; 
	affx:commonToAll "1" .

:Gene3478_e7 a affx:Exon ; 
	affx:startsAt "104653540" ; 
	affx:stopsAt "104653651" ; 
	affx:commonToAll "1" .

:Gene3478_e8 a affx:Exon ; 
	affx:startsAt "104654300" ; 
	affx:stopsAt "104654362" ; 
	affx:commonToAll "1" .

:Gene3478_e9 a affx:Exon ; 
	affx:startsAt "104655983" ; 
	affx:stopsAt "104656092" ; 
	affx:commonToAll "1" .

:Gene3478_e10 a affx:Exon ; 
	affx:startsAt "104656176" ; 
	affx:stopsAt "104656332" ; 
	affx:commonToAll "1" .

:Gene3478_e11 a affx:Exon ; 
	affx:startsAt "104656500" ; 
	affx:stopsAt "104656587" ; 
	affx:commonToAll "1" .

:Gene3478_e12 a affx:Exon ; 
	affx:startsAt "104656671" ; 
	affx:stopsAt "104656724" ; 
	affx:commonToAll "1" .

:Gene3478_e13 a affx:Exon ; 
	affx:startsAt "104658529" ; 
	affx:stopsAt "104658667" ; 
	affx:commonToAll "1" .

:Gene3478_e14 a affx:Exon ; 
	affx:startsAt "104659730" ; 
	affx:stopsAt "104659813" ; 
	affx:commonToAll "1" .

:Gene3478_e15 a affx:Exon ; 
	affx:startsAt "104659899" ; 
	affx:stopsAt "104660138" ; 
	affx:commonToAll "1" .

:Gene3478_e16 a affx:Exon ; 
	affx:startsAt "104663522" ; 
	affx:stopsAt "104663609" ; 
	affx:commonToAll "1" .

:Gene3478_e17 a affx:Exon ; 
	affx:startsAt "104663709" ; 
	affx:stopsAt "104663772" ; 
	affx:commonToAll "1" .

:Gene3478_e18 a affx:Exon ; 
	affx:startsAt "104677369" ; 
	affx:stopsAt "104677693" ; 
	affx:commonToAll "1" .

:G6pc-rs a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi10946643] .

:gi10946643 a affx:Transcript ;
	affx:unigene "iMm.140768" ;
	affx:translatesTo "MDFLHRSGVLIIHHLQEDYRTYYGFLNFMSNVGDPRNIFSIYFPLWFQLNQNVGTKMIWVAVIGDWFNLIFKWILFGHRPYWWIQETEIYPNHSSPCLEQFPTTCETGPGSPSGHAMGSSCVWYVMVTAALSYTISRMEESSVTLHRLTWSFLWSVFWLIQISVCISRVFIATHFPHQVILGVIGGMLVAEAFEHTPGVHMASLSVYLKTNVFLFLFALGFYLLLRLFGIDLLWSVPIAKKWCANPDWIHIDSTPFAGLVRNLGVLFGLGFAINSEMFLRSCQGENGTKPSFRLLCALTSLTTMQLYRFIKIPTHAEPLFYLLSFCKSASIPLMVVALIPYCVHMLMRPGDKKTK" ;
	affx:hasCds [affx:startsAt "69990541" ;
			affx:stopsAt "69997588" ];
	affx:hasExon [ affx:relatesToExon :G6pc-rs_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "69990541" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :G6pc-rs_e2;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :G6pc-rs_e3;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :G6pc-rs_e4;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :G6pc-rs_e5;
		affx:cdsType "Partial" ;
		affx:cdsStop "69997588" ;
		affx:frame "0"] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "6" ;
		affx:containsMotif [ affx:startsAt "57" ;
				affx:stopsAt "76" ;
				affx:spannedBy [ affx:startsAt "69990712" ;
					affx:stopsAt "69990759" ;
					affx:inFrame "0" ] ;
				affx:spannedBy [ affx:startsAt "69991291" ;
					affx:stopsAt "69991301" ;
					affx:inFrame "2" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "150" ;
				affx:stopsAt "172" ;
				affx:spannedBy [ affx:startsAt "69996330" ;
					affx:stopsAt "69996396" ;
					affx:inFrame "1" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "177" ;
				affx:stopsAt "199" ;
				affx:spannedBy [ affx:startsAt "69996411" ;
					affx:stopsAt "69996436" ;
					affx:inFrame "1" ] ;
				affx:spannedBy [ affx:startsAt "69997076" ;
					affx:stopsAt "69997117" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "212" ;
				affx:stopsAt "234" ;
				affx:spannedBy [ affx:startsAt "69997156" ;
					affx:stopsAt "69997222" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "254" ;
				affx:stopsAt "273" ;
				affx:spannedBy [ affx:startsAt "69997282" ;
					affx:stopsAt "69997339" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "319" ;
				affx:stopsAt "341" ;
				affx:spannedBy [ affx:startsAt "69997477" ;
					affx:stopsAt "69997543" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	.

:G6pc-rs_e1 a affx:Exon ; 
	affx:startsAt "69990479" ; 
	affx:stopsAt "69990759" ; 
	affx:commonToAll "1" .

:G6pc-rs_e2 a affx:Exon ; 
	affx:startsAt "69991291" ; 
	affx:stopsAt "69991401" ; 
	affx:commonToAll "1" .

:G6pc-rs_e3 a affx:Exon ; 
	affx:startsAt "69993440" ; 
	affx:stopsAt "69993552" ; 
	affx:commonToAll "1" .

:G6pc-rs_e4 a affx:Exon ; 
	affx:startsAt "69996320" ; 
	affx:stopsAt "69996436" ; 
	affx:commonToAll "1" .

:G6pc-rs_e5 a affx:Exon ; 
	affx:startsAt "69997076" ; 
	affx:stopsAt "69998359" ; 
	affx:commonToAll "1" .

:Gatm a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi13385453] .

:gi13385453 a affx:Transcript ;
	affx:unigene "iMm.29975" ;
	affx:translatesTo "MLRVRCLRGGSRGAEAVHYIGSRLGGSLTGWVQRTFQSTQAATASSRNSCAAEDKATHPLPKDCPVSSYNEWDPLEEVIVGRAENACVPPFTVEVKANTYEKYWPFYQKNGGLYFPKDHLKKAVAEVEEMCNILSMEGVTVRRPDPIDWSLKYKTPDFESTGLYSAMPRDILMVVGNEIIEAPMAWRSRFFEYRAYRSIIKDYFHRGAKWTTAPKPTMADELYDQNYPIHSVEDRHKLAAQGKFVTTEFEPCFDAADFIRAGRDIFAQRSQVTNYLGIEWMRRHLAPDYRVHIISFKDPNPMHIDATFNIIGPGLVLSNPDRPCHQIDLFKKAGWTIVTPPTPVIPDDHPLWMSSKWLSMNVLMLDEKRVMVDANEVPIQKMFEKLGISTIKVNIRNANSLGGGFHCWTCDVRRRGTLQSYFD" ;
	affx:hasCds [affx:startsAt "123573264" ;
			affx:stopsAt "123588984" ];
	affx:hasExon [ affx:relatesToExon :Gatm_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "123573264" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e2;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e5;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e8;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gatm_e9;
		affx:cdsType "Partial" ;
		affx:cdsStop "123588984" ;
		affx:frame "2"] ;
	.

:Gatm_e1 a affx:Exon ; 
	affx:startsAt "123572643" ; 
	affx:stopsAt "123573377" ; 
	affx:commonToAll "1" .

:Gatm_e2 a affx:Exon ; 
	affx:startsAt "123575139" ; 
	affx:stopsAt "123575256" ; 
	affx:commonToAll "1" .

:Gatm_e3 a affx:Exon ; 
	affx:startsAt "123575904" ; 
	affx:stopsAt "123575968" ; 
	affx:commonToAll "1" .

:Gatm_e4 a affx:Exon ; 
	affx:startsAt "123578146" ; 
	affx:stopsAt "123578311" ; 
	affx:commonToAll "1" .

:Gatm_e5 a affx:Exon ; 
	affx:startsAt "123578459" ; 
	affx:stopsAt "123578597" ; 
	affx:commonToAll "1" .

:Gatm_e6 a affx:Exon ; 
	affx:startsAt "123580272" ; 
	affx:stopsAt "123580463" ; 
	affx:commonToAll "1" .

:Gatm_e7 a affx:Exon ; 
	affx:startsAt "123581349" ; 
	affx:stopsAt "123581545" ; 
	affx:commonToAll "1" .

:Gatm_e8 a affx:Exon ; 
	affx:startsAt "123587436" ; 
	affx:stopsAt "123587655" ; 
	affx:commonToAll "1" .

:Gatm_e9 a affx:Exon ; 
	affx:startsAt "123588915" ; 
	affx:stopsAt "123589045" ; 
	affx:commonToAll "1" .

:Gene3481 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi1841755] .

:gi1841755 a affx:Transcript ;
	affx:unigene "iMm.2527" ;
	affx:translatesTo "MYQSLALAQSPGQGTYADSGAFLHSSGTGSPVFVAPTRMPSMLPYLPSCEPGSQAPALAAHSSWTQAVAADSSAFGSGSPHPPAAHPPGATTFPFAHSPPGSGSGGSAGVRDGGAFQGALLAREQYPTPLGRPMGASYPTTYPAYMSSDVAPSWTSGAFDSSILHGLQARPGGLPGRRTSFVPDFLEEFPGEGRECVNCGALSTPLWRRDGTGHYLCNACGLYHKMNGVNRPLVRPQKRLSSSRRSGLCCSNCHTATTTLWRRNSEGEPVCNACGLYMKLHGVPRPLAMKKESIQTRKRKPKNPAKIKGSSGSTANTTASSPTLLNSESSATTLKAESSLASPVCAGPTITSQASSPADESLASSHLEFKFEPEDFAFTSSSMSPQAGLSGVLRQETWCALALA" ;
	affx:hasCds [affx:startsAt "178652226" ;
			affx:stopsAt "178659731" ];
	affx:hasExon [ affx:relatesToExon :Gene3481_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "178652226" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3481_e2;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3481_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3481_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3481_e5;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3481_e6;
		affx:cdsType "Partial" ;
		affx:cdsStop "178659731" ;
		affx:frame "0"] ;
	.

:Gene3481_e1 a affx:Exon ; 
	affx:startsAt "178650494" ; 
	affx:stopsAt "178652382" ; 
	affx:commonToAll "1" .

:Gene3481_e2 a affx:Exon ; 
	affx:startsAt "178652716" ; 
	affx:stopsAt "178652841" ; 
	affx:commonToAll "1" .

:Gene3481_e3 a affx:Exon ; 
	affx:startsAt "178653121" ; 
	affx:stopsAt "178653209" ; 
	affx:commonToAll "1" .

:Gene3481_e4 a affx:Exon ; 
	affx:startsAt "178653668" ; 
	affx:stopsAt "178653794" ; 
	affx:commonToAll "1" .

:Gene3481_e5 a affx:Exon ; 
	affx:startsAt "178657657" ; 
	affx:stopsAt "178657833" ; 
	affx:commonToAll "1" .

:Gene3481_e6 a affx:Exon ; 
	affx:startsAt "178659187" ; 
	affx:stopsAt "178660035" ; 
	affx:commonToAll "1" .

:Fut7 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi7305072] .

:gi7305072 a affx:Transcript ;
	affx:unigene "iMm.1203" ;
	affx:translatesTo "MNCIGYHPTRRLRAWGGLAGGATFMVIWFFWLWGSAPGSAPVPQSTLTILIWHWPFTNRPPELPGDTCTRYGMASCRLSANRSLLASADAVVFHHRELQTRQSLLPLDQRPHGQPWVWASMESPSNTHGLHRFRGIFNWVLSYRRDSDIFVPYGRLEPLSGPTSPLPAKSRMAAWVISNFQERQQRAKLYRQLAPHLQVDVFGRASGRPLCANCLLPTLARYRFYLAFENSQHRDYITEKFWRNALAAGAVPVALGPPRATYEAFVPPDAFVHVDDFSSARELAVFLVSMNESRYRGFFAWRDRLRVRLLGDWRERFCTICARYPYLPRSQVYEDLESWFQA" ;
	affx:hasCds [affx:startsAt "25705252" ;
			affx:stopsAt "25706388" ];
	affx:hasExon [ affx:relatesToExon :Fut7_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Fut7_e2;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Fut7_e3;
		affx:cdsType "Partial" ;
		affx:cdsStart "25705252" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Fut7_e4;
		affx:cdsType "Partial" ;
		affx:cdsStop "25706388" ;
		affx:frame "0"] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "38" ;
				affx:spannedBy [ affx:startsAt "25705252" ;
					affx:stopsAt "25705265" ;
					affx:inFrame "0" ] ;
				affx:spannedBy [ affx:startsAt "25705372" ;
					affx:stopsAt "25705473" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	.

:Fut7_e1 a affx:Exon ; 
	affx:startsAt "25703770" ; 
	affx:stopsAt "25703783" ; 
	affx:commonToAll "1" .

:Fut7_e2 a affx:Exon ; 
	affx:startsAt "25703975" ; 
	affx:stopsAt "25704455" ; 
	affx:commonToAll "1" .

:Fut7_e3 a affx:Exon ; 
	affx:startsAt "25705060" ; 
	affx:stopsAt "25705265" ; 
	affx:commonToAll "1" .

:Fut7_e4 a affx:Exon ; 
	affx:startsAt "25705372" ; 
	affx:stopsAt "25706859" ; 
	affx:commonToAll "1" .

:NCS-1 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi4103056] .

:gi4103056 a affx:Transcript ;
	affx:unigene "iMm.41189" ;
	affx:translatesTo "MGKSNSKLKPEVVEELTRKTYFTEKEVQQWYKGFIKDCPSGQLDAAGFQKIYKQFFPFGDPTKFATFVFNVFDENKDGRIEFSEFIQALSVTSRGTLDEKLRWAFKLYDLDNDGYITRNEMLDIVDAIYQMVGNTVELPEEENTPEKRVDRIFAMMDKNADGKLTLQEFQEGSKADPSIVQALSLYDGLV" ;
	affx:hasCds [affx:startsAt "31588512" ;
			affx:stopsAt "31630412" ];
	affx:hasExon [ affx:relatesToExon :NCS-1_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "31588512" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :NCS-1_e2;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :NCS-1_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :NCS-1_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :NCS-1_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :NCS-1_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :NCS-1_e7;
		affx:cdsType "Partial" ;
		affx:cdsStop "31630412" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :NCS-1_e8;
		affx:cdsType "None" ] ;
	.

:NCS-1_e1 a affx:Exon ; 
	affx:startsAt "31588509" ; 
	affx:stopsAt "31588576" ; 
	affx:commonToAll "1" .

:NCS-1_e2 a affx:Exon ; 
	affx:startsAt "31612943" ; 
	affx:stopsAt "31612968" ; 
	affx:commonToAll "1" .

:NCS-1_e3 a affx:Exon ; 
	affx:startsAt "31623692" ; 
	affx:stopsAt "31623831" ; 
	affx:commonToAll "1" .

:NCS-1_e4 a affx:Exon ; 
	affx:startsAt "31625335" ; 
	affx:stopsAt "31625414" ; 
	affx:commonToAll "1" .

:NCS-1_e5 a affx:Exon ; 
	affx:startsAt "31627173" ; 
	affx:stopsAt "31627262" ; 
	affx:commonToAll "1" .

:NCS-1_e6 a affx:Exon ; 
	affx:startsAt "31627688" ; 
	affx:stopsAt "31627766" ; 
	affx:commonToAll "1" .

:NCS-1_e7 a affx:Exon ; 
	affx:startsAt "31630313" ; 
	affx:stopsAt "31630430" ; 
	affx:commonToAll "1" .

:NCS-1_e8 a affx:Exon ; 
	affx:startsAt "31635310" ; 
	affx:stopsAt "31635414" ; 
	affx:commonToAll "1" .

:Grb14 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi7262856] .

:gi7262856 a affx:Transcript ;
	affx:unigene "iMm.33806" ;
	affx:translatesTo "MTTSLQDGQSAAGRAGAQDSPLAVQVCRVAQGKGDAQDPAQVPGLHALSPASDATLRGAIDRRKMKDLDVLEKPPIPNPFPELCCSPLTSVLSAGLFPRANSRKKQVIKVYSEDETSRALEVPSDITARDVCQLLILKNHYVDDNSWTLFEHLSHIGLERTVEDHELPTEVLSHWGVEEDNKLYLRKNYAKYEFFKNPMYFFPEHMVSFAAEMNGDRSPTQILQVFLSSSTYPEIHGFLHAKEQGKKSWKKAYFFLRRSGLYFSTKGTSKEPRHLQLFSEFSTSHVYMSLAGKKKHGAPTPYGFCLKPNKAGGPRDLKMLCAEEEQSRTCWVTAIRLLKDGMQLYQNYMHPYQGRSACNSQSMSPMRSVSENSLVAMDFSGEKSRVIDNPTEALSVAVEEGLAWRKKGCLRLGNHGSPSAPSQSSAVNMALHRSQPWFHHRISRDEAQRLIIRQGPVDGVFLVRDSQSNPRTFVLSMSHGQKIKHYQIIPVEDDGELFHTLDDGHTKFTDLIQLVEFYQLNRGVLPCKLKHYCARMAV" ;
	affx:hasCds [affx:startsAt "65663482" ;
			affx:stopsAt "65773578" ];
	affx:hasExon [ affx:relatesToExon :Grb14_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "65663482" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e2;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e6;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e8;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e9;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e10;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e11;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e12;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e13;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Grb14_e14;
		affx:cdsType "Partial" ;
		affx:cdsStop "65773578" ;
		affx:frame "1"] ;
	.

:Grb14_e1 a affx:Exon ; 
	affx:startsAt "65663253" ; 
	affx:stopsAt "65663629" ; 
	affx:commonToAll "1" .

:Grb14_e2 a affx:Exon ; 
	affx:startsAt "65665491" ; 
	affx:stopsAt "65665585" ; 
	affx:commonToAll "1" .

:Grb14_e3 a affx:Exon ; 
	affx:startsAt "65667604" ; 
	affx:stopsAt "65667692" ; 
	affx:commonToAll "1" .

:Grb14_e4 a affx:Exon ; 
	affx:startsAt "65667810" ; 
	affx:stopsAt "65667883" ; 
	affx:commonToAll "1" .

:Grb14_e5 a affx:Exon ; 
	affx:startsAt "65667974" ; 
	affx:stopsAt "65668091" ; 
	affx:commonToAll "1" .

:Grb14_e6 a affx:Exon ; 
	affx:startsAt "65674312" ; 
	affx:stopsAt "65674393" ; 
	affx:commonToAll "1" .

:Grb14_e7 a affx:Exon ; 
	affx:startsAt "65680676" ; 
	affx:stopsAt "65680772" ; 
	affx:commonToAll "1" .

:Grb14_e8 a affx:Exon ; 
	affx:startsAt "65680962" ; 
	affx:stopsAt "65681073" ; 
	affx:commonToAll "1" .

:Grb14_e9 a affx:Exon ; 
	affx:startsAt "65683996" ; 
	affx:stopsAt "65684134" ; 
	affx:commonToAll "1" .

:Grb14_e10 a affx:Exon ; 
	affx:startsAt "65687193" ; 
	affx:stopsAt "65687268" ; 
	affx:commonToAll "1" .

:Grb14_e11 a affx:Exon ; 
	affx:startsAt "65689145" ; 
	affx:stopsAt "65689267" ; 
	affx:commonToAll "1" .

:Grb14_e12 a affx:Exon ; 
	affx:startsAt "65704393" ; 
	affx:stopsAt "65704550" ; 
	affx:commonToAll "1" .

:Grb14_e13 a affx:Exon ; 
	affx:startsAt "65772020" ; 
	affx:stopsAt "65772153" ; 
	affx:commonToAll "1" .

:Grb14_e14 a affx:Exon ; 
	affx:startsAt "65773393" ; 
	affx:stopsAt "65773700" ; 
	affx:commonToAll "1" .

:Gtl-13 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi5292162] .

:gi5292162 a affx:Transcript ;
	affx:unigene "iMm.25164" ;
	affx:translatesTo "MAAAGSLERSFVELSGAERERPRHFREFTVCDIGTASAAFGTVKYSESAGGFYYVESGKLFSITRNRFIHWKTSGDTLELVEESLDLNLLNNAVRLKFQNYNILPGGVHVSETQNHVIILILTNQTVHRLILPHPSRMYRSELVTESQMQSIFTDIGKVDFRDPCNSQLIPSVPGLSPGSTTSAAWLSSDGEALFALPSASGGIFVLKLPPYDVPGIASVVELKQSSVMQRLLTGWMPTAIRGDHGPSDRALSLAVHCVEHDAFIFALCQDHKLRMWSYKDQMCLMVADMLEYVPVNKDLRLTAGTGHKLRLAYSPSMGLYLGIYMHAPKRGQFCVFQLVSTENNRYSLDHISSLFTSQETLVDFALTSTDIWALWHDAENQTIVKYINFEHNVAGQWNPVFMQPLPEEEIVIRDDQDPREMYLRSLFTPGHFINAALCKALQIFCRGTERNLDLSWNELKKEITLAVENELQGSVTEYEFSQDEFRTLQQEFWCKFYACVLQYQEALSHPLALHLNPVTNMVCLLKKGYLSFLVPSSLVDHLYLLPDEHLLTEDETTISDDADVARDVLCLIKCLRMIGESVTMDMAVLMETSCYNLQSPEKAAEHILEDLITIDVENVMEDICSKLQEIRNPVHAIGLLIREMDYETEVEMEKGFDPAQPLNVRMNLSQLYGSSTAGYIVCRGVYKIASTRFLICRDLLILQQLLTRLGDAVILGAGQLFQAQQDLLHRTAPLLLSYYLIKWASQCLATDVPVDTLESNLQHLSVLELTDSGALMANKLVSSPQTIMELFFQEVARKQIISHLFSQPKAPLSQTGLNWPEMITAVTGYLLQLLWPSNPGCLFLECLMGNCQYVQLQDYIQLLHPWCQVNVGSCRFMLGRCYLVTGEVQKALECFCQAASEVGKEEFLDRLIRSEDGEIVSTPKLQYYDKVLRLLDVVGLPELVIQLATSAITEAGDDWKSQATLRTCIFKHHLDLGHNSQAYEALTQIPDSSRQLDCLRQLVVVLCERSQLQDLVEFPYVNLHNEVVGIIESRARAVDLMTHNYYELLYAFHIYRHNYRKAGTVMFEYGMRLGREVRTLRGLEKQGNCYLAAINCLRLIRPEYAWIVQPASGAVSDRPGASPKRNHDGECTAAPTNRQIEILELEDLEKEYSLARIRLTLARHDPSVIAIAGSSSAKEMSALLVQAGLFDTAISLCQTFTLPLTPVFEGLAFKCIKLQFGGEAAQGEAWSWLATNQLSSVITTKESSATDEAWRLLSTYLERYKVQNNLYHHCVINKLLSHGVPLPNWLINSYKKVDAAELLRLYLNYDLLEEAVDLVSEYVDAVLGKGHQYFGIEFPLSATAPMVWLPYSSIDQLLQALGENSANSHNIILSQKILDKLEDYQQKVDKATRDLLYRRDL" ;
	affx:hasCds [affx:startsAt "91640532" ;
			affx:stopsAt "91696834" ];
	affx:hasExon [ affx:relatesToExon :Gtl-13_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "91640532" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e6;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e9;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e10;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e11;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e12;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e13;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e14;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e15;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e16;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e17;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e18;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e19;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e20;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e21;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e22;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e23;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e24;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e25;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e26;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e27;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e28;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e29;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e30;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e31;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e32;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e33;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e34;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e35;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e36;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gtl-13_e37;
		affx:cdsType "Partial" ;
		affx:cdsStop "91696834" ;
		affx:frame "2"] ;
	.

:Gtl-13_e1 a affx:Exon ; 
	affx:startsAt "91638338" ; 
	affx:stopsAt "91638594" ; 
	affx:commonToAll "1" .

:Gtl-13_e2 a affx:Exon ; 
	affx:startsAt "91640137" ; 
	affx:stopsAt "91640632" ; 
	affx:commonToAll "1" .

:Gtl-13_e3 a affx:Exon ; 
	affx:startsAt "91640895" ; 
	affx:stopsAt "91641007" ; 
	affx:commonToAll "1" .

:Gtl-13_e4 a affx:Exon ; 
	affx:startsAt "91645045" ; 
	affx:stopsAt "91645256" ; 
	affx:commonToAll "1" .

:Gtl-13_e5 a affx:Exon ; 
	affx:startsAt "91646096" ; 
	affx:stopsAt "91646319" ; 
	affx:commonToAll "1" .

:Gtl-13_e6 a affx:Exon ; 
	affx:startsAt "91648417" ; 
	affx:stopsAt "91648496" ; 
	affx:commonToAll "1" .

:Gtl-13_e7 a affx:Exon ; 
	affx:startsAt "91650229" ; 
	affx:stopsAt "91650344" ; 
	affx:commonToAll "1" .

:Gtl-13_e8 a affx:Exon ; 
	affx:startsAt "91651191" ; 
	affx:stopsAt "91651350" ; 
	affx:commonToAll "1" .

:Gtl-13_e9 a affx:Exon ; 
	affx:startsAt "91654177" ; 
	affx:stopsAt "91654255" ; 
	affx:commonToAll "1" .

:Gtl-13_e10 a affx:Exon ; 
	affx:startsAt "91654956" ; 
	affx:stopsAt "91655054" ; 
	affx:commonToAll "1" .

:Gtl-13_e11 a affx:Exon ; 
	affx:startsAt "91657769" ; 
	affx:stopsAt "91657854" ; 
	affx:commonToAll "1" .

:Gtl-13_e12 a affx:Exon ; 
	affx:startsAt "91658989" ; 
	affx:stopsAt "91659058" ; 
	affx:commonToAll "1" .

:Gtl-13_e13 a affx:Exon ; 
	affx:startsAt "91661245" ; 
	affx:stopsAt "91661329" ; 
	affx:commonToAll "1" .

:Gtl-13_e14 a affx:Exon ; 
	affx:startsAt "91661542" ; 
	affx:stopsAt "91661713" ; 
	affx:commonToAll "1" .

:Gtl-13_e15 a affx:Exon ; 
	affx:startsAt "91663142" ; 
	affx:stopsAt "91663242" ; 
	affx:commonToAll "1" .

:Gtl-13_e16 a affx:Exon ; 
	affx:startsAt "91663510" ; 
	affx:stopsAt "91663676" ; 
	affx:commonToAll "1" .

:Gtl-13_e17 a affx:Exon ; 
	affx:startsAt "91664188" ; 
	affx:stopsAt "91664316" ; 
	affx:commonToAll "1" .

:Gtl-13_e18 a affx:Exon ; 
	affx:startsAt "91664940" ; 
	affx:stopsAt "91665101" ; 
	affx:commonToAll "1" .

:Gtl-13_e19 a affx:Exon ; 
	affx:startsAt "91668052" ; 
	affx:stopsAt "91668186" ; 
	affx:commonToAll "1" .

:Gtl-13_e20 a affx:Exon ; 
	affx:startsAt "91669262" ; 
	affx:stopsAt "91669333" ; 
	affx:commonToAll "1" .

:Gtl-13_e21 a affx:Exon ; 
	affx:startsAt "91669952" ; 
	affx:stopsAt "91670112" ; 
	affx:commonToAll "1" .

:Gtl-13_e22 a affx:Exon ; 
	affx:startsAt "91671162" ; 
	affx:stopsAt "91671232" ; 
	affx:commonToAll "1" .

:Gtl-13_e23 a affx:Exon ; 
	affx:startsAt "91673074" ; 
	affx:stopsAt "91673173" ; 
	affx:commonToAll "1" .

:Gtl-13_e24 a affx:Exon ; 
	affx:startsAt "91674903" ; 
	affx:stopsAt "91675024" ; 
	affx:commonToAll "1" .

:Gtl-13_e25 a affx:Exon ; 
	affx:startsAt "91678824" ; 
	affx:stopsAt "91678919" ; 
	affx:commonToAll "1" .

:Gtl-13_e26 a affx:Exon ; 
	affx:startsAt "91679043" ; 
	affx:stopsAt "91679138" ; 
	affx:commonToAll "1" .

:Gtl-13_e27 a affx:Exon ; 
	affx:startsAt "91679228" ; 
	affx:stopsAt "91679325" ; 
	affx:commonToAll "1" .

:Gtl-13_e28 a affx:Exon ; 
	affx:startsAt "91679417" ; 
	affx:stopsAt "91679523" ; 
	affx:commonToAll "1" .

:Gtl-13_e29 a affx:Exon ; 
	affx:startsAt "91682419" ; 
	affx:stopsAt "91682580" ; 
	affx:commonToAll "1" .

:Gtl-13_e30 a affx:Exon ; 
	affx:startsAt "91683259" ; 
	affx:stopsAt "91683320" ; 
	affx:commonToAll "1" .

:Gtl-13_e31 a affx:Exon ; 
	affx:startsAt "91684625" ; 
	affx:stopsAt "91684736" ; 
	affx:commonToAll "1" .

:Gtl-13_e32 a affx:Exon ; 
	affx:startsAt "91684900" ; 
	affx:stopsAt "91685024" ; 
	affx:commonToAll "1" .

:Gtl-13_e33 a affx:Exon ; 
	affx:startsAt "91686927" ; 
	affx:stopsAt "91687029" ; 
	affx:commonToAll "1" .

:Gtl-13_e34 a affx:Exon ; 
	affx:startsAt "91691007" ; 
	affx:stopsAt "91691149" ; 
	affx:commonToAll "1" .

:Gtl-13_e35 a affx:Exon ; 
	affx:startsAt "91694109" ; 
	affx:stopsAt "91694235" ; 
	affx:commonToAll "1" .

:Gtl-13_e36 a affx:Exon ; 
	affx:startsAt "91694434" ; 
	affx:stopsAt "91694539" ; 
	affx:commonToAll "1" .

:Gtl-13_e37 a affx:Exon ; 
	affx:startsAt "91696744" ; 
	affx:stopsAt "91697658" ; 
	affx:commonToAll "1" .

:Sfrp3 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi1946344] .

:gi1946344 a affx:Transcript ;
	affx:unigene "iMm.3246" ;
	affx:translatesTo "MVCCGPGRMLLGWAGLLVLAALCLLQVPGAQAAACEPVRIPLCKSLPWNMTKMPNHLHHSTQANAILAMEQFEGLLGTHCSPDLLFFLCAMYAPICTIDFQHEPIKPCKSVCERARQGCEPILIKYRHSWPESLACDELPVYDRGVCISPEAIVTADGADFPMDSSTGHCRGASSERCKCKPVRATQKTYFRNNYNYVIRAKVKEVKMKCHDVTAVVEVKEILKASLVNIPRDTVNLYTTSGCLCPPLTVNEEYVIMGYEDEERSRLLLVEGSIAEKWKDRLGKKVKRWDMKLRHLGLGKTDASDSTQNQKSGRNSNPRPARS" ;
	affx:hasCds [affx:startsAt "81294785" ;
			affx:stopsAt "81328435" ];
	affx:hasExon [ affx:relatesToExon :Sfrp3_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "81294785" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Sfrp3_e2;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Sfrp3_e3;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Sfrp3_e4;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Sfrp3_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Sfrp3_e6;
		affx:cdsType "Partial" ;
		affx:cdsStop "81328435" ;
		affx:frame "0"] ;
	.

:Sfrp3_e1 a affx:Exon ; 
	affx:startsAt "81293590" ; 
	affx:stopsAt "81294896" ; 
	affx:commonToAll "1" .

:Sfrp3_e2 a affx:Exon ; 
	affx:startsAt "81299318" ; 
	affx:stopsAt "81299382" ; 
	affx:commonToAll "1" .

:Sfrp3_e3 a affx:Exon ; 
	affx:startsAt "81299737" ; 
	affx:stopsAt "81299942" ; 
	affx:commonToAll "1" .

:Sfrp3_e4 a affx:Exon ; 
	affx:startsAt "81306028" ; 
	affx:stopsAt "81306094" ; 
	affx:commonToAll "1" .

:Sfrp3_e5 a affx:Exon ; 
	affx:startsAt "81320088" ; 
	affx:stopsAt "81320136" ; 
	affx:commonToAll "1" .

:Sfrp3_e6 a affx:Exon ; 
	affx:startsAt "81327957" ; 
	affx:stopsAt "81328788" ; 
	affx:commonToAll "1" .

:Gene3487 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi13277788] .

:gi13277788 a affx:Transcript ;
	affx:unigene "iMm.7504" ;
	affx:translatesTo "MATSWGSILQDEKQLEELAKQAIDRALAEGVLLRSAQHPSSSDVVTYAPFTLFPSPVPSALLEQAYAVQMDFNILVDAVSQNPAFLEQTLSSTIKKDDYTARLFDIYKQVLKEGIAQTVFLGLNRSDYMFQCGADGSKALKQIEINTISASFGGLASRTPAVHRHVLNVLNKTKEASKILSNNPSKGLALGIAKAWELYGSANAVVLLIAQEKERNIFDQRAVENELLDRKIHVIRGRFEDVSERGSLDQNRRLFMDDQEVAVVYFRDGYMPSQYNSQNWEARLMLERSRAAKCPDIAIQLAGTKKVQQELSRVGLLEALLPGQPEAVARLRATFAGLYSLDMGEEGDQAIAEALAAPSHFVLKPQREGGGNNLYGEEMVQALEQLKDSEERASYILMEKIEPEPFRNCLLRPGSPAQVVQCISELGIFGVYVRQGTTLVMNKHVGHLLRTKAVEHADGGVAAGVAVLDNPYPV" ;
	affx:hasCds [affx:startsAt "156396035" ;
			affx:stopsAt "156419542" ];
	affx:hasExon [ affx:relatesToExon :Gene3487_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "156396035" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e2;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e5;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e9;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e10;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e11;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3487_e12;
		affx:cdsType "Partial" ;
		affx:cdsStop "156419542" ;
		affx:frame "2"] ;
	.

:Gene3487_e1 a affx:Exon ; 
	affx:startsAt "156395620" ; 
	affx:stopsAt "156396159" ; 
	affx:commonToAll "1" .

:Gene3487_e2 a affx:Exon ; 
	affx:startsAt "156397199" ; 
	affx:stopsAt "156397389" ; 
	affx:commonToAll "1" .

:Gene3487_e3 a affx:Exon ; 
	affx:startsAt "156399242" ; 
	affx:stopsAt "156399324" ; 
	affx:commonToAll "1" .

:Gene3487_e4 a affx:Exon ; 
	affx:startsAt "156400132" ; 
	affx:stopsAt "156400327" ; 
	affx:commonToAll "1" .

:Gene3487_e5 a affx:Exon ; 
	affx:startsAt "156403958" ; 
	affx:stopsAt "156404025" ; 
	affx:commonToAll "1" .

:Gene3487_e6 a affx:Exon ; 
	affx:startsAt "156405363" ; 
	affx:stopsAt "156405441" ; 
	affx:commonToAll "1" .

:Gene3487_e7 a affx:Exon ; 
	affx:startsAt "156405534" ; 
	affx:stopsAt "156405615" ; 
	affx:commonToAll "1" .

:Gene3487_e8 a affx:Exon ; 
	affx:startsAt "156409961" ; 
	affx:stopsAt "156410078" ; 
	affx:commonToAll "1" .

:Gene3487_e9 a affx:Exon ; 
	affx:startsAt "156410728" ; 
	affx:stopsAt "156410868" ; 
	affx:commonToAll "1" .

:Gene3487_e10 a affx:Exon ; 
	affx:startsAt "156411151" ; 
	affx:stopsAt "156411227" ; 
	affx:commonToAll "1" .

:Gene3487_e11 a affx:Exon ; 
	affx:startsAt "156414310" ; 
	affx:stopsAt "156414456" ; 
	affx:commonToAll "1" .

:Gene3487_e12 a affx:Exon ; 
	affx:startsAt "156419413" ; 
	affx:stopsAt "156419548" ; 
	affx:commonToAll "1" .

:Gene3488 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi1575722] .

:gi1575722 a affx:Transcript ;
	affx:unigene "iMm.38441" ;
	affx:translatesTo "MAHLKRLVKLHIKRHYHRKFWKLGAVIFFFLVVLILMQREVSVQYSKEESKMERNLKNKNKMLDFMLEAVNNIKDAMPKMQIGAPIKENIDVRERPCLQGYYTAAELKPVFDRPPQDSNAPGASGKPFKITHLSPEEQKEKERGETKHCFNAFASDRISLHRDLGPDTRPPECIEQKFKRCPPLPTTSVIIVFHNEAWSTLLRTVHSVLYSSPAILLKEIILVDDASVDDYLHEKLEEYIKQFSIVKIVRQQERKGLITARLLGAAVATAETLTFLDAHCECFYGWLEPLLARIAENYTAVVSPDIASIDLNTFEFNKPSPYGSNHNRGNFDWSLSFGWESLPDHEKQRRKDETYPIKTPTFAGGLFSISKKYFEHIGSYDEEMEIWGGENIEMSFRVWQCGGQLEIMPCSVVGHVFRSKSPHTFPKGTQVIARNQVRLAEVWMDEYKEIFYRRNTDAAKIVKQKSFGDLSKRFEIKKRLQCKNFTWYLNTIYPEAYVPDLNPVISGYIKSVGQPLCLDVGENNQGGKPLILYTCHGLGGNQYFEYSAQREIRHNIQKELCLHATQGVVQLKACVYKGHRTIAPGEQIWEIRKDQLLYNPLFKMCLSSNGEHPNLVPCDATDLLQKWIFSQND" ;
	affx:hasCds [affx:startsAt "66840111" ;
			affx:stopsAt "66863305" ];
	affx:hasExon [ affx:relatesToExon :Gene3488_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "66840111" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e2;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e3;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e8;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e9;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e10;
		affx:cdsType "Partial" ;
		affx:cdsStop "66863305" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3488_e11;
		affx:cdsType "None" ] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "43" ;
				affx:spannedBy [ affx:startsAt "66863176" ;
					affx:stopsAt "66863305" ;
					affx:inFrame "1" ] ;
			] ;
		] ;
	.

:Gene3488_e1 a affx:Exon ; 
	affx:startsAt "66839374" ; 
	affx:stopsAt "66840234" ; 
	affx:commonToAll "1" .

:Gene3488_e2 a affx:Exon ; 
	affx:startsAt "66841178" ; 
	affx:stopsAt "66841331" ; 
	affx:commonToAll "1" .

:Gene3488_e3 a affx:Exon ; 
	affx:startsAt "66846832" ; 
	affx:stopsAt "66846934" ; 
	affx:commonToAll "1" .

:Gene3488_e4 a affx:Exon ; 
	affx:startsAt "66847099" ; 
	affx:stopsAt "66847231" ; 
	affx:commonToAll "1" .

:Gene3488_e5 a affx:Exon ; 
	affx:startsAt "66849468" ; 
	affx:stopsAt "66849669" ; 
	affx:commonToAll "1" .

:Gene3488_e6 a affx:Exon ; 
	affx:startsAt "66851138" ; 
	affx:stopsAt "66851256" ; 
	affx:commonToAll "1" .

:Gene3488_e7 a affx:Exon ; 
	affx:startsAt "66851727" ; 
	affx:stopsAt "66851962" ; 
	affx:commonToAll "1" .

:Gene3488_e8 a affx:Exon ; 
	affx:startsAt "66853650" ; 
	affx:stopsAt "66853800" ; 
	affx:commonToAll "1" .

:Gene3488_e9 a affx:Exon ; 
	affx:startsAt "66858385" ; 
	affx:stopsAt "66858558" ; 
	affx:commonToAll "1" .

:Gene3488_e10 a affx:Exon ; 
	affx:startsAt "66862790" ; 
	affx:stopsAt "66863413" ; 
	affx:commonToAll "1" .

:Gene3488_e11 a affx:Exon ; 
	affx:startsAt "66880441" ; 
	affx:stopsAt "66880561" ; 
	affx:commonToAll "1" .

:Gene3489 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi18204117] .

:gi18204117 a affx:Transcript ;
	affx:unigene "iMm.3711" ;
	affx:translatesTo "MAFQKAVKGTILVGGGALATVLGLSPFAHYRRKQVSLAYVEAAGYLTEPVNREPPSREAQLMTLKNTPEFDILVIGGGATGCGCALDAVTRGLKTALVERDDFSSGTSSRSTKLIHGGVRYLQKAIMNLDVEQYRMVKEALHERANLLEIAPHLSAPLPIMLPLYKWWQLPYYWVGIKMYDLVAGSQCLKSSYVLSKSRALEHFPMLQKDKLVGAIVYYDGQHNDARMNLAIALTAARYGAATANYMEVVSLLKKTDPETGKERVSGARCKDVLTGQEFDVRAKCVINASGPFTDSVRKMDDKNVVPICQPSAGVHIVMPGYYSPENMGLLDPATSDGRVIFFLPWEKMTIAGTTDTPTDVTHHPIPSEEDINFILNEVRNYLSSDVEVRRGDVLAAWSGIRPLVTDPKSADTQSISRNHVVDISDSGLITIAGGKWTTYRSMAEDTVDAVVKFHNLNAGPSRTVGLFLQGGKDWSPTLYIRLVQDYGLESEVAQHLAKTYGDKAFEVAKMASVTGKRWPVVGVRLVSEFPYIEAEVKYGIKEYACTAVDMISRRTRLAFLNVQAAEEALPRIVELMGRELNWSELRKQEELETATRFLYYEMGYKSRTEQLTDSTEISLLPSDIDRYKKRFHKFDEDEKGFITIVDVQRVLESINVQMDENTLHEILCEVDLNKNGQVELHEFLQLMSAVQKGRVSGSRLAILMKTAEENLDRRVPIPVDRSCGGL" ;
	affx:hasCds [affx:startsAt "57798561" ;
			affx:stopsAt "57901055" ];
	affx:hasExon [ affx:relatesToExon :Gene3489_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "57798561" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e3;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e4;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e5;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e8;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e9;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e10;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e11;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e12;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e13;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e14;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e15;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e16;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3489_e17;
		affx:cdsType "Partial" ;
		affx:cdsStop "57901055" ;
		affx:frame "0"] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "23" ;
				affx:spannedBy [ affx:startsAt "57798561" ;
					affx:stopsAt "57798630" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	.

:Gene3489_e1 a affx:Exon ; 
	affx:startsAt "57768877" ; 
	affx:stopsAt "57769148" ; 
	affx:commonToAll "1" .

:Gene3489_e2 a affx:Exon ; 
	affx:startsAt "57798553" ; 
	affx:stopsAt "57798663" ; 
	affx:commonToAll "1" .

:Gene3489_e3 a affx:Exon ; 
	affx:startsAt "57823426" ; 
	affx:stopsAt "57823598" ; 
	affx:commonToAll "1" .

:Gene3489_e4 a affx:Exon ; 
	affx:startsAt "57837329" ; 
	affx:stopsAt "57837454" ; 
	affx:commonToAll "1" .

:Gene3489_e5 a affx:Exon ; 
	affx:startsAt "57838776" ; 
	affx:stopsAt "57838874" ; 
	affx:commonToAll "1" .

:Gene3489_e6 a affx:Exon ; 
	affx:startsAt "57839900" ; 
	affx:stopsAt "57840064" ; 
	affx:commonToAll "1" .

:Gene3489_e7 a affx:Exon ; 
	affx:startsAt "57872148" ; 
	affx:stopsAt "57872313" ; 
	affx:commonToAll "1" .

:Gene3489_e8 a affx:Exon ; 
	affx:startsAt "57873365" ; 
	affx:stopsAt "57873510" ; 
	affx:commonToAll "1" .

:Gene3489_e9 a affx:Exon ; 
	affx:startsAt "57878532" ; 
	affx:stopsAt "57878726" ; 
	affx:commonToAll "1" .

:Gene3489_e10 a affx:Exon ; 
	affx:startsAt "57888714" ; 
	affx:stopsAt "57888849" ; 
	affx:commonToAll "1" .

:Gene3489_e11 a affx:Exon ; 
	affx:startsAt "57889014" ; 
	affx:stopsAt "57889190" ; 
	affx:commonToAll "1" .

:Gene3489_e12 a affx:Exon ; 
	affx:startsAt "57889773" ; 
	affx:stopsAt "57889905" ; 
	affx:commonToAll "1" .

:Gene3489_e13 a affx:Exon ; 
	affx:startsAt "57890589" ; 
	affx:stopsAt "57890748" ; 
	affx:commonToAll "1" .

:Gene3489_e14 a affx:Exon ; 
	affx:startsAt "57897608" ; 
	affx:stopsAt "57897721" ; 
	affx:commonToAll "1" .

:Gene3489_e15 a affx:Exon ; 
	affx:startsAt "57897827" ; 
	affx:stopsAt "57897906" ; 
	affx:commonToAll "1" .

:Gene3489_e16 a affx:Exon ; 
	affx:startsAt "57898082" ; 
	affx:stopsAt "57898181" ; 
	affx:commonToAll "1" .

:Gene3489_e17 a affx:Exon ; 
	affx:startsAt "57900929" ; 
	affx:stopsAt "57901195" ; 
	affx:commonToAll "1" .

:TANK a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi1326146] ;
	affx:hasVariant [affx:representedBy :gi6755717] .

:gi1326146 a affx:Transcript ;
	affx:unigene "iMm.1803" ;
	affx:translatesTo "MDKNIGEQLNRAYEAFRQACMDRDSAVRELQQKTENYEQRIREQQEQLSFQQNLIDRLKSQLLLVDSSRDNSYGYVPLLEDSDRRKNNLTLDEPHDKVKLGTLRDKQSKVRRQEVSSGKESAKGLNIPLHHERDNIEKTFWDLKEEFHRICLLAKAQKDHLSKLNIPDIATDTQCSVPIQCTDKTEKQEALFKPQAKDDINRGMSCVTAVTPRGLGRDEEDTSFESLSKFNVKFPPMDNDSIFLHSTPEAPSILAPATPETVCQDRFNMEVRDNPGNFVKTEETLFEIQGIDPITSAIQNLKTTDKTNPSNLRATCLPAGDHNVFYVNTFPLQDPPDAPFPSLDSPGKAVRGPQQPFWKPFLNQDTDLVVPSDSDSELLKPLVCEFCQELFPPSITSRGDFLRHLNTHFNGET" ;
	affx:hasCds [affx:startsAt "62318081" ;
			affx:stopsAt "62358351" ];
	affx:hasExon [ affx:relatesToExon :TANK_e2;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :TANK_e3;
		affx:cdsType "Partial" ;
		affx:cdsStart "62318081" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e5;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e6;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e8;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e9;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e11;
		affx:cdsType "Partial" ;
		affx:cdsStop "62358351" ;
		affx:frame "0"] ;
	.

:gi6755717 a affx:Transcript ;
	affx:unigene "iMm.1803" ;
	affx:translatesTo "MSLKRHSLRRNACHLETRAGIPTILYSDATGQRGMDKNIGEQLNRAYEAFRQACMDRDSAVRELQQKQTENYEQRIREQQEQLSFQQNLIDRLKSQLLLVDSSRDNSYGYVPLLEDSDRRKNNLTLDEPHDKVKLGTLRDKQSKVRRQEVSSGKESAKGLNIPLHHERDNIEKTFWDLKEEFHRICLLAKAQKDHLSKLNIPDIATDTQCSVPIQCTDKTEKQEALFKPQAKDDINRGMSCVTAVTPRGLGRDEEDTSFESLSKFNVKFPPMDNDSIFLHSTPEAPSILAPATPETVCQDRFNMEVRDNPGNFVKTEETLFEIQGIDPITSAIQNLKTTDKTNPSNLRATCLPAGDHNVFYVNTFPLQDPPDAPFPSLDSPGKAVRGPQQPFWKPFLNQDTDLVVPSDSDSELLKPLVCEFCQELFPPSITSRGDFLRHLNTHFNGET" ;
	affx:hasCds [affx:startsAt "62282786" ;
			affx:stopsAt "62358351" ];
	affx:hasExon [ affx:relatesToExon :TANK_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "62282786" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e9;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :TANK_e10;
		affx:cdsType "Partial" ;
		affx:cdsStop "62358351" ;
		affx:frame "1"] ;
	.

:TANK_e1 a affx:Exon ; 
	affx:startsAt "62282730" ; 
	affx:stopsAt "62282839" ; 
	affx:commonToAll "0" .

:TANK_e2 a affx:Exon ; 
	affx:startsAt "62297305" ; 
	affx:stopsAt "62297355" ; 
	affx:commonToAll "0" .

:TANK_e3 a affx:Exon ; 
	affx:startsAt "62318032" ; 
	affx:stopsAt "62318180" ; 
	affx:commonToAll "1" .

:TANK_e4 a affx:Exon ; 
	affx:startsAt "62331697" ; 
	affx:stopsAt "62331809" ; 
	affx:commonToAll "0" .

:TANK_e5 a affx:Exon ; 
	affx:startsAt "62331700" ; 
	affx:stopsAt "62331809" ; 
	affx:commonToAll "0" .

:TANK_e6 a affx:Exon ; 
	affx:startsAt "62332516" ; 
	affx:stopsAt "62332635" ; 
	affx:commonToAll "1" .

:TANK_e7 a affx:Exon ; 
	affx:startsAt "62348510" ; 
	affx:stopsAt "62348581" ; 
	affx:commonToAll "1" .

:TANK_e8 a affx:Exon ; 
	affx:startsAt "62349102" ; 
	affx:stopsAt "62349218" ; 
	affx:commonToAll "1" .

:TANK_e9 a affx:Exon ; 
	affx:startsAt "62354533" ; 
	affx:stopsAt "62355084" ; 
	affx:commonToAll "1" .

:TANK_e10 a affx:Exon ; 
	affx:startsAt "62358174" ; 
	affx:stopsAt "62358907" ; 
	affx:commonToAll "0" .

:TANK_e11 a affx:Exon ; 
	affx:startsAt "62358174" ; 
	affx:stopsAt "62358966" ; 
	affx:commonToAll "0" .

:PKIg a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi3004635] .

:gi3004635 a affx:Transcript ;
	affx:unigene "iMm.10091" ;
	affx:translatesTo "MMEVESSYSDFISCDRTGRRNAVPDIQGDSEAVSVRKLAGDMGELALEGAEGQAEGSTPDKEASSQPESSDANTSS" ;
	affx:hasCds [affx:startsAt "164653325" ;
			affx:stopsAt "164657669" ];
	affx:hasExon [ affx:relatesToExon :PKIg_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :PKIg_e2;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :PKIg_e3;
		affx:cdsType "Partial" ;
		affx:cdsStart "164653325" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKIg_e4;
		affx:cdsType "Partial" ;
		affx:cdsStop "164657669" ;
		affx:frame "0"] ;
	.

:PKIg_e1 a affx:Exon ; 
	affx:startsAt "164626020" ; 
	affx:stopsAt "164626135" ; 
	affx:commonToAll "1" .

:PKIg_e2 a affx:Exon ; 
	affx:startsAt "164635464" ; 
	affx:stopsAt "164635534" ; 
	affx:commonToAll "1" .

:PKIg_e3 a affx:Exon ; 
	affx:startsAt "164653302" ; 
	affx:stopsAt "164653476" ; 
	affx:commonToAll "1" .

:PKIg_e4 a affx:Exon ; 
	affx:startsAt "164657589" ; 
	affx:stopsAt "164658285" ; 
	affx:commonToAll "1" .

:Gene3492 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi13879448] .

:gi13879448 a affx:Transcript ;
	affx:unigene "iMm.648" ;
	affx:translatesTo "MANLGYWLLALFVTMWTDVGLCKKRPKPGGWNTGGSRYPGQGSPGGNRYPPQGGTWGQPHGGGWGQPHGGSWGQPHGGSWGQPHGGGWGQGGGTHNQWNKPSKPKTNLKHVAGAAAAGAVVGGLGGYMLGSAMSRPMIHFGNDWEDRYYRENMYRYPNQVYYRPVDQYSNQNNFVHDCVNITIKQHTVTTTTKGENFTETDVKMMERVVEQMCVTQYQKESQAYYDGRRSSSTVLFSSPPVILLISFLIFLIVG" ;
	affx:hasCds [affx:startsAt "132938091" ;
			affx:stopsAt "132938856" ];
	affx:hasExon [ affx:relatesToExon :Gene3492_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3492_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "132938091" ;
		affx:cdsStop "132938856" ;
		affx:frame "0"] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "22" ;
				affx:spannedBy [ affx:startsAt "132938091" ;
					affx:stopsAt "132938157" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "2" ;
		affx:containsMotif [ affx:startsAt "111" ;
				affx:stopsAt "133" ;
				affx:spannedBy [ affx:startsAt "132938424" ;
					affx:stopsAt "132938490" ;
					affx:inFrame "0" ] ;
			] ;
		affx:containsMotif [ affx:startsAt "234" ;
				affx:stopsAt "253" ;
				affx:spannedBy [ affx:startsAt "132938793" ;
					affx:stopsAt "132938850" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	.

:Gene3492_e1 a affx:Exon ; 
	affx:startsAt "132914145" ; 
	affx:stopsAt "132914227" ; 
	affx:commonToAll "1" .

:Gene3492_e2 a affx:Exon ; 
	affx:startsAt "132938081" ; 
	affx:stopsAt "132940091" ; 
	affx:commonToAll "1" .

:Gene3493 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi15030116] .

:gi15030116 a affx:Transcript ;
	affx:unigene "iMm.82561" ;
	affx:translatesTo "MSHSRHRAEAPPLQREDSGTFSLGKMITAKPGKTPIQVLHEYGMKTKNIPVYECERSDVQVHVPTFTFRVTVGDITCTGEGTSKKLAKHRAAEAAINILKANASICFAVPDPLMPDPSKQPKNQLNPIGSLQELAIHHGWRLPEYTLSQEGGPAHKREYTTICRLESFMETGKGASKKQAKRNAAEKFLAKFSNISPENHISLTNVVGHSLGCTWHSLRNSPGEKINLLKRSLLSLPNTDYIQLLSEIASEQGFNITYLDIEELSANGQYQCLAELSTSPITVCHGSGISCGNAQSDAAHNALQYLKIIAERK" ;
	affx:hasCds [affx:startsAt "77501859" ;
			affx:stopsAt "77519305" ];
	affx:hasExon [ affx:relatesToExon :Gene3493_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "77501859" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Gene3493_e2;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3493_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3493_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3493_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3493_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3493_e7;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Gene3493_e8;
		affx:cdsType "Partial" ;
		affx:cdsStop "77519305" ;
		affx:frame "1"] ;
	.

:Gene3493_e1 a affx:Exon ; 
	affx:startsAt "77501385" ; 
	affx:stopsAt "77502017" ; 
	affx:commonToAll "1" .

:Gene3493_e2 a affx:Exon ; 
	affx:startsAt "77504981" ; 
	affx:stopsAt "77505156" ; 
	affx:commonToAll "1" .

:Gene3493_e3 a affx:Exon ; 
	affx:startsAt "77508243" ; 
	affx:stopsAt "77508338" ; 
	affx:commonToAll "1" .

:Gene3493_e4 a affx:Exon ; 
	affx:startsAt "77510648" ; 
	affx:stopsAt "77510766" ; 
	affx:commonToAll "1" .

:Gene3493_e5 a affx:Exon ; 
	affx:startsAt "77511689" ; 
	affx:stopsAt "77511768" ; 
	affx:commonToAll "1" .

:Gene3493_e6 a affx:Exon ; 
	affx:startsAt "77514671" ; 
	affx:stopsAt "77514753" ; 
	affx:commonToAll "1" .

:Gene3493_e7 a affx:Exon ; 
	affx:startsAt "77518573" ; 
	affx:stopsAt "77518743" ; 
	affx:commonToAll "1" .

:Gene3493_e8 a affx:Exon ; 
	affx:startsAt "77519240" ; 
	affx:stopsAt "77519451" ; 
	affx:commonToAll "1" .

:Pgc2 a affx:Gene ;
	affx:strand "-" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi6942206] .

:gi6942206 a affx:Transcript ;
	affx:unigene "iMm.29477" ;
	affx:translatesTo "MAAPQPSQDPQSPAAPPEQQEGAGDCAAPSPDSGSSPAPELPGAPAALNTAPYADAALRPGASRPGPETFRQRFRQFRYQDAAGPREAFRQLRELSRQWLRPDIRTKEQIVEMLVQEQLQAILPEAARARRLRRRADVRITG" ;
	affx:hasCds [affx:startsAt "157156787" ;
			affx:stopsAt "157157216" ];
	affx:hasExon [ affx:relatesToExon :Pgc2_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "157156787" ;
		affx:cdsStop "157157216" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Pgc2_e2;
		affx:cdsType "None" ] ;
	.

:Pgc2_e1 a affx:Exon ; 
	affx:startsAt "157156717" ; 
	affx:stopsAt "157157270" ; 
	affx:commonToAll "1" .

:Pgc2_e2 a affx:Exon ; 
	affx:startsAt "157157369" ; 
	affx:stopsAt "157157386" ; 
	affx:commonToAll "1" .

:Procr a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi6755175] .

:gi6755175 a affx:Transcript ;
	affx:unigene "iMm.3243" ;
	affx:translatesTo "MLTKFLPLLLLLLPGCALCNSDGSQSLHMLQISYFQDNHHVRHQGNASLGKLLTHTLEGPSQNVTILQLQPWQDPESWERTESGLQIYLTQFESLVKLVYRERKENVFFPLTVSCSLGCELPEEEEEGSEPHVFFDVAVNGSAFVSFRPKTAVWVSGSQEPSKAANFTLKQLNAYNRTRYELQEFLQDTCVEFLENHITTQNMKGSQTGRSYTSLVLGILMGCFIIAGVAVGIFMCTSGRRC" ;
	affx:hasCds [affx:startsAt "156582983" ;
			affx:stopsAt "156586470" ];
	affx:hasExon [ affx:relatesToExon :Procr_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "156582983" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Procr_e2;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Procr_e3;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Procr_e4;
		affx:cdsType "Partial" ;
		affx:cdsStop "156586470" ;
		affx:frame "2"] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "0" ;
				affx:stopsAt "19" ;
				affx:spannedBy [ affx:startsAt "156582983" ;
					affx:stopsAt "156583040" ;
					affx:inFrame "0" ] ;
			] ;
		] ;
	affx:tmHMMHit [  affx:commonToAll "1" ;
		affx:motifCount "1" ;
		affx:containsMotif [ affx:startsAt "212" ;
				affx:stopsAt "234" ;
				affx:spannedBy [ affx:startsAt "156586377" ;
					affx:stopsAt "156586443" ;
					affx:inFrame "2" ] ;
			] ;
		] ;
	.

:Procr_e1 a affx:Exon ; 
	affx:startsAt "156582928" ; 
	affx:stopsAt "156583050" ; 
	affx:commonToAll "1" .

:Procr_e2 a affx:Exon ; 
	affx:startsAt "156584930" ; 
	affx:stopsAt "156585188" ; 
	affx:commonToAll "1" .

:Procr_e3 a affx:Exon ; 
	affx:startsAt "156585825" ; 
	affx:stopsAt "156586113" ; 
	affx:commonToAll "1" .

:Procr_e4 a affx:Exon ; 
	affx:startsAt "156586354" ; 
	affx:stopsAt "156587044" ; 
	affx:commonToAll "1" .

:PKCq a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi15787860] ;
	affx:hasVariant [affx:representedBy :gi220573] .

:gi15787860 a affx:Transcript ;
	affx:unigene "iMm.2921" ;
	affx:translatesTo "MKIVIRRDYLRSQRSSFHLIACGMNVHHRCQTKVANLCGINQKLMAEALAMIESTQQARSLRDSEHIFREGPVEIGLPCSTKNETRPPCVPTPGKREPQGISWDSPLDGSNKSAGPPEPEVSMRRTSLQLKLKIDDFILHKMLGKGSFGKVFLAEFKRTNQFFAIKALKKDVVLMDDDVECTMVEKRVLSLAWEHPFLTHMFCTFQTKENLFFVMEYLNGGDLMYHIQSCHKFDLSRATFYAAEVILGLQFLHSKGIVYRDLKLDNILLDRDGHIKIADFGMCKENMLGDAKTNTFCGTPDYIAPEILLGQKYNHSVDWWSFGVLVYEMLIGQSPFHGQDEEELFHSIRMDNPFYPRWLEREAKDLLVKLFVREPEKRLGVRGDIRQHPLFREINWEELERKEIDPPFRPKVKSPYDCSNFDKEFLSEKPRLSFADRALINSMDQNMFSNFSFINPGMETLICS" ;
	affx:hasCds [affx:startsAt "11328203" ;
			affx:stopsAt "11377603" ];
	affx:hasExon [ affx:relatesToExon :PKCq_e9;
		affx:cdsType "Partial" ;
		affx:cdsStart "11328203" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e10;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e11;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e12;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e13;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e14;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e15;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e16;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e17;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e18;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e19;
		affx:cdsType "Partial" ;
		affx:cdsStop "11377603" ;
		affx:frame "1"] ;
	.

:gi220573 a affx:Transcript ;
	affx:unigene "iMm.2921" ;
	affx:translatesTo "MSPFLRIGLSNFDCGTCQACQGEAVNPYCAVLVKEYVESENGQMYIQKKPTMYPPWDSTFDAHINKGRVMQIIVKGKNVDLISETTVELYSLAERCRKNNGRTEIWLELKPQGRMLMNARYFLEMSDTKDMSEFENEGFFALHQRRGAIKQAKVHHVKCHEFTATFFPQPTFCSVCHEFVWGLNKQGYQCRQCNAAIHKKCIDKVIAKCTGSAINSRETMFHKERFKIDMPHRFKVYNYKSPTFCEHCGTLLWGLARQGLKCDACGMNVHHRCQTKVANLCGINQKLMAEALAMIESTQQARSLRDSEHIFREGPVEIGLPCSTKNETRPPCVPTPGKREPQGISWDSPLDGSNKSAGPPEPEVSMRRTSLQLKLKIDDFILHKMLGKGSFGKVFLAEFKRTNQFFAIKALKKDVVLMDDDVECTMVEKRVLSLAWEHPFLTHMFCTFQTKENLFFVMEYLNGGDLMYHIQSCHKFDLSRATFYAAEVILGLQFLHSKGIVYRDLKLDNILLDRDGHIKIADFGMCKENMLGDAKTNTFCGTPDYIAPEILLGQKYNHSVDWWSFGVLVYEMLIGQSPFHGQDEEELFHSIRMDNPFYPRWLEREAKDLLVKLFVREPEKRLGVRGDIRQHPLFREINWEELERKEIDPPFRPKVKSPYDCSNFDKEFLSEKPRLSFADRALINSMDQNMFSNFSFINPGMETLICS" ;
	affx:hasCds [affx:startsAt "11304632" ;
			affx:stopsAt "11377603" ];
	affx:hasExon [ affx:relatesToExon :PKCq_e1;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "11304632" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e4;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e5;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e7;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e8;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e10;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e11;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e12;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e13;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e14;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e15;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e16;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e17;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e18;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :PKCq_e20;
		affx:cdsType "Partial" ;
		affx:cdsStop "11377603" ;
		affx:frame "1"] ;
	.

:PKCq_e1 a affx:Exon ; 
	affx:startsAt "11250732" ; 
	affx:stopsAt "11250811" ; 
	affx:commonToAll "0" .

:PKCq_e2 a affx:Exon ; 
	affx:startsAt "11304623" ; 
	affx:stopsAt "11304750" ; 
	affx:commonToAll "0" .

:PKCq_e3 a affx:Exon ; 
	affx:startsAt "11310296" ; 
	affx:stopsAt "11310496" ; 
	affx:commonToAll "0" .

:PKCq_e4 a affx:Exon ; 
	affx:startsAt "11313784" ; 
	affx:stopsAt "11313845" ; 
	affx:commonToAll "0" .

:PKCq_e5 a affx:Exon ; 
	affx:startsAt "11323021" ; 
	affx:stopsAt "11323184" ; 
	affx:commonToAll "0" .

:PKCq_e6 a affx:Exon ; 
	affx:startsAt "11324567" ; 
	affx:stopsAt "11324599" ; 
	affx:commonToAll "0" .

:PKCq_e7 a affx:Exon ; 
	affx:startsAt "11324696" ; 
	affx:stopsAt "11324782" ; 
	affx:commonToAll "0" .

:PKCq_e8 a affx:Exon ; 
	affx:startsAt "11325969" ; 
	affx:stopsAt "11326099" ; 
	affx:commonToAll "0" .

:PKCq_e9 a affx:Exon ; 
	affx:startsAt "11327989" ; 
	affx:stopsAt "11328264" ; 
	affx:commonToAll "0" .

:PKCq_e10 a affx:Exon ; 
	affx:startsAt "11330706" ; 
	affx:stopsAt "11330816" ; 
	affx:commonToAll "1" .

:PKCq_e11 a affx:Exon ; 
	affx:startsAt "11331808" ; 
	affx:stopsAt "11331926" ; 
	affx:commonToAll "1" .

:PKCq_e12 a affx:Exon ; 
	affx:startsAt "11333795" ; 
	affx:stopsAt "11333956" ; 
	affx:commonToAll "1" .

:PKCq_e13 a affx:Exon ; 
	affx:startsAt "11338361" ; 
	affx:stopsAt "11338535" ; 
	affx:commonToAll "1" .

:PKCq_e14 a affx:Exon ; 
	affx:startsAt "11354724" ; 
	affx:stopsAt "11354816" ; 
	affx:commonToAll "1" .

:PKCq_e15 a affx:Exon ; 
	affx:startsAt "11356943" ; 
	affx:stopsAt "11357006" ; 
	affx:commonToAll "1" .

:PKCq_e16 a affx:Exon ; 
	affx:startsAt "11361223" ; 
	affx:stopsAt "11361362" ; 
	affx:commonToAll "1" .

:PKCq_e17 a affx:Exon ; 
	affx:startsAt "11367866" ; 
	affx:stopsAt "11368055" ; 
	affx:commonToAll "1" .

:PKCq_e18 a affx:Exon ; 
	affx:startsAt "11376772" ; 
	affx:stopsAt "11376901" ; 
	affx:commonToAll "1" .

:PKCq_e19 a affx:Exon ; 
	affx:startsAt "11377444" ; 
	affx:stopsAt "11378177" ; 
	affx:commonToAll "0" .

:PKCq_e20 a affx:Exon ; 
	affx:startsAt "11377444" ; 
	affx:stopsAt "11378704" ; 
	affx:commonToAll "0" .

:Gene3497 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi16741474] ;
	affx:hasVariant [affx:representedBy :gi9790038] .

:gi16741474 a affx:Transcript ;
	affx:unigene "iMm.148195" ;
	affx:translatesTo "MSVPEPPPPDGVLTGPSDSLEAGEPTPGLSDTSPDEGLIEDFPVDDRAVEHLVGGLLSHYLPDLQRSKRALQELTTKLCY" ;
	affx:hasCds [affx:startsAt "123728801" ;
			affx:stopsAt "123734327" ];
	affx:hasExon [ affx:relatesToExon :Gene3497_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "123728801" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e5;
		affx:cdsType "Partial" ;
		affx:cdsStop "123734327" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e6;
		affx:cdsType "None" ] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e8;
		affx:cdsType "None" ] ;
	.

:gi9790038 a affx:Transcript ;
	affx:unigene "iMm.148195" ;
	affx:translatesTo "MSVPEPPPPDGVLTGPSDSLEAGEPTPGLSDTSPDEGLIEDFPVDDRAVEHLVGGLLSHYLPDLQRSKRALQELTQNQVVLLDTLEQEISKFKECHSMLDINALFTEAKHYHAKLVTIRKEMLLLHEKTSKLKKRALKLQQKRQREELEREQQREKEFEREKQLTAKPAKRT" ;
	affx:hasCds [affx:startsAt "123728801" ;
			affx:stopsAt "123736809" ];
	affx:hasExon [ affx:relatesToExon :Gene3497_e2;
		affx:cdsType "Partial" ;
		affx:cdsStart "123728801" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e3;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e6;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Gene3497_e7;
		affx:cdsType "Partial" ;
		affx:cdsStop "123736809" ;
		affx:frame "1"] ;
	.

:Gene3497_e1 a affx:Exon ; 
	affx:startsAt "123728697" ; 
	affx:stopsAt "123728883" ; 
	affx:commonToAll "0" .

:Gene3497_e2 a affx:Exon ; 
	affx:startsAt "123728783" ; 
	affx:stopsAt "123728883" ; 
	affx:commonToAll "0" .

:Gene3497_e3 a affx:Exon ; 
	affx:startsAt "123732767" ; 
	affx:stopsAt "123732909" ; 
	affx:commonToAll "1" .

:Gene3497_e4 a affx:Exon ; 
	affx:startsAt "123734304" ; 
	affx:stopsAt "123734392" ; 
	affx:commonToAll "0" .

:Gene3497_e5 a affx:Exon ; 
	affx:startsAt "123734308" ; 
	affx:stopsAt "123734392" ; 
	affx:commonToAll "0" .

:Gene3497_e6 a affx:Exon ; 
	affx:startsAt "123736233" ; 
	affx:stopsAt "123736320" ; 
	affx:commonToAll "1" .

:Gene3497_e7 a affx:Exon ; 
	affx:startsAt "123736689" ; 
	affx:stopsAt "123736856" ; 
	affx:commonToAll "0" .

:Gene3497_e8 a affx:Exon ; 
	affx:startsAt "123736689" ; 
	affx:stopsAt "123738278" ; 
	affx:commonToAll "0" .

:Psmc3 a affx:Gene ;
	affx:strand "+" ;
	affx:chr "chr2" ;
	affx:hasVariant [affx:representedBy :gi6679502] .

:gi6679502 a affx:Transcript ;
	affx:unigene "iMm.20946" ;
	affx:translatesTo "MQEMNLLPTPESPVTRQEKMATVWDEAEQDGIGEEVLKMSTEEIVQRTRLLDSEIKIMKSEVLRVTHELQAMKDKIKENSEKIKVNKTLPYLVSNVIELLDVDPNDQEEDGANIDLDSQRKGKCAVIKTSTRQTYFLPVIGLVDAEKLKPGDLVGVNKDSYLILETLPTEYDSRVKAMEVDERPTEQYSDIGGLDKQIQELVEAIVLPMNHKEKFENLGIQPPKGVLMYGPPGTGKTLLARACAAQTKATFLKLAGPQLVQMFIGDGAKLVRDAFALAKEKAPSIIFIDELDAIGTKRFDSEKAGDREVQRTMLELLNQLDGFQPNTQVKVIAATNRVDILDPALLRSGRLDRKIEFPMPNEEARARIMQIHSRKMNVSPDVNYEELARCTDDFNGAQCKAVCVEAGMIALRRGATELTHEDYMEGILEVQAKKKANLQYYA" ;
	affx:hasCds [affx:startsAt "92016733" ;
			affx:stopsAt "92021850" ];
	affx:hasExon [ affx:relatesToExon :Psmc3_e1;
		affx:cdsType "Partial" ;
		affx:cdsStart "92016733" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Psmc3_e2;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Psmc3_e3;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Psmc3_e4;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Psmc3_e5;
		affx:cdsType "Full" ;
		affx:frame "1"] ;
	affx:hasExon [ affx:relatesToExon :Psmc3_e6;
		affx:cdsType "Full" ;
		affx:frame "2"] ;
	affx:hasExon [ affx:relatesToExon :Psmc3_e7;
		affx:cdsType "Full" ;
		affx:frame "0"] ;
	affx:hasExon [ affx:relatesToExon :Psmc3_e8;
		affx:cdsType "Full" ;
		affx:frame "1"] 